:root {
  --bg-blue: #fafdff;
  --light-blue: #dbe7ec;
  --dark-blue: #09222c;
  --base-blue: #004c6a;
  --text-xs: 0.875rem;
  --text-sm: clamp(1rem, 0.965rem + 0.1333vw, 1.125rem);
  --text-base: clamp(1.125rem, 1.055rem + 0.2667vw, 1.375rem);
  --text-md: clamp(1.25rem, 1.11rem + 0.5333vw, 1.75rem);
  --text-lg: clamp(1.75rem, 1.54rem + 0.8vw, 2.5rem);
  --body: 1080px;
  --content: 876px;
  --padding-xs: 0.5rem;
  --padding-sm: clamp(1rem, 0.93rem + 0.2667vw, 1.25rem);
  --padding-base: clamp(1.5rem, 1.22rem + 1.0667vw, 2.5rem);
  --padding-lg: clamp(2rem, 1.68rem + 1.6vw, 4rem);
  --padding-xl: clamp(3rem, 2.16rem + 3.2vw, 6rem);
  --font-regular: 400;
  --font-bold: 550;
  --radius: calc(var(--padding-xs) / 2);
}

@font-face {
  font-family: "Amulya";
  src: url("/assets/fonts/Amulya/Amulya-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 1 1000;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Amulya", sans-serif;
  font-weight: var(--font-regular);
  position: relative;
  color: var(--base-blue);
  font-size: var(--text-base);
  max-width: var(--body);
  padding: 0 var(--padding-sm);
  margin: 0 auto;
  background-color: var(--bg-blue);
}
main > * {
  max-width: var(--body);
  margin: 0 auto;
}
header {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  padding-top: var(--padding-sm);
  margin-bottom: var(--padding-lg);
}
.menu-desktop a.active {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.menu-home {
  font-weight: var(--font-bold);
  font-size: var(--text-base);
}
.menu-desktop-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.menu-desktop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--padding-xs);
}
header .section-grid {
  width: 100%;
}
.header-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-mobile-wrapper {
  display: none;
}
.menu-button {
  display: none;
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 1;
}
.menu-button svg {
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 860px) {
  .menu-button {
    display: grid;
    place-content: center;
  }
  .menu-desktop {
    display: none;
  }
  .menu-desktop-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu-desktop-header {
    width: 100%;
  }
  .menu-mobile-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: var(--padding-lg);
  }
  .menu-mobile-wrapper {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-blue);
    color: var(--bg-blue);
    z-index: 100;
    padding: var(--padding-sm) var(--padding-sm);
    transform: translateY(-100%);
  }
  .menu-mobile-wrapper.active {
    transform: translateY(0);
  }
  .menu-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--padding-base);
  }
  .menu-home {
    font-size: var(--text-sm);
  }
}
@media (max-width: 640px) {
  .menu-home {
    font-size: var(--text-xs);
  }
}
hr {
  border: 0;
  border-top: 1px solid var(--light-blue);
  border-style: dashed;
  margin: var(--padding-lg) 0;
}
h1 {
  font-weight: var(--font-bold);
}
strong {
  font-weight: var(--font-bold);
}
/*
Buttons
*/
.button {
  line-height: 1;
  white-space: nowrap;
  font-size: var(--text-sm);
  transition: color 0.2s ease-in-out;
}
.button-primary:hover,
.button-secondary:hover {
  color: var(--dark-blue);
}
.button-secondary {
  opacity: 0.75;
}
.feature:hover .button-secondary,
.button-secondary:hover {
  opacity: 1;
  color: var(--dark-blue);
}
.button-icon {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--padding-xs) * 0.75);
}
.button-icon svg {
  width: 1.125em;
  height: 1.125em;
  transition: transform 0.2s ease-in-out;
}
.feature:hover .button-icon svg {
  transform: translateX(0.125em);
  stroke: var(--dark-blue);
}
.button-icon:hover svg {
  transform: translateX(0.125em);
  stroke: var(--dark-blue);
}
.button-wrapper {
  margin-top: var(--padding-base);
  display: flex;
  gap: var(--padding-base);
  flex-wrap: wrap;
  row-gap: var(--padding-sm);
}
.section-home .button-wrapper {
  justify-content: center;
}
.section-picture.home .picture-wrapper {
  aspect-ratio: 3 / 1.5;
}
.button-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-base);
  padding: var(--padding-sm) 0;
  border-bottom: 1px solid var(--light-blue);
}
.button-link:first-of-type {
  border-top: 1px solid var(--light-blue);
}
.button-link svg {
  width: 1.125em;
  height: 1.125em;
  transition: transform 0.2s ease-in-out;
  flex-shrink: 0;
}
.button-link:hover svg {
  transform: translateX(0.125rem);
}
.button-link.external-link:hover svg {
  transform: translate(0.125rem, -0.125rem);
}
.button-pill {
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: 1.5rem;
  font-size: var(--text-xs);
  border: 1px solid var(--base-blue);
  display: inline-flex;
  transition: background 100ms, color 100ms, border-color 100ms;
  background: var(--bg-blue);
}
.button-pill:hover {
  color: var(--bg-blue);
  border-color: var(--base-blue);
  background: var(--base-blue);
}
/*
Section
*/
section + section {
  margin-top: var(--padding-xl) 0;
  padding: var(--padding-xl) 0;
  border-top: 1px solid var(--light-blue);
  border-style: dashed;
}
.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--padding-xs);
}
.section-grid > *:not(.grid-full) {
  grid-column-start: 2;
  grid-column-end: 12;
}
.section-grid > .grid-full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.section-headline {
  font-weight: var(--font-bold);
  scroll-margin-top: var(--padding-lg);
}
.font-size-small {
  font-size: var(--text-xs);
}
.font-size-medium {
  font-size: var(--text-md);
}
@media (max-width: 860px) {
  .section-grid > *:not(.grid-full) {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
/*
Section Picture
*/
.section-picture {
  margin: 0;
  overflow: hidden;
}
.picture-wrapper.aspect-3-2 {
  aspect-ratio: 3 / 2;
}
.picture-wrapper.aspect-16-9 {
  aspect-ratio: 16 / 9;
}
picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/*
Section Hero Home
*/
.section-home {
  padding-bottom: var(--padding-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-home h1 {
  font-size: var(--text-lg);
  margin: var(--padding-sm) 0;
  line-height: 1.2;
  text-wrap: balance;
}
.section-home p {
  text-wrap: balance;
  max-width: 60ch;
}
.section-eyebrow {
  display: flex;
  gap: calc(var(--padding-xs) * 0.75);
  align-items: center;
  font-size: var(--text-xs);
  line-height: 1;
  margin-bottom: var(--padding-sm);
}
/*
Section Hero
*/
.section-hero {
  padding: var(--padding-xl) 0;
}
.hero-headline {
  font-size: var(--text-md);
}
.hero-headline + .text-wrapper {
  margin-top: var(--padding-lg);
}
.hero-headline + .section-picture,
.section-headline + .section-picture {
  margin: var(--padding-sm) 0;
}
/*
Section Services
*/
.section-services h2,
.section-links h2,
.section-team h2 {
  margin-bottom: var(--padding-sm);
}
.section-services h2:last-of-type,
.section-team h2:last-of-type {
  margin-top: var(--padding-lg);
}
.section-services .section-eyebrow {
  margin-bottom: var(--padding-lg);
}

.text-wrapper h2 {
  font-weight: var(--font-bold);
}
.text-wrapper p + p,
.text-wrapper ul + p,
.text-wrapper ol + p,
.text-wrapper h2 + p {
  margin-top: var(--padding-xs);
}
.text-wrapper p + h2 {
  margin-top: var(--padding-lg);
}
.text-wrapper p + h3,
.text-wrapper p + h4 {
  margin-top: var(--padding-base);
}
.text-wrapper h2 + h3 {
  margin-top: var(--padding-sm);
}
.text-wrapper h3 + p,
.text-wrapper h4 + p {
  margin-top: var(--padding-xs);
}
.text-wrapper p + ul,
.text-wrapper p + ol,
.text-wrapper ul + p,
.text-wrapper ol + p {
  margin-top: var(--padding-sm);
}
.text-wrapper.team-member__about p + ul,
.text-wrapper.team-member__about ul + p {
  margin-top: var(--padding-xs);
}
.text-wrapper li + li {
  margin-top: calc(var(--padding-xs) * 0.5);
}
.text-wrapper li {
  margin-left: 1.5ch;
  list-style-type: disc;
}
.text-wrapper li::marker {
  color: var(--light-blue);
}
.text-wrapper a {
  text-decoration: underline;
  color: var(--base-blue);
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
  word-break: break-word;
}
.text-base {
  color: var(--base-blue);
}
/*
Section Footnote
*/
.section-footnote {
  padding: var(--padding-lg) 0;
  font-size: var(--text-sm);
}
/*
Sction Links
*/
.section-links h2:not(:first-of-type) {
  margin-top: var(--padding-lg);
}
.section-links a {
  display: block;
}
.section-links a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  white-space: wrap;
  line-height: 1.2;
}
.section-links a span + span {
  font-size: var(--text-xs);
  margin-top: var(--padding-xs);
  opacity: 0.75;
}
@media (max-width: 640px) {
  .section-links a span + span {
    display: none;
  }
}
.links-categories {
  display: flex;
  gap: var(--padding-xs) calc(var(--padding-xs) * 0.75);
  flex-wrap: wrap;
  margin-bottom: var(--padding-lg);
}
.text-wrapper + .link-wrapper {
  margin-top: var(--padding-lg);
}
.section-symptoms .section-eyebrow {
  margin-bottom: var(--padding-base);
}

/*
Section Office Hours
*/
.office-hours__grid {
  margin-top: var(--padding-lg);
}
.office-hours__day {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--light-blue);
  padding: var(--padding-sm) 0;
  white-space: nowrap;
}
.office-hours__day > * {
  min-width: 30%;
}
.office-hours__day:first-of-type {
  border-top: 1px solid var(--light-blue);
}
.office-hours__day-name {
  font-weight: var(--font-bold);
}
@media (max-width: 640px) {
  .office-hours__day {
    font-size: var(--text-xs);
  }
}

/*
Section Team Member
*/
.section-team .section-headline {
  border-bottom: 1px solid var(--light-blue);
  padding-bottom: var(--padding-base);
  margin-bottom: 0;
}
.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--padding-base);
  row-gap: var(--padding-sm);
  padding: var(--padding-base) 0;
  border-bottom: 1px solid var(--light-blue);
}
.small-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--padding-base);
  row-gap: 0;
}
.small-team-grid .team-member {
  grid-template-columns: 1fr;
}
.small-team-grid .team-member__name {
  margin-bottom: 0;
}
.team-member:first-of-type {
  border-top: 1px solid var(--light-blue);
}
.small-team-grid .team-member:first-of-type {
  border-top: 0;
}
.team-member__img picture {
  aspect-ratio: 3 / 4;
  display: block;
  border-radius: var(--radius);
  background-color: var(--light-blue);
}
.team-member__name {
  font-weight: var(--font-bold);
  margin-bottom: var(--padding-sm);
}
.team-member__about {
  font-size: var(--text-xs);
}
@media (max-width: 720px) {
  .team-member {
    display: grid;
    grid-template-columns: 1fr;
  }
  .team-member__img picture {
    aspect-ratio: 3 / 2;
  }
  .small-team-grid {
    grid-template-columns: 1fr;
  }
}

/*
Section Gallery
*/
.swiper {
  border-radius: var(--radius);
}
.swiper-slide {
  overflow: hidden;
  border-radius: var(--radius);
  height: 60vh;
  width: auto;
}
.swiper-slide img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.swiper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding: 0.25rem;
}
.swiper-nav-pagination {
  width: fit-content !important;
  display: flex;
  align-items: center;
  height: 100%;
}
.swiper-button-disabled {
  color: var(--light-blue);
}
.swiper-pagination-bullet {
  background: var(--light-blue);
  opacity: 1;
}
.swiper-pagination-bullet:hover {
  background: var(--dark-blue);
}
.swiper-pagination-bullet-active {
  background: var(--dark-blue);
}
.swiper-nav-prev svg,
.swiper-nav-next svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.2s ease-in-out;
  stroke: var(--base-blue);
}
.swiper-nav-prev:hover:not(.swiper-nav-prev.swiper-button-disabled) svg {
  transform: translateX(-0.125rem);
  stroke: var(--dark-blue);
}
.swiper-nav-next:hover:not(.swiper-nav-next.swiper-button-disabled) svg {
  transform: translateX(0.125rem);
  stroke: var(--dark-blue);
}
@media (max-width: 640px) {
  .swiper-slide {
    height: 40vh;
  }
}
.section-footer {
  padding: var(--padding-xl) 0;
  margin-top: var(--padding-xl);
  border-top: 1px dashed var(--light-blue);
  font-size: var(--text-xs);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: var(--padding-base);
}
@media (max-width: 860px) {
  .footer-grid {
    flex-direction: column;
    gap: var(--padding-xl);
  }
}
.section-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--padding-xs);
}
.section-footer__links a {
  width: fit-content;
}
.section-footer a:hover {
  color: var(--dark-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--padding-base);
  margin-top: var(--padding-lg);
}
.feature {
  border-radius: var(--radius);
  padding: calc(var(--padding-sm) * 1.5);
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  outline: 1px dashed var(--light-blue);
  transition: outline 0.125s ease-in-out;
}
.feature:hover {
  outline: 1px dashed var(--base-blue);
}
.feature__headline {
  font-weight: 500;
  line-height: 1.2;
  margin: var(--padding-xs) 0;
  padding-top: var(--padding-xs);
  text-wrap: balance;
}
.feature__text {
  text-wrap: balance;
}
@media (max-width: 860px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*
Section Form
*/
.section-form .text-wrapper {
  margin-bottom: var(--padding-lg);
}
.section-form label:not(input[type="checkbox"] + label) {
  font-size: var(--text-sm);
}
.section-form label em {
  font-style: normal;
}
.section-form input[type="text"],
.section-form input[type="email"],
.section-form input[type="number"],
.section-form textarea {
  display: block;
  width: 100%;
  padding: var(--padding-xs) 1rem;
  outline: 1px solid var(--light-blue);
  border-radius: var(--radius);
}
.section-form input[type="text"]:focus-visible,
.section-form input[type="email"]:focus-visible,
.section-form input[type="number"]:focus-visible,
.section-form textarea:focus-visible {
  outline: 1px solid var(--base-blue);
}
.section-form textarea {
  min-height: 10rem;
}
.section-form .form-row {
  gap: var(--padding-base);
}
.section-form .form-row + .form-row {
  margin-top: var(--padding-base);
}
.section-form button[type="submit"] {
  padding: var(--padding-xs) var(--padding-sm);
  border-radius: var(--radius);
  background: var(--base-blue);
  color: var(--bg-blue);
  font-size: var(--text-sm);
  transition: background 0.2s ease-in-out;
  width: 100%;
  text-align: center;
}
.section-form button[type="submit"]:hover {
  background: var(--dark-blue);
}
.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: var(--padding-sm);
}
.form-checkbox-row:first-of-type {
  padding: var(--padding-sm) 0;
  border-top: 1px solid var(--light-blue);
  margin-top: var(--padding-xs);
}
.form-checkbox-row:last-of-type {
  padding: var(--padding-sm) 0;
  border-bottom: 1px solid var(--light-blue);
}
.form-checkbox-row + .form-checkbox-row {
  padding: var(--padding-sm) 0;
  border-top: 1px solid var(--light-blue);
}
.form-checkbox-input {
  width: 1rem;
  height: 1rem;
  border-radius: 2rem;
}
.form-checkbox label {
  font-size: var(--text-sm);
}
.form-error {
  font-size: var(--text-xs);
  margin-top: var(--padding-xs);
  color: #e5484d;
}
@media (max-width: 640px) {
  .section-form .form-row {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .section-form .form-row + .form-row {
    margin-top: var(--padding-sm);
  }
}
.form-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: var(--padding-sm);
}

/*
Section FAQ
*/
.section-faq__item {
  font-size: var(--text-base);
  padding: var(--padding-sm) 0;
  border-bottom: 1px solid var(--light-blue);
  cursor: pointer;
}
.section-faq__item:first-of-type {
  border-top: 1px solid var(--light-blue);
  margin-top: var(--padding-lg);
}
.section-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-faq__question svg {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease-in-out;
}
.section-faq__item[open] .section-faq__question svg {
  transform: rotate(45deg);
}
.section-faq__answer {
  margin-top: var(--padding-sm);
}
.section-faq .section-footnote {
  padding-bottom: 0;
  padding-top: var(--padding-base);
  font-size: var(--text-xs);
}

.section-address__content {
  margin-top: var(--padding-lg);
}

/*
Section Infos
*/
.section-infos {
  color: white;
  font-size: var(--text-sm);
  scroll-margin-top: var(--padding-lg);
}
.section-infos__content {
  background-color: #dc3b5d;
  border-radius: var(--radius);
  padding: var(--padding-base) var(--padding-base);
}
.section-infos__button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #dc3b5d;
  color: white;
  line-height: 1;
  padding: var(--padding-xs);
  border-radius: var(--radius);
  font-size: var(--text-xs);
}
.section-infos__button:hover {
  background-color: #ca244d;
}

/*
Section Text
*/
.section-text .section-headline {
  margin-bottom: var(--padding-sm);
}
