:root {
  --ink: #142331;
  --navy: #16324a;
  --navy-deep: #0d2437;
  --teal: #2f7773;
  --teal-dark: #245f5c;
  --mist: #e9f1f3;
  --cloud: #f5f8f9;
  --white: #ffffff;
  --muted: #526878;
  --line: #cfdae0;
  --max: 1160px;
  --shadow: 0 18px 48px rgba(13, 36, 55, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

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

.office-strip {
  color: #dce7ed;
  background: var(--navy-deep);
  font-size: 0.84rem;
}

.office-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.office-strip__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.office-strip a {
  text-decoration: none;
}

.office-strip a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 300px;
  height: auto;
}

.site-nav,
.site-nav ul {
  display: flex;
  align-items: center;
}

.site-nav ul {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #314858;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--teal-dark);
  background: var(--cloud);
}

.site-nav .nav-call {
  margin-left: 8px;
  padding-inline: 19px;
  color: var(--white);
  background: var(--teal-dark);
}

.site-nav .nav-call:hover {
  color: var(--white);
  background: #194b49;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--teal);
  content: "";
}

.hero__grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: stretch;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 0;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #85c8c2;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__intro {
  max-width: 670px;
  margin: 30px 0 0;
  color: #d6e1e7;
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--primary {
  color: var(--navy-deep);
  background: #91d0ca;
}

.button--primary:hover {
  background: #acdeda;
}

.button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--white);
}

.button--navy {
  color: var(--white);
  background: var(--navy);
}

.button--navy:hover {
  background: var(--navy-deep);
}

.hero__ledger {
  position: relative;
  display: flex;
  align-items: center;
  padding: 70px 0 70px 64px;
  background: #e7f0f2;
  color: var(--ink);
}

.hero__ledger::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.ledger-card {
  width: 100%;
}

.ledger-monogram {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  letter-spacing: -0.1em;
}

.ledger-card h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.ledger-list {
  margin: 0;
}

.ledger-list div {
  padding: 15px 0;
  border-top: 1px solid #b9cbd2;
}

.ledger-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ledger-list dd {
  margin: 4px 0 0;
  color: var(--navy-deep);
  font-weight: 700;
}

.quick-links {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-link {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 30px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-link:first-child {
  border-left: 1px solid var(--line);
}

.quick-link span:first-child {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quick-link strong {
  display: block;
  margin-top: 2px;
  font-size: 0.96rem;
}

.quick-link__arrow {
  color: var(--teal);
  font-size: 1.5rem;
}

.quick-link:hover {
  background: var(--cloud);
}

.section {
  padding: 100px 0;
}

.section--cloud {
  background: var(--cloud);
}

.section--navy {
  color: var(--white);
  background: var(--navy-deep);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.visit-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-heading > p:not(.section-label),
.about-copy > p,
.visit-copy > p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 88px;
  align-items: start;
}

.profile-panel {
  position: sticky;
  top: 122px;
  padding: 38px;
  color: var(--white);
  background: var(--navy);
  border-top: 8px solid var(--teal);
  box-shadow: var(--shadow);
}

.profile-panel__initials {
  margin: 0 0 74px;
  color: #8fcfc9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  line-height: 1;
  letter-spacing: -0.12em;
}

.profile-panel h3 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 500;
}

.profile-panel p {
  margin: 10px 0 0;
  color: #c7d7df;
}

.profile-panel__rule {
  width: 52px;
  height: 3px;
  margin-top: 28px;
  background: var(--teal);
}

.about-copy > p:first-of-type {
  color: #314a5b;
  font-size: 1.18rem;
}

.fact-list {
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.fact-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: #344b5b;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.care-item {
  min-height: 255px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.care-item__number {
  display: block;
  margin-bottom: 38px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.care-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}

.care-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-step {
  min-height: 280px;
  padding: 34px 34px 34px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.process-step + .process-step {
  padding-left: 34px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step__number {
  display: block;
  margin-bottom: 46px;
  color: #8fcfc9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-step h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: #bdccd5;
  font-size: 0.95rem;
}

.section--navy .section-heading h2 {
  color: var(--white);
}

.section--navy .section-heading > p:not(.section-label) {
  color: #bdccd5;
}

.section--navy .section-label {
  color: #8fcfc9;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 88px;
  align-items: start;
}

.visit-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.visit-checklist li {
  position: relative;
  padding: 15px 0 15px 22px;
  border-bottom: 1px solid var(--line);
  color: #344b5b;
  font-size: 0.94rem;
}

.visit-checklist li::before {
  position: absolute;
  top: 1.55em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.appointment-card {
  padding: 38px;
  color: var(--white);
  background: var(--teal-dark);
}

.appointment-card h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.appointment-card p {
  margin: 16px 0 0;
  color: #d9ecea;
}

.appointment-card .button {
  width: 100%;
  margin-top: 26px;
  color: var(--navy-deep);
  background: var(--white);
}

.appointment-card__note {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

.contact-section {
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 520px;
}

.contact-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 74px 78px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-heading .section-label {
  color: #8fcfc9;
}

.contact-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-heading p {
  max-width: 490px;
  margin: 22px 0 0;
  color: #c8d7df;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 0 78px 74px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-row span {
  color: #8fcfc9;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a,
.contact-row address {
  margin: 0;
  color: var(--white);
  font-style: normal;
  font-weight: 650;
  text-decoration-color: rgba(255, 255, 255, 0.46);
  text-underline-offset: 5px;
}

.contact-row a:hover {
  color: #b9e3df;
}

.site-footer {
  color: #9fb1bd;
  background: #081a29;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 52px 0 36px;
}

.footer-brand img {
  width: 270px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 540px;
  margin: 18px 0 0;
  font-size: 0.88rem;
}

.footer-note {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.83rem;
}

.footer-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

:focus-visible {
  outline: 3px solid #70bdb6;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-nav a {
    padding-inline: 10px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero__copy {
    padding-right: 44px;
  }

  .hero__ledger {
    padding-left: 44px;
  }

  .about-grid,
  .visit-grid {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .brand img {
    width: 265px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 22px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
  }

  .site-nav .nav-call {
    margin: 6px 0 0;
  }

  .hero__grid,
  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: 530px;
    padding: 82px 0 68px;
  }

  .hero__ledger {
    padding: 48px 44px;
  }

  .ledger-monogram {
    margin-bottom: 28px;
  }

  .quick-links__grid,
  .care-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-link:last-child {
    grid-column: 1 / -1;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .profile-panel {
    position: static;
  }

  .profile-panel__initials {
    margin-bottom: 38px;
  }

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

  .process-step,
  .process-step + .process-step {
    min-height: 0;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-step__number {
    margin-bottom: 22px;
  }

  .contact-heading {
    padding: 76px 0 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .contact-details {
    padding: 52px 0 76px;
  }
}

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

  .office-strip__inner {
    justify-content: center;
  }

  .office-strip__inner > span,
  .office-strip__links a:first-child {
    display: none;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .brand img {
    width: 225px;
  }

  .hero__copy {
    min-height: 0;
    padding: 70px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero__ledger {
    padding: 40px 24px;
  }

  .quick-links__grid,
  .care-grid,
  .visit-checklist,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .quick-link,
  .quick-link:first-child,
  .quick-link:last-child {
    grid-column: auto;
    border-top: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .about-copy h2,
  .visit-copy h2 {
    font-size: 2.35rem;
  }

  .profile-panel,
  .appointment-card {
    padding: 28px;
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .care-item {
    min-height: 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-footer__main {
    gap: 30px;
  }

  .footer-note {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
