:root {
  --brand-navy: #07345F;
  --deep-ink: #101936;
  --clinical-blue: #176B9A;
  --teal: #148B84;
  --soft-blue: #EAF4F7;
  --warm-white: #FBFCFA;
  --mist: #EEF2F4;
  --text-slate: #243044;
  --muted-green: #8CB7A3;
  --required: #B45A3C;
  --white: #ffffff;
  --shadow-soft: 0 18px 48px rgba(16, 25, 54, 0.12);
  --shadow-card: 0 14px 36px rgba(7, 52, 95, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-slate);
  background: var(--warm-white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
}

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

a:hover {
  color: var(--clinical-blue);
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4.35rem;
  max-width: 760px;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 1.15rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

address {
  font-style: normal;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  transform: translateY(-160%);
  background: var(--deep-ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(7, 52, 95, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(16, 25, 54, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 238px;
}

.brand__logo {
  width: 142px;
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  display: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--deep-ink);
  font-weight: 700;
}

.nav-link,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-link.is-active,
.nav-dropdown.is-active > a,
.nav-link:hover,
.nav-dropdown:hover > a {
  background: var(--soft-blue);
  color: var(--brand-navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(7, 52, 95, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.nav-dropdown__menu a:hover {
  background: var(--soft-blue);
}

.nav-phone {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-navy), var(--clinical-blue));
  box-shadow: 0 13px 28px rgba(7, 52, 95, 0.18);
}

.button--primary:hover {
  color: var(--white);
  box-shadow: 0 15px 32px rgba(7, 52, 95, 0.26);
}

.button--secondary {
  color: var(--brand-navy);
  background: var(--white);
  border-color: rgba(7, 52, 95, 0.16);
}

.button--secondary:hover {
  background: var(--soft-blue);
  color: var(--brand-navy);
}

.button--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 52, 95, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand-navy);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    linear-gradient(140deg, rgba(234, 244, 247, 0.92), rgba(251, 252, 250, 0.86) 52%, rgba(140, 183, 163, 0.20)),
    var(--warm-white);
}

.hero-grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow {
  color: var(--clinical-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lede,
.page-hero p,
.section-heading p {
  max-width: 660px;
  font-size: 1.18rem;
  color: var(--text-slate);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 8px 0 0;
}

.hero-contact div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-md);
}

.hero-contact dt {
  color: var(--clinical-blue);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-contact dd {
  margin: 3px 0 0;
  color: var(--deep-ink);
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.hero-media img,
.page-hero img,
.service-hero img,
.feature-row img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 4 / 5;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.hero-badge span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--brand-navy);
  border-radius: 999px;
  font-weight: 900;
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 34px 0 0;
}

.section--blue {
  background: linear-gradient(135deg, var(--soft-blue), rgba(251, 252, 250, 0.88));
}

.section--cream {
  background: #F7F5EF;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 780px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-card,
.info-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.trust-card span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--teal), var(--clinical-blue));
  border-radius: 999px;
}

.trust-card p,
.info-card p {
  font-weight: 750;
  color: var(--deep-ink);
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.service-card__body {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.service-card__eyebrow {
  width: fit-content;
  padding: 5px 9px;
  color: var(--brand-navy);
  background: var(--soft-blue);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.text-link {
  color: var(--clinical-blue);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 52px;
}

.split--center {
  align-items: center;
}

.prose {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

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

.process-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-md);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-weight: 900;
}

.process-grid h3,
.info-card h2 {
  margin-bottom: 10px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.feature-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.feature-row--reverse img,
.feature-row--reverse picture {
  order: 2;
}

.feature-row > div {
  display: grid;
  gap: 18px;
}

.page-hero,
.service-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, var(--soft-blue), var(--warm-white));
}

.page-hero--compact {
  padding: 68px 0;
}

.page-hero--compact .container {
  display: grid;
  gap: 14px;
}

.page-hero img,
.service-hero img {
  aspect-ratio: 5 / 4;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.values-grid article {
  padding: 34px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.values-grid h2 {
  margin: 8px 0 12px;
}

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

.check-list li {
  position: relative;
  padding: 15px 16px 15px 46px;
  background: var(--white);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-sm);
  color: var(--deep-ink);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 999px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.form-panel,
.policy-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(7, 52, 95, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-list {
  display: grid;
  gap: 18px;
  padding: 22px 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--clinical-blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  color: var(--deep-ink);
  font-weight: 800;
}

.form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--deep-ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 52, 95, 0.16);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--deep-ink);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus,
button:focus {
  outline: 3px solid rgba(20, 139, 132, 0.28);
  outline-offset: 3px;
}

.privacy-note {
  padding: 14px 16px;
  color: var(--text-slate);
  background: var(--soft-blue);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.privacy-note a {
  color: var(--brand-navy);
  font-weight: 900;
  text-decoration: underline;
}

.success-message {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(20, 139, 132, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(20, 139, 132, 0.10);
  color: var(--deep-ink);
}

.policy-layout {
  width: min(100% - 40px, 880px);
}

.policy-card {
  display: grid;
  gap: 16px;
}

.policy-card h2 {
  margin-top: 22px;
  font-size: 1.55rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card ul {
  display: grid;
  gap: 7px;
}

.policy-card a {
  color: var(--clinical-blue);
  font-weight: 800;
}

.final-cta {
  padding-top: 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 52, 95, 0.96), rgba(23, 107, 154, 0.94)),
    var(--brand-navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel .eyebrow {
  color: #BEE7DF;
  margin-bottom: 8px;
}

.cta-panel .button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer {
  margin-top: 88px;
  padding: 62px 0 26px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--deep-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand img {
  width: 190px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 360px;
}

.footer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-list a:hover,
.footer-bottom a:hover {
  color: #BEE7DF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 18px 20px 28px;
    background: var(--warm-white);
    border-bottom: 1px solid rgba(7, 52, 95, 0.10);
    box-shadow: var(--shadow-card);
  }

  body.menu-open .primary-nav {
    display: grid;
    gap: 8px;
  }

  .nav-link,
  .nav-dropdown > a,
  .nav-phone,
  .nav-cta {
    width: 100%;
    justify-content: flex-start;
    min-height: 52px;
    padding-inline: 16px;
  }

  .nav-phone {
    display: flex;
    color: var(--brand-navy);
    background: var(--soft-blue);
    border-radius: var(--radius-sm);
    font-weight: 900;
  }

  .nav-dropdown__menu {
    position: static;
    display: grid;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: var(--radius-sm);
    margin-top: 6px;
  }

  .hero-grid,
  .page-hero__grid,
  .split,
  .feature-row,
  .feature-row--reverse,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-row--reverse img,
  .feature-row--reverse picture {
    order: 0;
  }

  .trust-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container,
  .policy-layout {
    width: min(100% - 28px, var(--container));
  }

  .header-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: 124px;
  }

  .primary-nav {
    top: 74px;
  }

  .hero,
  .page-hero,
  .service-hero {
    padding: 54px 0;
  }

  .section {
    padding: 62px 0;
  }

  .section--tight {
    padding: 22px 0 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-lede,
  .page-hero p,
  .section-heading p {
    font-size: 1.03rem;
  }

  .hero-contact,
  .trust-grid,
  .process-grid,
  .values-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .page-hero img,
  .service-hero img,
  .feature-row img {
    border-radius: var(--radius-md);
  }

  .page-hero img,
  .service-hero img {
    aspect-ratio: 4 / 5;
  }

  .contact-panel,
  .form-panel,
  .policy-card,
  .cta-panel {
    padding: 22px;
    border-radius: var(--radius-md);
  }

  .hero-actions,
  .cta-actions,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

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