@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("assets/fonts/work-sans-variable.ttf") format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #102732;
  --navy-deep: #091d26;
  --petroleum: #2f735e;
  --petroleum-dark: #205642;
  --mint: #94ddbf;
  --pale: #dceae4;
  --paper: #f5f8f7;
  --white: #ffffff;
  --ink: #14252b;
  --muted: #4a5c61;
  --line: #cbd7d2;
  --display: "Barlow Condensed", sans-serif;
  --body: "Work Sans", sans-serif;
  --shell: 1240px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  background: var(--navy-deep);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--mint); color: var(--navy-deep); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--petroleum); border: 3px solid var(--navy-deep); border-radius: 999px; }

a { color: inherit; text-underline-offset: .23em; text-decoration-thickness: .08em; }
a:hover { text-decoration-thickness: .13em; }

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
  border-radius: 2px;
}

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

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

.shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}

.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;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(9, 29, 38, .28);
  transition: background-color .25s var(--ease), box-shadow .25s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(9, 29, 38, .97);
  box-shadow: 0 12px 32px rgba(2, 12, 16, .18);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 370px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--mint);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -.02em;
}

.brand-copy { min-width: 0; display: flex; flex-direction: column; line-height: 1.18; }
.brand-copy strong { font-size: .94rem; font-weight: 650; }
.brand-copy span { color: #cbdad4; font-size: .7rem; }

.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a { color: #eaf2ef; font-size: .78rem; font-weight: 550; text-decoration: none; }
.site-nav a:not(.nav-contact):hover { color: var(--mint); }

.nav-contact {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(148,221,191,.7);
  color: var(--mint) !important;
}
.nav-contact:hover { background: var(--mint); color: var(--navy-deep) !important; }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: var(--white);
}
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s var(--ease), opacity .2s; }
.menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 780px;
  padding-top: 88px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  z-index: -3;
  inset: 88px 0 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.hero-portrait {
  position: absolute;
  z-index: -2;
  inset: 88px 0 0 46%;
  overflow: hidden;
}

.hero-portrait picture,
.hero-portrait img {
  width: 100%;
  height: 100%;
}

.hero-portrait picture { display: block; }

.hero-portrait img {
  display: block;
  object-fit: cover;
  object-position: 14% 30%;
  transform-origin: 14% 30%;
  filter: saturate(.78) contrast(1.04);
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 39%, rgba(16,39,50,.86) 51%, rgba(16,39,50,.16) 78%),
    linear-gradient(0deg, rgba(9,29,38,.74) 0%, transparent 40%);
}

.hero-inner {
  min-height: 692px;
  display: flex;
  align-items: center;
  padding-block: 72px 84px;
}

.hero-copy { width: min(700px, 54%); }

.hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 5.1vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: uppercase;
}

.hero h1 span { display: block; }
.hero h1 span:first-child { white-space: normal; }
.hero h1 span:nth-child(2) { color: #d8e4df; }
.hero h1 i { color: var(--mint); font-style: normal; }

.hero-copy > p:first-of-type {
  max-width: 590px;
  margin-bottom: 32px;
  color: #d9e5e0;
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  line-height: 1.55;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 2px solid transparent;
  font-weight: 680;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}

.button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { background: var(--mint); color: var(--navy-deep); }
.button-primary:hover { background: var(--white); transform: translateY(-2px); }

.button-note { margin: 12px 0 0; color: #bccdc6; font-size: .78rem; }

.journey { background: var(--petroleum); color: var(--white); }

.journey-layout {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(220px, .7fr) 1.7fr;
  align-items: center;
  gap: 64px;
  padding-block: 30px;
}

.journey-intro h2 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}
.journey-intro p { max-width: 42ch; margin: 0; color: #e2f0ea; font-size: .86rem; line-height: 1.45; }

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.journey-steps::before { content: ""; position: absolute; top: 18px; left: 9%; right: 9%; height: 1px; background: rgba(255,255,255,.64); }
.journey-steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 0; text-align: center; }
.journey-steps span { z-index: 1; width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.75); border-radius: 50%; background: var(--petroleum); font-size: .77rem; font-variant-numeric: tabular-nums; }
.journey-steps strong { font-size: clamp(.7rem, 1vw, .85rem); font-weight: 600; }

.section { padding-block: clamp(88px, 10vw, 148px); }

.section-heading { margin-bottom: 70px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 11%; align-items: end; }
.section-heading h2,
.profile-copy h2,
.faq-heading h2,
.contact h2,
.accessibility-article h1,
.accessibility-article h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
}
.section-heading h2 { max-width: 800px; margin: 0; font-size: clamp(3rem, 5.3vw, 5rem); text-transform: uppercase; }
.section-heading p { max-width: 42ch; margin: 0; color: var(--muted); }

.practice-list { border-top: 1px solid var(--line); }
.practice-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr .7fr;
  gap: 6%;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.practice-row h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3vw, 3rem); line-height: .98; }
.practice-row p { max-width: 60ch; margin: 0; color: var(--muted); }
.practice-row a, .text-link { justify-self: end; color: var(--petroleum-dark); font-weight: 650; }
.practice-featured { position: relative; padding: 46px 34px; background: var(--pale); border-bottom-color: transparent; }
.practice-featured::after { content: ""; position: absolute; inset: auto 34px 18px; height: 1px; background: var(--petroleum); opacity: .35; }

.calculations { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.calculations::before { content: ""; position: absolute; top: 0; bottom: 0; left: calc(50% - 1px); width: 1px; background: rgba(255,255,255,.11); }
.calculations-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; }
.calculations-title h2 { max-width: 560px; margin-bottom: 22px; font-family: var(--display); font-size: clamp(3.2rem, 5.8vw, 5.6rem); letter-spacing: -.03em; line-height: .9; text-transform: uppercase; }
.calculations-title p { max-width: 36ch; color: var(--mint); }
.calculations-content { max-width: 620px; }
.calculations-content > p { color: #d4e2dd; }
.calculations-content ul { margin: 36px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.17); list-style: none; }
.calculations-content li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.light-link { color: var(--mint); }

.profile { background: #eaf1ee; }
.profile-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10%; align-items: center; }
.profile-media { position: relative; min-height: 590px; }
.profile-media::before { content: ""; position: absolute; inset: -22px 15% 36px -22px; border: 1px solid var(--petroleum); }
.profile-frame { position: absolute; inset: 0 0 0 8%; overflow: hidden; background: var(--navy); }
.profile-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; transform: scale(1.24); filter: saturate(.72) contrast(1.03); }
.profile-copy { max-width: 680px; }
.profile-copy h2 { margin-bottom: 32px; font-size: clamp(3.2rem, 5.6vw, 5.4rem); text-transform: uppercase; }
.profile-copy > p { max-width: 68ch; color: var(--muted); }
.profile-signature { margin: 42px 0 0; border-top: 1px solid var(--line); }
.profile-signature div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.profile-signature dt { color: var(--muted); font-size: .82rem; }
.profile-signature dd { margin: 0; font-weight: 620; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10%; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading h2 { margin-bottom: 24px; font-size: clamp(3rem, 5vw, 4.6rem); text-transform: uppercase; }
.faq-heading p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; font-weight: 650; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after { content: ""; position: absolute; top: 50%; right: 4px; width: 18px; height: 2px; background: var(--petroleum); transition: transform .2s var(--ease); }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 68ch; padding: 0 52px 24px 0; color: var(--muted); }

.contact { padding-block: clamp(72px, 8vw, 110px); background: var(--pale); }
.contact-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 10%; align-items: center; }
.contact h2 { max-width: 850px; margin: 0; font-size: clamp(3rem, 5vw, 5rem); text-transform: uppercase; }
.contact-action { justify-self: end; }
.contact-action p { margin: 12px 0 0; color: var(--muted); font-size: .8rem; }

.site-footer { padding: 72px 0 28px; background: var(--navy-deep); color: #dbe7e2; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.2fr .7fr; gap: 8%; padding-bottom: 54px; }
.footer-signature, .site-footer address, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; font-style: normal; }
.footer-signature strong { color: var(--white); font-size: 1.05rem; }
.footer-signature span, .site-footer address, .footer-links { font-size: .86rem; }
.footer-links a, .site-footer address a, .footer-legal a { color: var(--mint); }
.footer-link-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  color: var(--mint);
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .23em;
}
.footer-link-button:hover { text-decoration-thickness: .13em; }
.footer-legal { display: flex; justify-content: space-between; gap: 8%; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: #aebfb8; font-size: .74rem; }
.footer-legal p:first-child { max-width: 95ch; }
.footer-credit a { display: inline-block; white-space: nowrap; }
.footer-inline-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }

.consent-banner {
  position: fixed;
  z-index: 80;
  inset: auto 0 0;
  padding: 14px;
  color: var(--white);
  pointer-events: none;
}
.consent-banner[hidden] { display: none; }
.consent-panel {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 22px 24px;
  border: 1px solid rgba(148,221,191,.48);
  background: var(--navy-deep);
  box-shadow: 0 16px 42px rgba(2,12,16,.38);
  pointer-events: auto;
}
.consent-copy { min-width: 0; }
.consent-copy h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.consent-copy p { max-width: 78ch; margin: 0; color: #dbe7e2; font-size: .84rem; line-height: 1.5; }
.consent-copy a { color: var(--mint); }
.consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.consent-button {
  min-height: 48px;
  min-width: 172px;
  padding: 11px 16px;
  border: 1px solid var(--mint);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.consent-primary { background: var(--mint); color: var(--navy-deep); }
.consent-primary:hover { border-color: var(--white); background: var(--white); }
.consent-secondary { background: transparent; color: var(--white); }
.consent-secondary:hover { background: rgba(148,221,191,.12); }
body.consent-visible .floating-contact { opacity: 0; pointer-events: none; }

.floating-contact {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--petroleum);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(4,25,19,.28);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.floating-contact:hover { transform: translateY(-3px); background: var(--petroleum-dark); }
.floating-contact svg { width: 28px; height: 28px; fill: currentColor; }

.accessibility-page { background: #edf3f0; }
.accessibility-page .site-header { background: var(--navy-deep); }
.back-link { color: var(--mint); font-weight: 650; }
.accessibility-main { padding: 160px 0 110px; }
.accessibility-article { max-width: 880px; }
.accessibility-article > header { padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.accessibility-article h1 { margin-bottom: 26px; font-size: clamp(4rem, 8vw, 6rem); text-transform: uppercase; }
.accessibility-article header p { max-width: 70ch; color: var(--muted); font-size: 1.1rem; }
.accessibility-article section { padding: 46px 0; border-bottom: 1px solid var(--line); }
.accessibility-article h2 { margin-bottom: 18px; font-size: 2.5rem; text-transform: uppercase; }
.accessibility-article p, .accessibility-article ul { max-width: 72ch; color: var(--muted); }
.accessibility-article li + li { margin-top: 8px; }
.accessibility-contact { display: flex; align-items: center; gap: 26px; margin-top: 28px; }
.updated { margin-top: 30px; font-size: .86rem; }
.privacy-settings-button { margin-top: 10px; }
.compact-footer { padding-top: 30px; }
.compact-footer .footer-legal { padding-top: 0; border: 0; }

@media (max-width: 1120px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: .71rem; }
  .hero-copy { width: 60%; }
  .hero h1 { font-size: clamp(3.7rem, 5.8vw, 4.35rem); }
  .hero h1 span:first-child { white-space: normal; }
}

@media (max-width: 979px) {
  .shell { width: min(var(--shell), calc(100% - 64px)); }
  .header-inner { min-height: 82px; }
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    max-height: calc(100dvh - 82px);
    display: grid;
    gap: 0;
    padding: 18px 32px 30px;
    overflow-y: auto;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform .3s var(--ease), visibility .3s;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 1rem; }
  .nav-contact { margin-top: 18px; justify-content: center; }

  .hero { min-height: 760px; padding-top: 82px; }
  .hero-portrait { inset: 82px 0 0; }
  .hero-portrait img {
    object-position: 0% 48%;
    opacity: .56;
    filter: saturate(.42) contrast(1.08);
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16,39,50,.78) 0%, rgba(9,29,38,.58) 58%, rgba(9,29,38,.82) 100%),
      linear-gradient(90deg, rgba(9,29,38,.92) 0%, rgba(16,39,50,.72) 55%, rgba(9,29,38,.25) 100%);
  }
  .hero-inner { min-height: 678px; align-items: flex-start; padding-top: 70px; }
  .hero-copy { width: 86%; }
  .hero h1 { font-size: clamp(3.9rem, 8.8vw, 5rem); }

  .journey-layout { grid-template-columns: 1fr; gap: 28px; padding-block: 30px 36px; }
  .journey-intro { display: grid; grid-template-columns: .7fr 1.3fr; gap: 34px; align-items: center; }
  .journey-intro p { max-width: 56ch; }

  .split-heading, .calculations-layout, .profile-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 28px; }
  .section-heading p { max-width: 66ch; }
  .practice-row { grid-template-columns: .8fr 1.2fr; }
  .practice-row a { grid-column: 2; justify-self: start; }
  .calculations::before { display: none; }
  .calculations-layout, .profile-layout, .faq-layout, .contact-layout { gap: 58px; }
  .profile-media { min-height: 660px; width: min(100%, 620px); }
  .faq-heading { position: static; }
  .contact-action { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 12px 26px; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .footer-inline-links { justify-content: flex-start; }

  .consent-panel { grid-template-columns: 1fr; gap: 18px; }
  .consent-actions { width: 100%; }
}

@media (max-width: 640px) {
  .shell { width: calc(100% - 40px); }
  .header-inner { min-height: 76px; }
  .brand { gap: 9px; }
  .brand { max-width: calc(100% - 58px); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong, .brand-copy span { white-space: nowrap; }
  .brand-copy strong { font-size: .72rem; }
  .brand-copy span { font-size: .54rem; }
  .brand-copy span:last-child { font-size: .5rem; }
  .site-nav { top: 76px; padding-inline: 20px; }

  .hero { min-height: 680px; padding-top: 76px; }
  .hero-grid { top: 76px; background-size: 44px 44px; }
  .hero-portrait {
    inset: 76px 0 0;
    height: auto;
  }
  .hero-portrait img {
    object-position: 4% 30%;
    opacity: .82;
    filter: saturate(.46) contrast(1.08);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16,39,50,.68) 0%, rgba(9,29,38,.5) 52%, rgba(9,29,38,.8) 100%),
      linear-gradient(90deg, rgba(9,29,38,.88) 0%, rgba(16,39,50,.6) 58%, rgba(9,29,38,.18) 100%);
  }
  .hero-inner { min-height: 604px; padding: 46px 0 28px; align-items: flex-start; }
  .hero-copy { width: 100%; }
  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 16.7vw, 4.35rem);
    line-height: 1;
    text-shadow: 0 2px 22px rgba(2,12,16,.42);
  }
  .hero h1 span:first-child { white-space: normal; }
  .hero-copy > p:first-of-type { max-width: 36ch; margin-bottom: 24px; font-size: .92rem; line-height: 1.5; }
  .hero-copy > p:first-of-type,
  .button-note { text-shadow: 0 2px 14px rgba(2,12,16,.9); }
  .hero .button { width: 100%; }
  .button-note { text-align: center; }

  .journey-layout { min-height: 184px; gap: 16px; padding-block: 20px 22px; }
  .journey-intro { display: block; }
  .journey-intro h2 { margin-bottom: 5px; font-size: 1.78rem; }
  .journey-intro p { font-size: .72rem; line-height: 1.32; }
  .journey-steps::before { top: 14px; left: 10%; right: 10%; }
  .journey-steps li { gap: 8px; }
  .journey-steps span { width: 29px; height: 29px; font-size: .65rem; }
  .journey-steps strong { max-width: none; font-size: .56rem; line-height: 1.14; letter-spacing: -.03em; white-space: nowrap; }

  .section { padding-block: 82px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .profile-copy h2, .faq-heading h2, .contact h2 { font-size: clamp(2.85rem, 14vw, 4rem); }
  .practice-row { grid-template-columns: 1fr; gap: 16px; padding: 30px 0; }
  .practice-row h3 { font-size: 2.45rem; }
  .practice-row a { grid-column: auto; justify-self: start; }
  .practice-featured { margin-inline: -20px; padding: 36px 20px 46px; }
  .practice-featured::after { inset-inline: 20px; }

  .calculations-title h2 { font-size: clamp(3.2rem, 16vw, 4.5rem); }
  .profile-layout { gap: 48px; }
  .profile-media { min-height: 460px; }
  .profile-media::before { inset: -14px 10% 28px -10px; }
  .profile-frame { left: 3%; }
  .profile-signature div { grid-template-columns: 90px 1fr; gap: 12px; }

  .faq-layout { gap: 38px; }
  .faq-list summary { padding-block: 20px; }
  .contact-layout { gap: 34px; }
  .contact-action, .contact-action .button { width: 100%; }
  .contact-action p { text-align: center; }

  .site-footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-column: auto; flex-direction: column; }
  .footer-credit { width: fit-content; max-width: calc(100% - 78px); padding-bottom: 8px; line-height: 1.55; }
  .floating-contact { right: 16px; bottom: 16px; }

  .consent-banner { padding: 8px; }
  .consent-panel { gap: 14px; padding: 18px 16px; }
  .consent-copy h2 { font-size: 1.48rem; }
  .consent-copy p { font-size: .78rem; line-height: 1.45; }
  .consent-actions { grid-template-columns: 1fr; }
  .consent-button { width: 100%; min-width: 0; }

  .accessibility-page .brand-copy span:last-child { display: none; }
  .back-link { font-size: .84rem; }
  .accessibility-main { padding: 130px 0 80px; }
  .accessibility-article h1 { font-size: clamp(2.8rem, 13.5vw, 3.4rem); }
  .accessibility-article h2 { font-size: 2.15rem; }
  .accessibility-contact { align-items: stretch; flex-direction: column; gap: 18px; }
  .accessibility-contact .text-link { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (forced-colors: active) {
  .consent-panel, .consent-button { border: 1px solid CanvasText; }
}

@media print {
  .site-header, .floating-contact, .consent-banner, .button, .menu-button { display: none !important; }
  .hero, .calculations, .site-footer { background: white !important; color: black !important; }
  .hero { min-height: auto; padding: 30px 0; }
  .hero-portrait, .hero-shade, .hero-grid { display: none; }
  .hero-inner { min-height: auto; }
  .hero-copy { width: 100%; }
  .section, .contact { padding-block: 36px; }
  a { color: black; }
}
