:root {
  --navy-950: #102f65;
  --navy-900: #173f83;
  --navy-800: #20509c;
  --blue-700: #2788c2;
  --blue-600: #51a5d7;
  --blue-300: #acd9ee;
  --blue-100: #e4f3fa;
  --blue-050: #f4fafd;
  --ink: #15283c;
  --slate: #526879;
  --muted: #748997;
  --white: #ffffff;
  --line: #d6e7f1;
  --shadow-sm: 0 10px 30px rgba(16, 47, 101, 0.07);
  --shadow-md: 0 22px 60px rgba(16, 47, 101, 0.12);
  --shadow-lg: 0 30px 75px rgba(16, 47, 101, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
  color: var(--slate);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: "Lora", Georgia, serif;
}

h1 {
  font-size: clamp(2.9rem, 5.5vw, 4.45rem);
}

h2 {
  font-size: clamp(2rem, 3.1vw, 2.9rem);
}

h3 {
  font-size: 1.2rem;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 108px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: -80px;
  left: 18px;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--navy-900);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 0;
}

.preview-bar {
  display: flex;
  position: relative;
  z-index: 20;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(81, 165, 215, 0.17);
}

.preview-detail {
  color: #c8deeb;
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 25px rgba(16, 47, 101, 0.06);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  border: 1px solid #d3e5ef;
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.23;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links > a:not(.button) {
  color: #334e63;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.nav-links > a:not(.button):hover,
.nav-links > a:not(.button):focus-visible {
  color: var(--blue-700);
}

.button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(81, 165, 215, 0.42);
  outline-offset: 2px;
}

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 9px 20px rgba(23, 63, 131, 0.22);
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 14px 25px rgba(23, 63, 131, 0.28);
}

.button-secondary {
  color: var(--navy-900);
  border-color: #bfd9e9;
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--blue-600);
  background: var(--blue-050);
}

.button-small {
  min-height: 47px;
  padding: 10px 20px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 715px;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 82% 16%, rgba(81, 165, 215, 0.15) 0, transparent 31%),
    linear-gradient(134deg, #fff 32%, var(--blue-050) 100%);
}

.hero-texture {
  position: absolute;
  right: -30px;
  bottom: 36px;
  width: 510px;
  height: 312px;
  opacity: 0.48;
  background-image: radial-gradient(var(--blue-300) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse, #000 25%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 31px;
  height: 2px;
  content: "";
  background: var(--blue-600);
}

.hero-copy h1 {
  max-width: 650px;
}

.hero-copy h1 span {
  color: var(--navy-900);
  background: linear-gradient(transparent 72%, var(--blue-100) 72%);
}

.hero-lead {
  max-width: 582px;
  margin: 24px 0 37px;
  color: #4d6475;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-locations {
  display: flex;
  gap: 27px;
  margin-top: 46px;
  color: var(--navy-900);
  font-size: 0.91rem;
  font-weight: 700;
}

.hero-locations span {
  position: relative;
}

.hero-locations span + span::before {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--blue-600);
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(81, 165, 215, 0.2);
  border-radius: 50%;
}

.visual-ring-one {
  width: 496px;
  height: 496px;
}

.visual-ring-two {
  width: 566px;
  height: 566px;
  border-style: dashed;
}

.logo-card {
  position: relative;
  z-index: 1;
  width: clamp(320px, 39vw, 406px);
  padding: 18px;
  border: 1px solid rgba(197, 225, 239, 0.82);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.logo-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.floating-card {
  display: flex;
  position: absolute;
  z-index: 2;
  align-items: center;
  border: 1px solid rgba(214, 231, 241, 0.8);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.card-facility {
  gap: 12px;
  right: 4px;
  bottom: 92px;
  padding: 13px 19px 13px 13px;
  border-radius: 18px;
}

.card-facility strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.88rem;
  line-height: 1.3;
}

.card-facility small {
  color: var(--slate);
  font-size: 0.76rem;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--blue-700);
  border-radius: 12px;
  background: var(--blue-100);
  place-items: center;
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.card-local {
  flex-direction: column;
  gap: 0;
  top: 103px;
  left: 2px;
  padding: 13px 21px;
  border-radius: 17px;
  color: var(--slate);
  font-size: 0.77rem;
}

.card-local strong {
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1.15;
}

.promise-strip {
  position: relative;
  z-index: 3;
  background: var(--navy-950);
}

.promise-grid {
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: space-between;
  min-height: 106px;
}

.promise-grid > p {
  flex: 0 1 330px;
  color: var(--white);
  font-family: "Lora", Georgia, serif;
  font-size: 1.34rem;
}

.promise-items {
  display: flex;
  gap: 35px;
  color: #d2e3ee;
  font-size: 0.92rem;
  font-weight: 600;
}

.promise-items span {
  display: flex;
  gap: 11px;
  align-items: center;
}

.promise-items span::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--blue-600);
}

.section-heading {
  max-width: 665px;
  margin-bottom: 49px;
}

.section-heading h2 {
  margin-bottom: 17px;
}

.section-heading > p:last-child {
  font-size: 1.03rem;
}

.services {
  padding-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 266px;
  padding: 31px 25px;
  border: 1px solid #e1edf4;
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: #c3dfed;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  color: var(--navy-900);
  border-radius: 16px;
  background: var(--blue-100);
  place-items: center;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.pathways {
  padding-top: 42px;
  background: var(--blue-050);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 23px;
}

.pathway {
  min-height: 522px;
  padding: 50px 48px;
  border-radius: var(--radius-lg);
  scroll-margin-top: 108px;
}

.pathway h2 {
  margin-bottom: 19px;
  font-size: clamp(1.72rem, 2.4vw, 2.18rem);
}

.pathway > p:not(.eyebrow) {
  margin-bottom: 30px;
}

.pathway-facility {
  border: 1px solid #d6e8f1;
  background: var(--white);
}

.pathway-professional {
  color: var(--white);
  background: var(--navy-900);
}

.pathway-professional h2,
.pathway-professional .eyebrow,
.pathway-professional .text-link {
  color: var(--white);
}

.pathway-professional p,
.pathway-professional li {
  color: #d9e6f0;
}

.pathway-professional .eyebrow::before {
  background: #80c5e5;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 35px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #385064;
  font-size: 0.94rem;
  font-weight: 550;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  content: "";
  border-radius: 50%;
  background: var(--blue-100);
}

.check-list li::after {
  position: absolute;
  top: 9px;
  left: 6px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--navy-900);
  border-left: 2px solid var(--navy-900);
  transform: rotate(-45deg);
}

.pathway-professional .check-list li::before {
  background: rgba(112, 192, 226, 0.22);
}

.pathway-professional .check-list li::after {
  border-color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--navy-900);
  font-weight: 750;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.approach {
  padding-top: 94px;
  padding-bottom: 80px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 65px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: -13px;
  width: 26px;
  height: 1px;
  content: "";
  background: #bbdce9;
}

.step > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 23px;
  color: var(--navy-900);
  border-radius: 13px;
  background: var(--blue-100);
  font-size: 0.84rem;
  font-weight: 800;
  place-items: center;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
}

.about {
  padding: 102px 0;
  background: #f0f8fc;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-logo {
  width: 314px;
  padding: 11px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.about-logo img {
  border-radius: 50%;
}

blockquote {
  position: absolute;
  right: 8px;
  bottom: 29px;
  width: 255px;
  margin: 0;
  padding: 27px 26px;
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

blockquote p {
  color: var(--white);
  font-family: "Lora", Georgia, serif;
  font-size: 1.13rem;
  line-height: 1.55;
}

.about-copy h2 {
  margin-bottom: 23px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 584px;
  margin-bottom: 17px;
  font-size: 1rem;
  line-height: 1.84;
}

.coverage .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered .eyebrow::before {
  display: none;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.location-card {
  padding: 36px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.location-card svg {
  width: 31px;
  height: 31px;
  margin-bottom: 20px;
  color: var(--blue-700);
}

.location-card h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
}

.location-card p {
  font-size: 0.92rem;
}

.contact {
  padding: 87px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 88%, rgba(81, 165, 215, 0.2), transparent 30%),
    var(--navy-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 78px;
  align-items: start;
}

.contact-copy {
  padding-top: 22px;
}

.contact-copy .eyebrow {
  color: #7ec2e2;
}

.contact-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
}

.contact-intro {
  margin-bottom: 40px;
  color: #d6e5f0;
  font-size: 1.02rem;
}

.email-card {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-bottom: 26px;
  padding: 17px;
  border: 1px solid rgba(185, 216, 233, 0.2);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 160ms ease, background 160ms ease;
}

.email-card:hover {
  border-color: rgba(185, 216, 233, 0.43);
  background: rgba(255, 255, 255, 0.09);
}

.email-card svg {
  width: 27px;
  height: 27px;
  color: #78c0e2;
}

.email-card span {
  display: flex;
  flex-direction: column;
}

.email-card small {
  color: #a9c5d8;
}

.email-card strong {
  color: var(--white);
  font-size: 1rem;
}

.contact-note {
  color: #bcd2e0;
  font-size: 0.92rem;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 41px 42px 38px;
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 62px rgba(5, 24, 53, 0.24);
}

.form-header {
  margin-bottom: 6px;
}

.form-header h3 {
  margin-bottom: 7px;
  font-size: 1.42rem;
}

.form-header p {
  font-size: 0.87rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #344c61;
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d3e2eb;
  border-radius: 11px;
  color: var(--ink);
  background: #fcfeff;
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 49px;
  padding: 0 14px;
}

textarea {
  min-height: 111px;
  padding: 12px 14px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9cc9de;
}

.form-button {
  width: 100%;
  margin-top: 7px;
}

.form-status {
  display: none;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--navy-900);
  background: var(--blue-100);
  font-size: 0.88rem;
}

.form-status.is-visible {
  display: block;
}

.site-footer {
  color: #d0e0eb;
  background: #0b254d;
}

.footer-grid {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 38px 0;
}

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

.footer-brand img {
  width: 63px;
  height: 63px;
  border-radius: 50%;
}

.footer-brand strong {
  color: var(--white);
  font-size: 1.05rem;
}

.footer-brand p,
.footer-contact p {
  color: #a9c2d3;
  font-size: 0.85rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--white);
  font-weight: 650;
}

.footer-preview {
  padding: 13px 20px;
  border-top: 1px solid rgba(192, 216, 231, 0.13);
  color: #a9c2d3;
  font-size: 0.79rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .container {
    width: min(var(--container), calc(100% - 40px));
  }

  .nav-links {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    padding-top: 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-locations {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .promise-grid {
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: 25px 0;
  }

  .promise-grid > p {
    flex-basis: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .approach-grid .section-heading {
    margin-bottom: 0;
  }

  .about-media {
    width: min(490px, 100%);
    margin: 0 auto;
  }

  .contact-copy {
    max-width: 570px;
    padding-top: 0;
  }
}

@media (max-width: 850px) {
  .preview-bar {
    flex-wrap: wrap;
  }

  .navigation {
    min-height: 76px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 3px);
    right: 20px;
    left: 20px;
    flex-direction: column;
    gap: 3px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links > a:not(.button) {
    padding: 11px 12px;
  }

  .nav-links .button {
    margin-top: 5px;
  }

  .section {
    padding: 73px 0;
  }

  .pathway-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .pathway {
    min-height: auto;
    padding: 42px 37px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .step {
    display: grid;
    grid-template-columns: 49px 1fr;
    column-gap: 17px;
  }

  .step > span {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 34px);
  }

  .preview-detail {
    display: none;
  }

  .brand-logo {
    width: 51px;
    height: 51px;
  }

  .brand-copy strong {
    font-size: 1.01rem;
  }

  .brand-copy small {
    font-size: 0.67rem;
  }

  .hero {
    min-height: 0;
    padding: 50px 0 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 12.7vw, 2.8rem);
  }

  .hero-lead {
    margin: 18px 0 30px;
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-locations {
    gap: 22px;
    margin-top: 35px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-ring-one {
    width: 345px;
    height: 345px;
  }

  .visual-ring-two {
    width: 385px;
    height: 385px;
  }

  .logo-card {
    width: min(293px, calc(100% - 42px));
    padding: 11px;
  }

  .card-local {
    top: 34px;
    left: 1px;
    padding: 10px 15px;
  }

  .card-facility {
    right: 0;
    bottom: 27px;
    padding: 9px 12px 9px 9px;
  }

  .card-icon {
    width: 36px;
    height: 36px;
  }

  .promise-grid {
    text-align: center;
  }

  .promise-grid > p {
    font-size: 1.13rem;
  }

  .promise-items {
    flex-direction: column;
    gap: 8px;
  }

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

  .service-card {
    min-height: 0;
  }

  .pathway {
    padding: 37px 27px;
  }

  .about-media {
    min-height: 366px;
  }

  .about-logo {
    width: min(278px, 86%);
  }

  blockquote {
    right: 0;
    bottom: 13px;
    width: 218px;
    padding: 20px;
  }

  .contact {
    padding: 67px 0;
  }

  .inquiry-form {
    gap: 17px;
    padding: 29px 21px;
    border-radius: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
