:root {
  --teal: #176b72;
  --teal-dark: #0f4f55;
  --teal-light: #d9ebea;
  --coral: #e69a76;
  --charcoal: #39454a;
  --gray: #6d777b;
  --line: #e3e7e7;
  --off-white: #f7f8f6;
  --white: #fff;
  --sans: "Lato", Arial, sans-serif;
  --heading: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: -60px;
  left: 15px;
  padding: 10px 16px;
  background: var(--teal);
  color: white;
}

.skip-link:focus { top: 10px; }

.utility-bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.5vw, 58px);
  border-bottom: 1px solid #edf0f0;
  background: #fafafa;
  color: #7d8588;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.utility-contact { display: flex; align-items: center; gap: 6px; }
.pin { color: var(--coral); font-size: 13px; }

.site-header {
  position: relative;
  z-index: 50;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.5vw, 58px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: white;
}

.logo { width: clamp(230px, 22vw, 330px); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.55vw, 28px);
  color: #5e696d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 33px 0 29px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 23px;
  left: 50%;
  height: 2px;
  background: var(--coral);
  transition: left .25s, right .25s;
}

.desktop-nav a:hover::after {
  right: 0;
  left: 0;
}

.menu-button,
.mobile-nav { display: none; }

.hero {
  position: relative;
  height: clamp(500px, 47vw, 680px);
  min-height: 500px;
  overflow: hidden;
  background: #555;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.hero-slide.is-active > img { transform: scale(1); }
.hero-slide:nth-child(1) > img { object-position: 50% 45%; }
.hero-slide:nth-child(2) > img { object-position: center; }
.hero-slide:nth-child(3) > img { object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 44, 48, .43);
}

.hero-slide:nth-child(2) .hero-overlay { background: rgba(20, 50, 54, .39); }
.hero-slide:nth-child(3) .hero-overlay { background: rgba(22, 45, 41, .48); }

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(860px, 85%);
  color: white;
  text-align: center;
  transform: translate(-50%, -46%);
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: clamp(37px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.hero-content p {
  margin: 0 0 24px;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid rgba(255,255,255,.85);
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
}

.hero-button:hover {
  background: var(--coral);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 42px;
  height: 60px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  cursor: pointer;
  font-size: 37px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background .2s;
}

.hero-arrow:hover { background: rgba(23,107,114,.8); }
.hero-prev { left: 0; }
.hero-next { right: 0; }

.hero-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 16px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dots button.is-active { background: white; }

.notice-strip {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: white;
}

.notice-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(30deg, transparent 38%, white 39%, white 41%, transparent 42%),
    linear-gradient(150deg, transparent 38%, white 39%, white 41%, transparent 42%);
  background-size: 32px 54px;
}

.notice-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 30px 20px;
}

.notice-inner h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 400;
}

.notice-inner p {
  margin: 1px 0 0;
  font-size: 13px;
  font-weight: 300;
}

.section {
  padding: 95px clamp(24px, 7vw, 115px);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading h2,
.trust-copy h2,
.contact-info h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--heading);
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.25;
}

.heading-rule {
  display: block;
  width: 55px;
  height: 2px;
  margin: 20px auto;
  background: var(--teal);
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 350px;
  padding: 38px 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  z-index: 1;
  background: white;
  box-shadow: 0 18px 45px rgba(24,72,75,.13);
  transform: translateY(-7px);
}

.service-icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid #cfe0e0;
  border-radius: 50%;
  color: var(--teal);
}

.service-icon svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 13px;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 500;
}

.service-card p {
  margin: 0 0 20px;
  color: var(--gray);
  font-size: 13px;
}

.service-card a {
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-card a span { font-size: 17px; vertical-align: -1px; }

.trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--off-white);
}

.trust-photo { overflow: hidden; }

.trust-photo img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-6%);
}

.trust-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(35px, 7vw, 120px);
}

.trust-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px 0 32px;
  color: var(--gray);
}

.trust-points {
  border-top: 1px solid #dce2e1;
}

.trust-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid #dce2e1;
}

.trust-point strong {
  color: var(--coral);
  font-family: var(--heading);
  font-size: 27px;
  font-weight: 400;
}

.trust-point span {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 500;
}

.outline-button {
  align-self: flex-start;
  margin-top: 35px;
  padding: 12px 24px;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}

.outline-button:hover {
  background: var(--teal);
  color: white;
}

.expect { background: white; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1150px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding: 15px 45px 15px 40px;
  text-align: center;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -14px;
  width: 28px;
  height: 1px;
  background: var(--coral);
}

.step > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-family: var(--heading);
  font-size: 18px;
}

.step h3 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 500;
}

.step p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
}

.wellness-banner {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.wellness-bg {
  position: absolute;
  inset: -12% 0;
  background: url("assets/hero-family.png") center 42% / cover no-repeat;
}

.wellness-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 65, 67, .62);
}

.wellness-content {
  position: relative;
  z-index: 1;
  width: min(800px, 85%);
  color: white;
  text-align: center;
}

.wellness-content h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
}

.wellness-content p {
  margin: 12px 0 27px;
  font-size: 18px;
  font-weight: 300;
}

.light-button {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid white;
  background: white;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  background: #f5f7f6;
}

.contact-info > p:not(.eyebrow) {
  max-width: 550px;
  margin: 23px 0 35px;
  color: var(--gray);
}

.contact-info address {
  padding: 24px 0;
  border-top: 1px solid #dfe4e3;
  border-bottom: 1px solid #dfe4e3;
  font-style: normal;
}

.contact-info address strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: var(--heading);
  font-size: 14px;
}

.contact-info address a { color: #687276; }

.pending-contact {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  color: var(--gray);
  font-size: 13px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label:nth-child(4),
.contact-form button,
.form-status { grid-column: 1 / -1; }

.contact-form label span {
  display: block;
  margin-bottom: 6px;
  color: #657074;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8dfde;
  border-radius: 0;
  outline: none;
  background: white;
  transition: border-color .2s;
}

.contact-form input { height: 47px; padding: 0 13px; }
.contact-form textarea { padding: 12px 13px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }

.contact-form button {
  min-height: 50px;
  border: 0;
  background: var(--teal);
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s;
}

.contact-form button:hover { background: var(--coral); }
.form-status { min-height: 20px; margin: -10px 0 0; color: var(--teal); font-size: 13px; }

footer {
  padding: 55px clamp(25px, 6vw, 90px) 18px;
  background: #176b72;
  color: rgba(255,255,255,.64);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

.footer-main img { width: 270px; }
.footer-main nav { display: flex; gap: 24px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.footer-main p { justify-self: end; margin: 0; text-align: right; font-size: 14px; line-height: 1.65; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sticky-schedule {
  position: fixed;
  z-index: 80;
  bottom: 0;
  left: 28px;
  padding: 12px 19px;
  border-radius: 4px 4px 0 0;
  background: var(--teal);
  color: white;
  box-shadow: 0 -5px 18px rgba(0,0,0,.15);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.calendar-icon { margin-right: 6px; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }

  .menu-button {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #cfd9d9;
    background: white;
    cursor: pointer;
  }

  .menu-button span {
    width: 19px;
    height: 1px;
    background: var(--teal);
    transition: transform .25s, opacity .25s;
  }

  .menu-open .menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-button span:nth-child(2) { opacity: 0; }
  .menu-open .menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    z-index: 40;
    inset: 114px 0 0;
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    background: white;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }

  .menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 17px 5px;
    border-bottom: 1px solid var(--line);
    color: var(--charcoal);
    font-family: var(--heading);
    font-size: 17px;
  }

  .service-grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust-photo { height: 520px; }
  .contact { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { display: none; }
}

@media (max-width: 650px) {
  .utility-bar { padding-inline: 14px; }
  .site-header { height: 76px; padding-inline: 15px; }
  .logo { width: 230px; }
  .mobile-nav { inset-block-start: 104px; }

  .hero { height: 540px; min-height: 540px; }
  .hero-slide > img { object-position: 56% center; }
  .hero-slide:nth-child(2) > img { object-position: 65% center; }
  .hero-slide:nth-child(3) > img { object-position: 42% center; }
  .hero-content { width: 86%; }
  .hero-content h1,
  .hero-content h2 { font-size: 31px; line-height: 1.22; }
  .hero-content p { font-size: 15px; }
  .hero-arrow { width: 32px; }

  .notice-inner { padding-inline: 22px; }
  .section { padding: 75px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }

  .trust-photo { height: 380px; }
  .trust-copy { padding: 70px 22px; }
  .steps { grid-template-columns: 1fr; gap: 45px; }
  .step:not(:last-child)::after { display: none; }
  .wellness-banner { min-height: 470px; }

  .contact-form { grid-template-columns: 1fr; }
  .contact-form label,
  .contact-form button,
  .form-status { grid-column: auto; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-main p { justify-self: start; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .sticky-schedule { left: 12px; }
}

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