@charset "UTF-8";
/* =========================
   VARIABLES
========================= */
/* =========================
   GLOBAL
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fbfaf7;
  color: #4a4a4a;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

main {
  width: 100%;
}

/* =========================
   TYPE
========================= */
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

h1 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
}

h2 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

p {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 300;
  max-width: 54ch;
}

.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;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 84px;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f3b5c;
}

.nav-container {
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.logo:hover {
  color: #004c80;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links:hover a {
  opacity: 0.45;
}

.nav-links:hover a:hover {
  opacity: 1;
  color: #004c80;
}

.nav-links a.is-active {
  color: #004c80;
  opacity: 1;
}

.mobile-menu a.is-active {
  color: #ffffff;
  opacity: 1;
}

.hamburger {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  width: 34px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #1f3b5c;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.hamburger span:nth-child(1) {
  top: 2px;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #004c80;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 6vh, 52px);
  padding: 96px 28px 64px;
}
.mobile-menu a {
  display: block;
  color: #ffffff;
  font-size: clamp(1.8rem, 8vw, 3.4rem);
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 6px 0;
}
.mobile-menu a:active {
  opacity: 0.65;
}
.mobile-menu.show {
  display: flex;
}

.mobile-close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  z-index: 10000;
}

/* =========================
   SHARED PANELS
========================= */
.panel {
  display: grid;
  width: 100%;
  border-bottom: 1px solid #1f3b5c;
  background: #fbfaf7;
}

.panel-block {
  min-width: 0;
  min-height: 0;
}

.panel-content {
  height: 100%;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.divider-right {
  border-right: 1px solid #1f3b5c;
}

.section-label, .therapy-how-label .panel-content, .focus-panel .focus-label .panel-content, .approach-panel .approach-label .panel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.section-label h2, .therapy-how-label .panel-content h2, .focus-panel .focus-label .panel-content h2, .approach-panel .approach-label .panel-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.section-hit {
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.section-hit:hover {
  background: #004c80;
  color: #ffffff;
}
.section-hit:hover h2 {
  color: #ffffff;
}

/* =========================
   HOME PAGE
========================= */
.home-container {
  width: 100%;
}

.hero-panel {
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 84px);
}
.hero-panel .hero-copy {
  background: #fbfaf7;
}
.hero-panel .hero-copy-grid {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hero-panel .hero-main-text p {
  max-width: 30ch;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.32;
  font-weight: 300;
}
.hero-panel .hero-background-link {
  display: block;
  border-top: 1px solid #1f3b5c;
  background: #fbfaf7;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hero-panel .hero-background-link:hover {
  background: #004c80;
  color: #ffffff;
}
.hero-panel .hero-background-link:hover h2 {
  color: #ffffff;
}
.hero-panel .hero-background-link:hover h2::after {
  transform: translateX(4px);
}
.hero-panel .hero-background-link-inner {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}
.hero-panel .hero-background-link-inner h2 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-panel .hero-background-link-inner h2::after {
  content: " →";
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}
.hero-panel .hero-image {
  min-height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.approach-panel {
  grid-template-columns: 2fr 1fr;
  min-height: 420px;
}
.approach-panel .approach-copy .panel-content {
  align-items: flex-end;
  text-align: right;
}
.approach-panel .approach-copy .panel-content p {
  max-width: 48ch;
}
.approach-panel .approach-label .panel-content {
  padding: 40px 28px;
}

.focus-panel {
  grid-template-columns: 1fr 2fr;
  min-height: 420px;
}
.focus-panel .focus-label .panel-content {
  padding: 40px 28px;
}
.focus-panel .focus-copy .panel-content p {
  max-width: 54ch;
}

.section-hit h2::after {
  content: " →";
  margin-left: 6px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.section-hit:hover h2::after {
  transform: translateX(4px);
}

/* =========================
   STANDARD INNER PAGES
========================= */
.page-main {
  min-height: calc(100vh - 84px);
}

.page-section {
  border-bottom: 1px solid #1f3b5c;
  width: 100%;
  background: #fbfaf7;
}
.page-section .page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-section .page-content h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 24px;
}
.page-section .page-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
}
.page-section .page-content p {
  margin-bottom: 20px;
}

/* =========================
   BIO ARTICLE (EDITORIAL)
========================= */
.bio-article {
  width: 100%;
  border-bottom: 1px solid #1f3b5c;
}

.bio-article-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 420px 1fr;
  -moz-column-gap: 72px;
       column-gap: 72px;
  align-items: start;
}

/* IMAGE */
.bio-side-image {
  width: 100%;
  aspect-ratio: 3/2;
  background-image: url("images/bio-photo.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* TEXT */
.bio-text-column {
  max-width: 680px;
}

.bio-text-column p {
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  line-height: 1.42;
}

.bio-text-column p + p {
  margin-top: 20px;
}

.bio-cv-inline {
  margin-top: 28px;
}
.bio-cv-inline a {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.bio-cv-inline a::after {
  content: " →";
  margin-left: 6px;
}
.bio-cv-inline a:hover {
  color: #004c80;
  border-color: #004c80;
}

/* =========================
   CLINICAL EXPERIENCE
========================= */
.bio-clinical {
  width: 100%;
  border-bottom: 1px solid #1f3b5c;
}

.bio-clinical-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 72px 40px;
}

.bio-clinical-inner h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

/* TWO COLUMN GRID */
.bio-clinical-grid {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 48px;
       column-gap: 48px;
}

.bio-clinical-grid p {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 18px;
  font-size: clamp(1.15rem, 1.3vw, 1.3rem);
  line-height: 1.45;
  font-weight: 300;
}

/* =========================
   THERAPY PAGE
========================= */
.therapy-container {
  width: 100%;
}

/* TOP OVERVIEW */
.therapy-overview {
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.therapy-tagline .panel-content {
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 56px 44px;
}
.therapy-tagline p {
  max-width: 30ch;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.32;
  font-weight: 300;
}

/* RIGHT-SIDE MODALITY LIST */
.therapy-format-list {
  display: grid;
  grid-template-rows: repeat(3, auto);
}

.therapy-format {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid #1f3b5c;
}
.therapy-format:last-child {
  border-bottom: none;
}
.therapy-format h2 {
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.therapy-format p {
  max-width: 46ch;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.44;
}

/* IMAGE BAND */
.therapy-image-band {
  width: 100%;
  height: 38vh;
  min-height: 280px;
  background-image: url("images/therapy.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #1f3b5c;
}

/* HOW I WORK */
.therapy-how {
  grid-template-columns: 1fr 2fr;
  min-height: 420px;
}

.therapy-how-label .panel-content {
  padding: 40px 28px;
}

.therapy-how-copy .panel-content {
  max-width: 920px;
  margin: 0 auto;
  justify-content: center;
}
.therapy-how-copy p {
  max-width: 44ch;
  font-size: clamp(1.1rem, 1.3vw, 1.28rem);
  line-height: 1.5;
}
.therapy-how-copy p + p {
  margin-top: 24px;
}

/* =========================
   SPECIALTIES PAGE
========================= */
.specialties-container {
  width: 100%;
}

/* SECTION 1: INTRO + IMAGE */
.specialties-intro {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: calc(100vh - 84px);
}

.specialties-text .panel-content {
  max-width: 820px;
  padding: 72px 48px 56px 40px;
  justify-content: flex-end;
}

.specialties-intro-copy p {
  max-width: 48ch;
  line-height: 1.4;
}
.specialties-intro-copy p + p {
  margin-top: 20px;
}

.specialties-tagline {
  max-width: 30ch;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.32;
  font-weight: 300;
}

.specialties-image {
  min-height: 100%;
  background-image: url("images/specialties.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* SHARED WIDTH + TYPOGRAPHY FOR SECTIONS 2 & 3 */
.specialties-narrative-copy .panel-content,
.specialties-list-copy .panel-content {
  max-width: 980px;
  margin: 0 auto;
  justify-content: flex-start;
  padding-top: 72px;
  padding-bottom: 72px;
}

.specialties-narrative-lead,
.specialties-lead {
  max-width: 980px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* SECTION 2: NARRATIVE */
.specialties-narrative {
  grid-template-columns: 1fr;
  background: rgba(0, 76, 128, 0.03);
}

.specialties-narrative-lead {
  margin-bottom: 32px;
}

.specialties-narrative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 22px;
  max-width: 980px;
}

.specialties-narrative-grid p,
.specialties-grid p {
  font-size: clamp(1.15rem, 1.3vw, 1.3rem);
  line-height: 1.45;
  font-weight: 300;
  max-width: none;
}

/* SECTION 3: SCANNABLE LIST */
.specialties-list-section {
  grid-template-columns: 1fr;
}

.specialties-lead {
  margin-bottom: 32px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 36px;
       column-gap: 36px;
  row-gap: 18px;
  max-width: 980px;
}

/* =========================
   GETTING STARTED PAGE
========================= */
.getting-started-container {
  width: 100%;
}

/* INTRO */
.getting-started-intro {
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.getting-started-copy .panel-content {
  justify-content: center;
  padding: 72px 48px 56px 40px;
}
.getting-started-copy p {
  max-width: 34ch;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.36;
}
.getting-started-copy p + p {
  margin-top: 24px;
}

.getting-started-image {
  min-height: 100%;
  background-image: url("images/gettingstarted.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* PROCESS */
.getting-started-process {
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  min-height: 280px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid #1f3b5c;
}
.process-step:last-child {
  border-right: none;
}
.process-step h2 {
  margin-bottom: 16px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.process-step p {
  max-width: 32ch;
  font-size: clamp(1rem, 1.15vw, 1.16rem);
  line-height: 1.45;
}

/* DETAILS */
.getting-started-details {
  grid-template-columns: 1fr 1fr;
}

.detail-block .panel-content {
  justify-content: flex-start;
  padding-top: 72px;
  padding-bottom: 72px;
}
.detail-block h2 {
  margin-bottom: 24px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.detail-block p {
  max-width: 40ch;
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
  line-height: 1.5;
}
.detail-block p + p {
  margin-top: 22px;
}

/* CTA */
.getting-started-cta-inline {
  border-bottom: 1px solid #1f3b5c;
  background: #fbfaf7;
  text-align: center;
}
.getting-started-cta-inline a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 28px 24px;
  border-bottom: 1px solid #1f3b5c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.getting-started-cta-inline a:hover {
  background: #004c80;
  color: #ffffff;
}
.getting-started-cta-inline a span::after {
  content: " →";
  margin-left: 6px;
}
.getting-started-cta-inline p {
  max-width: 620px;
  margin: 0 auto;
  padding: 26px 20px;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

/* =========================
   FOOTER
========================= */
.custom-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: none;
}

.footer-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 40px 28px;
  text-transform: uppercase;
  background: #fbfaf7;
  color: #4a4a4a;
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
  border-right: 1px solid #1f3b5c;
  border-bottom: none;
}
.footer-tile:last-child {
  border-right: none;
}
.footer-tile:hover {
  background: #004c80;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .nav-links {
    gap: 16px;
  }
  .panel-content {
    padding: 48px 28px;
  }
  .custom-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    border-top: 1px solid #1f3b5c;
  }
  .footer-tile {
    min-height: 104px;
    padding: 28px 20px;
    background: rgba(0, 76, 128, 0.04);
    border-right: 1px solid #1f3b5c;
    border-bottom: 1px solid #1f3b5c;
  }
  .footer-tile:nth-child(2n) {
    border-right: none;
  }
  .footer-tile:nth-child(3), .footer-tile:nth-child(4) {
    border-bottom: none;
  }
  .footer-tile:hover {
    background: #004c80;
    color: #ffffff;
  }
}
@media (max-width: 800px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .nav-container {
    padding: 0 20px;
    gap: 20px;
  }
  .logo {
    font-size: 17px;
  }
  .hero-panel,
  .approach-panel,
  .focus-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .divider-right {
    border-right: none;
  }
  .panel-content {
    padding: 40px 20px;
  }
  .hero-panel .hero-copy {
    order: 1;
  }
  .hero-panel .hero-image {
    order: 2;
    display: block;
    min-height: 360px;
    background-position: bottom center;
    border-top: 1px solid #1f3b5c;
  }
  .approach-panel {
    min-height: auto;
  }
  .approach-panel .approach-copy {
    order: 1;
  }
  .approach-panel .approach-copy .panel-content {
    align-items: flex-start;
    text-align: left;
  }
  .approach-panel .approach-label {
    order: 2;
    border-top: 1px solid #1f3b5c;
  }
  .approach-panel .approach-label .panel-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
  }
  .focus-panel {
    min-height: auto;
  }
  .focus-panel .focus-copy {
    order: 1;
  }
  .focus-panel .focus-copy .panel-content {
    align-items: flex-start;
    text-align: left;
  }
  .focus-panel .focus-label {
    order: 2;
    border-top: 1px solid #1f3b5c;
  }
  .focus-panel .focus-label .panel-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
  }
  .bio-article-inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 48px 20px;
  }
  .bio-side-image {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .bio-text-column {
    max-width: none;
  }
  .bio-clinical-inner {
    padding: 48px 20px;
  }
  .bio-clinical-grid {
    -moz-column-count: 1;
         column-count: 1;
  }
  /* THERAPY PAGE MOBILE */
  .therapy-overview,
  .therapy-how {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .therapy-tagline {
    border-right: none;
    border-bottom: 1px solid #1f3b5c;
  }
  .therapy-tagline .panel-content {
    padding: 48px 20px;
    justify-content: flex-start;
  }
  .therapy-tagline p {
    max-width: none;
    font-size: 1.35rem;
  }
  .therapy-format-list {
    grid-template-rows: none;
  }
  .therapy-format {
    padding: 32px 20px;
  }
  .therapy-format p {
    max-width: none;
    font-size: 1.08rem;
  }
  .therapy-image-band {
    height: 32vh;
    min-height: 220px;
    background-image: url("images/therapy-mobile.jpg");
    background-position: center center;
  }
  .therapy-how-label {
    border-right: none;
    border-bottom: 1px solid #1f3b5c;
  }
  .therapy-how-label .panel-content {
    padding: 28px 20px;
  }
  .therapy-how-copy .panel-content {
    max-width: none;
    margin: 0;
    padding: 48px 20px;
    justify-content: flex-start;
  }
  .therapy-how-copy p {
    max-width: none;
    font-size: 1.08rem;
  }
  /* =========================
     SPECIALTIES PAGE MOBILE
  ========================= */
}
@media (max-width: 800px) and (max-width: 800px) {
  .specialties-intro,
  .specialties-narrative,
  .specialties-list-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .specialties-intro .divider-right {
    border-right: none;
  }
  .specialties-text {
    order: 1;
  }
  .specialties-text .panel-content {
    max-width: none;
    padding: 48px 20px 32px;
    justify-content: flex-start;
  }
  .specialties-intro-copy p {
    max-width: none;
  }
  .specialties-tagline {
    max-width: none;
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .specialties-image {
    order: 2;
    min-height: 360px;
    background-position: center center;
  }
  .specialties-narrative-copy .panel-content,
  .specialties-list-copy .panel-content {
    max-width: none;
    margin: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .specialties-narrative-grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
    max-width: none;
  }
  .specialties-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
    max-width: none;
  }
  .specialties-narrative-grid p,
  .specialties-grid p {
    font-size: 1.08rem;
  }
  .specialties-narrative-lead,
  .specialties-lead {
    max-width: none;
    margin-bottom: 24px;
  }
}
@media (max-width: 800px) {
  .page-section .page-content {
    padding: 48px 20px;
  }
}
@media (max-width: 800px) {
  /* GETTING STARTED PAGE MOBILE */
  .getting-started-intro,
  .getting-started-details {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .getting-started-copy {
    border-right: none;
  }
  .getting-started-copy .panel-content {
    padding: 48px 20px;
    justify-content: flex-start;
  }
  .getting-started-copy p {
    max-width: none;
    font-size: 1.35rem;
  }
  .getting-started-image {
    min-height: 320px;
    background-position: center center;
  }
  .getting-started-process {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: auto;
    padding: 32px 20px;
    border-right: none;
    border-bottom: 1px solid #1f3b5c;
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .process-step p {
    max-width: none;
    font-size: 1.05rem;
  }
  .detail-block {
    border-right: none;
  }
  .detail-block:first-child {
    border-bottom: 1px solid #1f3b5c;
  }
  .detail-block .panel-content {
    padding: 48px 20px;
  }
  .detail-block p {
    max-width: none;
    font-size: 1.05rem;
  }
  .getting-started-cta-inline a {
    min-height: 104px;
    padding: 28px 20px;
  }
  .getting-started-cta-inline p {
    padding: 22px 20px;
    font-size: 0.98rem;
  }
  .custom-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    border-top: 1px solid #1f3b5c;
  }
  .footer-tile {
    min-height: 92px;
    padding: 22px 14px;
    font-size: 11px;
    line-height: 1.3;
    background: rgba(0, 76, 128, 0.04);
    border-right: 1px solid #1f3b5c !important;
    border-bottom: 1px solid #1f3b5c;
  }
  .footer-tile:nth-child(2n) {
    border-right: none !important;
  }
  .footer-tile:nth-