@font-face {
  font-family: FiraSans;
  src: url("../fonts/FiraSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: FiraSans;
  src: url("../fonts/FiraSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}
:root {
  --ink: #193542;
  --muted: #516872;
  --blue: #147cb7;
  --blue-dark: #075a88;
  --blue-pale: #eaf5fa;
  --mist: #f4f8fa;
  --line: #cbdde5;
  --surface: #fff;
  --radius: 12px;
  --shadow: 0 14px 36px rgb(20 72 97/0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font:
    400 17px/1.65 FiraSans,
    Arial,
    sans-serif;
}
a {
  color: var(--blue-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--blue);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.13;
}
h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.65rem);
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 14ch;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.62em;
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  margin: 0 0 0.45em;
}
p,
li {
  max-width: 68ch;
}
.skip-link {
  background: #fff;
  color: #000;
  left: -999px;
  padding: 0.7rem;
  position: absolute;
  top: 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0.8rem;
  top: 0.8rem;
}
.site-header {
  height: 88px;
  background: #fff;
  border-bottom: 1px solid rgb(25 53 66/0.1);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  align-items: center;
  display: flex;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
  margin: auto;
  max-width: 1280px;
  padding: 0 28px;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.brand span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.brand strong {
  color: var(--ink);
  font-size: 1.28rem;
  letter-spacing: -0.035em;
}
.site-header nav {
  align-items: center;
  display: flex;
  gap: 20px;
}
.site-header nav ul {
  align-items: center;
  display: flex;
  gap: 19px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a[aria-current="page"] {
  color: var(--blue);
}
.button {
  align-items: center;
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 7px;
  color: #fff !important;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  line-height: 1.2;
  min-height: 46px;
  padding: 0.68rem 1.05rem;
  text-align: center;
  text-decoration: none;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.button:active {
  transform: translateY(1px);
}
.button.secondary {
  background: transparent;
  color: var(--blue-dark) !important;
}
.button.secondary:hover {
  background: var(--blue-pale);
}
.header-cta {
  white-space: nowrap;
}
.menu-toggle {
  background: transparent;
  border: 0;
  color: var(--ink);
  display: none;
  font: 700 0.9rem FiraSans;
  padding: 0.6rem;
}
.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  width: 20px;
}
.menu-toggle b {
  margin-left: 7px;
}
.page-hero {
  align-items: end;
  background: var(--ink);
  color: #fff;
  display: grid;
  isolation: isolate;
  min-height: 330px;
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  background: linear-gradient(
    90deg,
    rgb(11 49 66 / 0.86),
    rgb(11 49 66 / 0.36)
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}
.page-hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.page-hero .inner {
  margin: auto;
  padding: 58px 0;
  position: relative;
  width: min(100% - 56px, 1280px);
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  text-wrap: balance;
}
.breadcrumb {
  font-size: 0.9rem;
  margin: 0 0 15px;
}
.breadcrumb a {
  color: #fff;
}
.content {
  margin: auto;
  padding: 78px 0;
  width: min(100% - 48px, 800px);
}
.language-tabs {
  margin: auto;
  padding: 2rem 0 0;
  width: min(100% - 48px, 800px);
}
.language-tabs [role="tablist"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.language-panel[hidden] {
  display: none;
}
.content > h2 {
  margin-top: 2.25em;
}
.content > h2:first-child {
  margin-top: 0;
}
.content p,
.content li {
  color: var(--muted);
}
.content li {
  margin: 0.45em 0;
}
.content ul,
.content ol {
  padding-left: 1.35rem;
}
.content a:not(.button) {
  overflow-wrap: anywhere;
}
.content table {
  border-collapse: collapse;
  margin: 1.75rem 0;
  width: 100%;
}
.content td,
.content th {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem;
  text-align: left;
}
.content-image {
  margin: 2.4rem auto;
  max-width: 100%;
}
.content-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.location-links {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.location-links li {
  margin: 0.45rem 0;
}
.content :is(.fusion-layout-column, .fusion-column-wrapper) {
  display: contents;
}
.eyebrow {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}
.contact-form {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
  margin: 4rem 0 0;
  padding: clamp(1.5rem, 5vw, 3.25rem);
}
.contact-form h2 {
  margin: 0.1em 0 0.4em;
}
.contact-form form {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.field:has(textarea) {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.field em {
  color: #9c2635;
  font-style: normal;
}
input,
textarea {
  background: #fff;
  border: 1px solid #7893a0;
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem;
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: #546b75;
}
input:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #f1a627;
  outline-offset: 3px;
}
.contact-form .button {
  justify-self: start;
}
.form-status {
  grid-column: 1/-1;
  margin: 0;
}
.site-footer {
  background: #173d52;
  color: #e8f2f6;
}
.footer-inner {
  display: grid;
  gap: 38px;
  grid-template-columns: 1.45fr 1.2fr 0.75fr;
  margin: auto;
  padding: 54px 0 36px;
  width: min(100% - 48px, 1280px);
}
.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  margin: 0 0 0.7rem;
}
.site-footer p {
  color: #d8e8ef;
  margin: 0.3rem 0;
}
.site-footer a {
  color: #fff;
}
.clinic-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.clinic-list li {
  align-items: baseline;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  max-width: none;
}
.clinic-list span {
  color: #d8e8ef;
  font-weight: 700;
}
.clinic-list a {
  text-decoration-color: rgb(255 255 255 / 0.45);
}
.footer-brand strong {
  color: #fff;
}
.footer-brand {
  margin-bottom: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgb(255 255 255/0.18);
  font-size: 0.86rem;
  padding: 18px 24px;
  text-align: center;
}
.not-found {
  min-height: 52vh;
  padding: 104px 24px;
  text-align: center;
}
.not-found h1,
.not-found p {
  margin-inline: auto;
}
/* Revamped homepage and location patterns */
.home-hero {
  background: var(--mist);
  color: var(--ink);
  min-height: 0;
}
.hero-07 .hero-media {
  align-self: stretch;
  margin: 0;
  min-height: 410px;
  overflow: hidden;
  position: relative;
}
.hero-07 .hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.hero-07 .inner {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  margin: auto;
  padding: clamp(48px, 7vw, 88px) 0;
  width: min(100% - 56px, 1200px);
}
.hero-tagline {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
.home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 600px;
}
.home-hero-copy h1 {
  color: var(--ink);
  max-width: 10ch;
}
.home-hero-copy p {
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-actions .secondary {
  border-color: var(--blue);
  color: var(--blue-dark) !important;
}
.hero-actions .secondary:hover {
  background: var(--blue-pale);
}
.home-content {
  max-width: none;
  padding: 0;
  width: 100%;
}
.section {
  margin: auto;
  padding: 78px 0;
  width: min(100% - 48px, 1180px);
}
.section.tint {
  background: var(--mist);
  width: 100%;
}
.section.tint > * {
  margin-left: auto;
  margin-right: auto;
  width: min(100% - 48px, 1180px);
}
.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.34rem);
  max-width: 62ch;
}
.benefits {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}
.benefit {
  border-top: 3px solid var(--blue);
  padding: 22px 8px 0;
}
.benefit img {
  height: 48px;
  margin-bottom: 16px;
  width: 48px;
}
.benefit p {
  color: var(--muted);
  margin: 0;
}
.feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
}
.feature-grid.reverse {
  grid-template-columns: 0.88fr 1.12fr;
}
.feature-grid figure {
  margin: 0;
}
.feature-grid img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}
.link-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
.link-list a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  padding: 21px;
  text-decoration: none;
}
.link-list a:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
}
.location-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.location-card p {
  margin: 0.35rem 0;
}
.location-card h3 a {
  text-decoration: none;
}
.cta-panel {
  background: var(--blue-pale);
  border-left: 5px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 54px auto;
  padding: 34px;
  width: min(100% - 48px, 1180px);
}
.cta-panel h2 {
  margin-bottom: 0.35em;
}
.utility-hero {
  min-height: 230px;
}
.utility-hero .inner {
  padding: 44px 0;
}
.locations-page {
  width: min(100% - 48px, 1180px);
}
@media (max-width: 1080px) {
  .site-header nav ul {
    gap: 12px;
  }
  .site-header nav a {
    font-size: 0.82rem;
  }
  .header-cta {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .site-header {
    height: 86px;
  }
  .header-inner {
    padding: 0 18px;
  }
  .menu-toggle {
    align-items: center;
    column-gap: 9px;
    display: inline-grid;
    grid-template-columns: 22px auto;
    grid-template-rows: repeat(3, 3px);
    min-height: 48px;
    min-width: 48px;
    padding: 10px 4px 10px 10px;
    position: relative;
    row-gap: 5px;
    touch-action: manipulation;
  }
  .menu-toggle span {
    grid-column: 1;
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
    width: 22px;
  }
  .menu-toggle span:nth-child(1) {
    grid-row: 1;
  }
  .menu-toggle span:nth-child(2) {
    grid-row: 2;
  }
  .menu-toggle span:nth-child(3) {
    grid-row: 3;
  }
  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / 4;
    margin: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-header nav {
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 22px rgb(20 53 66/0.12);
    display: none;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 86px;
    z-index: 30;
  }
  .site-header nav.open {
    display: block;
  }
  .site-header nav ul {
    display: grid;
    gap: 0;
  }
  .site-header nav li a {
    display: block;
    font-size: 1rem;
    padding: 12px 0;
  }
  .page-hero {
    min-height: 290px;
  }
  .page-hero .inner {
    padding: 46px 0;
    width: min(100% - 36px, 1280px);
  }
  .content {
    padding: 48px 0;
    width: min(100% - 36px, 800px);
  }
  .footer-inner {
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 42px 0 28px;
    width: min(100% - 36px, 1280px);
  }
  .contact-form {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }
  .contact-form form {
    grid-template-columns: 1fr;
  }
  .hero-07 .inner {
    gap: 32px;
    grid-template-columns: 1fr;
    padding: 40px 0 56px;
    width: min(100% - 36px, 1200px);
  }
  .hero-07 .hero-media {
    min-height: 0;
  }
  .hero-07 .hero-media img {
    aspect-ratio: 3 / 2;
    height: auto;
  }
  .hero-tagline {
    max-width: none;
  }
  .home-hero-copy {
    gap: 18px;
    max-width: none;
  }
  .section {
    padding: 54px 0;
    width: min(100% - 36px, 1180px);
  }
  .section.tint > * {
    width: min(100% - 36px, 1180px);
  }
  .benefits,
  .link-list,
  .location-grid,
  .feature-grid,
  .feature-grid.reverse {
    grid-template-columns: 1fr;
  }
  .benefit {
    padding-top: 18px;
  }
  .cta-panel {
    padding: 27px;
    width: min(100% - 36px, 1180px);
  }
  .locations-page {
    width: min(100% - 36px, 1180px);
  }
}

/* Purposeful, low-distraction motion */
@media (prefers-reduced-motion: no-preference) {
  .home-hero-copy,
  .page-hero .inner {
    animation: hero-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-07 .hero-media {
    animation: image-enter 850ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .reveal-pending {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 500ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .button {
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }
  .button:hover {
    box-shadow: 0 8px 18px rgb(7 90 136 / 0.2);
    transform: translateY(-2px);
  }
  .site-footer a,
  .site-nav a {
    transition: color 160ms ease;
  }
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes image-enter {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Logo system */
.brand {
  align-items: center;
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
}
.brand img {
  display: block;
  height: auto;
  max-width: 130px;
  object-fit: contain;
  object-position: left center;
  width: auto;
}
.footer-brand img {
  height: 68px;
  max-width: 300px;
}
.brand span,
.brand strong {
  display: none;
}
@media (max-width: 760px) {
  .brand img {
    height: auto;
    max-width: 118px;
  }
  .footer-brand img {
    height: 58px;
    max-width: 245px;
  }
}
