:root {
  --site-width: 980px;
  --header-width: 1536px;
  --content-width: 1260px;
  --wide-width: calc(100% - 108px);
  --header-height: 145px;
  --ink: #000000;
  --text: #232323;
  --muted: #343434;
  --line: #5d8696;
  --line-soft: rgba(93, 134, 150, 0.85);
  --white: #ffffff;
  --black: #000000;
  --nav-active: #557d8d;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

main > section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

img {
  display: block;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(var(--content-width), calc(100% - 80px));
  margin: 0 auto;
}

.wide-shell {
  width: var(--wide-width);
  margin: 0 auto;
}

.js-enabled [data-animate] {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.js-enabled [data-animate].animate-in {
  animation: revealUp 820ms ease var(--delay, 0ms) both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--white);
}

.header-inner {
  width: min(var(--header-width), calc(100% - 64px));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 110px;
}

.brand {
  width: 130px;
  height: 130px;
  flex: 0 0 130px;
  border-radius: 50%;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #1d1d1d;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.primary-nav a {
  display: block;
  padding: 8px 0;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--nav-active);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 21px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

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

.hero-image {
  height: 590px;
  background: var(--black);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.hero-image img {
  width: min(1320px, 100%);
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-section {
  padding: 70px 0 42px;
}

.about-section .wide-shell {
  padding-bottom: 49px;
  border-bottom: 1px solid var(--line);
}

.about-section h1 {
  margin-bottom: 18px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.about-section h2 {
  margin-bottom: 28px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.about-section p {
  max-width: 965px;
  margin-bottom: 0;
  color: #202020;
  font-size: 23px;
  line-height: 1.28;
  font-weight: 400;
}

.difference-section {
  min-height: 432px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
}

.difference-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 92px;
  align-items: start;
}

.difference-section h2 {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 58px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.difference-copy {
  max-width: 560px;
  padding-top: 6px;
}

.difference-copy p {
  margin-bottom: 28px;
  color: #e1e1e1;
  font-size: 19px;
  line-height: 1.68;
}

.difference-copy strong {
  color: var(--white);
  font-weight: 800;
}

.difference-copy span {
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 26px;
  background: var(--white);
}

.difference-copy h3 {
  margin: 0;
  color: #e9e9e9;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.services-section {
  padding: 125px 0 98px;
  background: var(--white);
}

.services-heading {
  width: min(760px, calc(100% - 80px));
  margin: 0 auto 130px;
  text-align: center;
}

.services-heading h2 {
  margin-bottom: 80px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.services-heading h3 {
  margin-bottom: 48px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.services-heading p {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.services-divider-grid {
  width: var(--wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-divider-grid article {
  min-height: 458px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 15%;
  text-align: center;
}

.services-divider-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.services-divider-grid article:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.services-divider-grid h3 {
  margin-bottom: 48px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.service-lead {
  margin-bottom: 27px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 400;
}

.services-divider-grid article > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.42;
  font-weight: 400;
}

.explore-more {
  margin-top: 52px;
  text-align: center;
}

.explore-more a {
  display: inline-flex;
  min-width: 220px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--nav-active);
  background: var(--white);
  font-size: 19px;
  line-height: 1.2;
  transition: background 160ms ease, color 160ms ease;
}

.explore-more a:hover {
  background: #f3f8fa;
}

.testimonials-section {
  padding: 88px 0 70px;
  background: var(--white);
}

.testimonials-heading {
  margin-bottom: 50px;
}

.section-note {
  margin-bottom: 42px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.4;
}

.testimonials-heading h2 {
  margin-bottom: 54px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.testimonials-heading h3 {
  max-width: 1040px;
  margin-bottom: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 43px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.testimonial-list {
  width: var(--wide-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.testimonial-row {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
  padding: 28px 0 38px;
  border-bottom: 1px solid var(--line);
}

.testimonial-row h3 {
  margin: 0;
  padding-left: 32%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.testimonial-row p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.3;
}

.schedule-section {
  padding: 70px 0 112px;
  background: var(--white);
}

.schedule-layout {
  width: min(var(--header-width), calc(100% - 64px));
}

.schedule-section h2 {
  max-width: 1080px;
  margin: 0 0 124px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 100px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.calendar-wrap {
  width: min(930px, 100%);
  margin: 0 auto;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 700px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.calendly-inline-widget iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 62px 0 92px;
  background: var(--black);
  color: var(--white);
}

.footer-brand img {
  width: 225px;
  height: auto;
}

.footer-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1.02fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.footer-grid > * {
  min-height: 226px;
  padding: 68px 54px 38px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.78);
}

.footer-grid > *:last-child {
  border-right: 0;
}

.footer-grid address {
  margin: 0;
  color: #d8d8d8;
  font-style: normal;
  font-size: 20px;
  line-height: 1.55;
}

.footer-grid a {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #d8d8d8;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-pay-link {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.newsletter {
  margin-top: 52px;
}

.newsletter label {
  display: block;
  margin-bottom: 50px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
}

.newsletter-row {
  width: min(840px, 100%);
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: end;
}

.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 5px 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 20px;
}

.newsletter input::placeholder {
  color: #d8d8d8;
}

.newsletter input:focus {
  border-bottom-color: var(--white);
}

.newsletter button {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--nav-active);
  cursor: pointer;
  font-size: 19px;
  transition: background 160ms ease, color 160ms ease;
}

.newsletter button:hover {
  background: #f4f8fa;
  color: var(--ink);
}

.newsletter-message {
  min-height: 27px;
  margin: 14px 0 0;
  color: #d8d8d8;
  font-size: 16px;
}

:focus-visible {
  outline: 3px solid rgba(85, 125, 141, 0.6);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 54px;
  }

  .primary-nav {
    gap: 24px;
  }

  .services-divider-grid article {
    padding-inline: 10%;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 96px;
    --wide-width: calc(100% - 40px);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 34px);
    height: var(--header-height);
    justify-content: space-between;
    gap: 18px;
  }

  .brand {
    width: 82px;
    height: 82px;
    flex-basis: 82px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px 24px 28px;
    background: var(--white);
    border-top: 1px solid #efefef;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .primary-nav a {
    padding: 13px 0;
  }

  .hero-image {
    height: 420px;
  }

  .site-shell {
    width: calc(100% - 40px);
  }

  .about-section h1,
  .services-heading h2 {
    font-size: 48px;
  }

  .testimonials-heading h2,
  .schedule-section h2 {
    font-size: 66px;
  }

  .difference-layout,
  .testimonial-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .difference-section {
    padding: 88px 0;
  }

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

  .services-divider-grid article {
    min-height: auto;
    padding: 64px 10%;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .services-divider-grid article:last-child {
    border-bottom: 0;
  }

  .testimonial-row h3 {
    padding-left: 0;
  }

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

  .footer-grid > * {
    min-height: auto;
    padding: 34px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  }

  .footer-grid > *:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .about-section {
    padding-top: 48px;
  }

  .about-section h1,
  .services-heading h2 {
    font-size: 40px;
  }

  .about-section h2 {
    font-size: 27px;
  }

  .about-section p,
  .services-heading p,
  .services-divider-grid article > p:last-child,
  .testimonial-row p,
  .footer-grid address,
  .newsletter input {
    font-size: 18px;
  }

  .difference-section h2 {
    font-size: 43px;
  }

  .difference-copy p {
    font-size: 17px;
  }

  .services-section {
    padding: 76px 0 70px;
  }

  .services-heading {
    width: calc(100% - 40px);
    margin-bottom: 70px;
  }

  .services-heading h2 {
    margin-bottom: 44px;
  }

  .services-heading h3,
  .services-divider-grid h3 {
    font-size: 25px;
  }

  .section-note {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .testimonials-heading h2,
  .schedule-section h2 {
    font-size: 48px;
  }

  .testimonials-heading h3 {
    font-size: 30px;
  }

  .schedule-section h2 {
    margin-bottom: 70px;
  }

  .newsletter label {
    font-size: 34px;
  }

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

  .newsletter button {
    width: min(220px, 100%);
  }
}

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

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

  .js-enabled [data-animate] {
    opacity: 1;
    transform: none;
  }
}
