@font-face {
  font-family: "Bebas Neue";
  src: url("assets/fonts/bebas-neue.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #172e59;
  --ink-deep: #11264d;
  --blue: #315aa8;
  --blue-mid: #5678b9;
  --blue-soft: #8ea9da;
  --panel: #dce5f5;
  --paper: #f7f7f8;
  --white: #ffffff;
  --font-body: "Montserrat", Arial, sans-serif;
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #efb75b;
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: white;
  background: var(--ink-deep);
  border-radius: 6px;
  transform: translateY(-140%);
}

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

.page-shell {
  width: min(calc(100% - 36px), 1404px);
  min-height: 2500px;
  margin: 44px auto 0;
  padding: 0 26px 60px;
  overflow: hidden;
  background: url("assets/images/page-shell-bg.png") center / 100% 100% no-repeat;
  border-radius: 25px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr) 154px;
  align-items: center;
  min-height: 100px;
  gap: 30px;
  padding: 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
}

.brand img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.primary-nav a,
.footer-nav a,
.header-contact {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 15px 0;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--dark {
  color: var(--white);
  background: var(--ink-deep);
}

.button--outline {
  min-width: 152px;
  color: white;
  background: rgb(255 255 255 / 4%);
  border-color: rgb(255 255 255 / 90%);
  backdrop-filter: blur(2px);
}

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

.button--blue {
  color: white;
  background: #315aab;
}

.button--soft {
  color: white;
  background: #8ea8d9;
}

.header-contact {
  justify-self: end;
  width: 152px;
  padding-inline: 18px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 722px;
  overflow: hidden;
  color: white;
  background: var(--ink-deep) url("assets/images/hero-video-poster.webp") center / cover no-repeat;
  border-radius: 23px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(12 29 58 / 42%), rgb(49 90 168 / 18%)),
    rgb(17 38 77 / 16%);
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 54px;
  text-align: center;
}

.hero__mark {
  width: 78px;
  margin: -24px 0 36px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  gap: 26px;
  margin-top: 43px;
}

.difference-card {
  --difference-card-radius: 29px;

  position: relative;
  isolation: isolate;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 58px;
  width: min(86%, 1169px);
  min-height: 726px;
  margin: -58px auto 0;
  padding: 100px 65px 86px;
  background: transparent;
  border-radius: var(--difference-card-radius);
}

.difference-card::before {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.difference-card::before {
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(224 232 247 / 46%) 0%, rgb(218 228 245 / 42%) calc(100% - 54px), rgb(85 116 181 / 46%) calc(100% - 54px), rgb(85 116 181 / 52%) 100%);
  border: 1px solid rgb(255 212 166 / 78%);
  border-top-color: rgb(255 237 215 / 92%);
  border-radius: var(--difference-card-radius);
  box-shadow:
    inset 0 2px 0 rgb(255 255 255 / 70%),
    inset 0 -24px 36px rgb(10 23 42 / 14%),
    0 18px 42px rgb(23 46 89 / 12%);
  backdrop-filter: blur(18px) saturate(1.16) brightness(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.16) brightness(1.05);
}

.difference-card__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.difference-card__media img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  border-radius: 29px;
}

.difference-card__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 4px;
}

.difference-card h2,
.team h2,
.smile-cta h2,
.services h2,
.patient-process h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.97;
  text-transform: uppercase;
}

.difference-card h2 {
  max-width: 380px;
  font-size: clamp(48px, 4.1vw, 63px);
}

.eyebrow {
  margin: 22px 0 25px;
  color: #3057a2;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.difference-card__copy {
  margin-bottom: 34px;
  font-size: 14px;
  line-height: 1.26;
}

.difference-card__copy p {
  margin: 0 0 17px;
}

.services {
  position: relative;
  z-index: 3;
  min-height: 604px;
  margin-top: -54px;
  padding: 115px 29px 30px;
  color: white;
  background: url("assets/images/services-bg.png") center / 100% 100% no-repeat;
  border-radius: 25px;
}

.services__heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1.4fr;
  align-items: center;
  gap: 70px;
  padding: 0 17px 51px;
}

.services h2 {
  font-size: clamp(50px, 3.9vw, 57px);
  white-space: nowrap;
}

.services__heading p {
  max-width: 760px;
  margin: 0;
  color: #91a7d2;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

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

.service-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 13px 17px 22px;
  background: #294879;
  border-radius: 22px;
}

.service-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 11px 11px 0 0;
}

.service-card h3 {
  margin: 13px 3px 4px;
  padding-top: 8px;
  color: #91a8d7;
  border-top: 1px solid #91a8d7;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card p {
  margin: 0 3px 16px;
  font-size: 13px;
  line-height: 1.35;
}

.service-card a {
  margin: auto 3px 0;
  color: #91a8d7;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-underline-offset: 3px;
}

.team {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 74px;
  padding: 76px 36px 4px 76px;
}

.team__content {
  text-align: center;
}

.team h2 {
  font-size: clamp(50px, 4vw, 58px);
}

.team p {
  max-width: 480px;
  margin: 32px auto 43px;
  font-size: 15px;
  line-height: 1.38;
}

.team__photo {
  width: 100%;
  height: 387px;
  object-fit: cover;
  border-radius: 23px;
}

.patient-process {
  width: min(calc(100% - 80px), 1188px);
  margin: 0 auto;
  padding: 64px 0 60px;
}

.patient-process h2 {
  color: #315aaa;
  font-size: clamp(50px, 4vw, 58px);
  text-align: center;
}

.patient-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  margin-top: 74px;
}

.process-card {
  position: relative;
  display: block;
  border-radius: 14px;
  box-shadow: 9px 12px 13px rgb(20 42 84 / 13%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 12px 17px 20px rgb(20 42 84 / 18%);
}

.process-card--lower {
  transform: translateY(44px);
}

.process-card--lower:hover {
  transform: translateY(36px);
}

.process-card img {
  width: 100%;
  border-radius: 14px;
}

.closing {
  width: min(calc(100% - 48px), 1386px);
  margin: clamp(70px, 5vw, 92px) auto 18px;
}

.smile-cta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  width: min(90%, 1244px);
  min-height: 468px;
  margin: 0 auto;
  padding: 39px 70px 32px 15px;
  overflow: visible;
  color: white;
  background: url("assets/images/smile-cta-bg.png") center / 100% 100% no-repeat;
  border-radius: 25px;
}

.smile-cta__media {
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.smile-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 0 0 18px;
}

.smile-cta__tooth {
  position: absolute;
  z-index: 2;
  top: clamp(-92px, -5.2vw, -78px);
  left: 50%;
  width: clamp(340px, 27.5vw, 396px);
  pointer-events: none;
  transform: translateX(-50%);
}

.smile-cta__content {
  position: relative;
  z-index: 3;
  max-width: 360px;
  justify-self: end;
}

.smile-cta h2 {
  font-size: clamp(50px, 4vw, 58px);
}

.smile-cta p {
  margin: 31px 0 34px;
  font-size: 14px;
  line-height: 1.38;
}

.smile-cta .button {
  width: 100%;
}

.site-footer {
  min-height: 430px;
  margin-top: -114px;
  padding: 186px 68px 48px;
  background: url("assets/images/footer-bg.png") center / 100% 100% no-repeat;
  border-radius: 25px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 220px 235px minmax(280px, 1fr) 300px;
  gap: 36px;
  align-items: center;
}

.footer-brand {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-right: 2px solid #3159a8;
}

.footer-brand img {
  width: 138px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-nav a {
  font-size: 14px;
}

.footer-social h2,
.footer-contact h2 {
  margin: 0 0 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.footer-social p,
.footer-contact a {
  color: #315aaa;
  font-size: 14px;
  line-height: 1.38;
}

.footer-social p {
  max-width: 390px;
  margin: 0 0 23px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-links a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  transition: transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links img {
  max-width: 100%;
  max-height: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding-top: 34px;
  font-style: normal;
}

.footer-contact a {
  text-decoration: none;
}

.footer-contact a + a {
  margin-top: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px minmax(0, 1fr) 140px;
    gap: 16px;
    padding-inline: 8px;
  }

  .brand {
    width: 155px;
  }

  .primary-nav {
    gap: 13px;
  }

  .primary-nav a,
  .header-contact {
    font-size: 10px;
    letter-spacing: 0.19em;
  }

  .difference-card {
    width: 92%;
    gap: 36px;
    padding-inline: 50px;
  }

  .difference-card h2 {
    font-size: 49px;
  }

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

  .services {
    padding-bottom: 38px;
  }

  .service-card {
    min-height: 360px;
  }

  .team {
    gap: 40px;
    padding-left: 40px;
  }

  .patient-process__grid {
    gap: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 170px 180px 1fr 230px;
    gap: 24px;
  }

  .smile-cta__tooth {
    left: 50%;
  }
}

@media (max-width: 920px) {
  .page-shell {
    width: min(calc(100% - 24px), 1404px);
    margin-top: 12px;
    padding-inline: 14px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 84px;
    padding-inline: 10px;
  }

  .brand {
    width: 152px;
  }

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    background: var(--ink-deep);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    align-self: center;
    background: white;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

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

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

  .primary-nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    background: rgb(17 38 77 / 97%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    font-size: 18px;
    letter-spacing: 0.18em;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero__video {
    object-position: 43% center;
  }

  .difference-card {
    grid-template-columns: 1fr;
    width: 92%;
    min-height: 0;
    padding: 95px 50px 85px;
  }

  .difference-card__media img {
    min-height: 420px;
  }

  .difference-card__content {
    padding: 0 12px;
  }

  .difference-card h2 {
    max-width: 580px;
    font-size: 56px;
  }

  .services {
    margin-top: -48px;
    padding-top: 105px;
  }

  .services__heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team {
    grid-template-columns: 1fr;
    padding: 80px 38px 20px;
  }

  .team__photo {
    order: -1;
  }

  .patient-process {
    width: min(calc(100% - 42px), 720px);
  }

  .patient-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 58px;
  }

  .process-card--lower {
    transform: none;
  }

  .process-card--lower:hover {
    transform: translateY(-8px);
  }

  .closing {
    width: min(calc(100% - 24px), 1386px);
    margin-top: 24px;
  }

  .smile-cta {
    grid-template-columns: 1fr;
    width: 94%;
    padding: 35px 35px 55px;
  }

  .smile-cta__media {
    min-height: 360px;
    border-radius: 18px;
  }

  .smile-cta__media img {
    border-radius: 18px;
  }

  .smile-cta__tooth {
    top: 245px;
    left: auto;
    right: 8%;
    width: 280px;
    transform: none;
  }

  .smile-cta__content {
    max-width: 620px;
    justify-self: start;
    padding-top: 42px;
  }

  .site-footer {
    padding: 190px 42px 58px;
  }

  .site-footer__inner {
    grid-template-columns: 180px 1fr;
    gap: 42px;
  }

  .footer-brand {
    min-height: 220px;
  }

  .footer-social,
  .footer-contact {
    padding-left: 10px;
  }

  .footer-contact {
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .page-shell {
    min-height: 0;
    padding: 0 10px 60px;
    background: linear-gradient(180deg, #91aada 0%, #dce4f2 33%, #f5f5f6 100%);
    border-radius: 18px;
  }

  .site-header {
    padding-inline: 7px;
  }

  .brand {
    width: 142px;
  }

  .hero {
    min-height: 540px;
    border-radius: 17px;
  }

  .hero__content {
    padding: 48px 18px 40px;
  }

  .hero__mark {
    width: 70px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: 20px;
    letter-spacing: 0.13em;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
  }

  .hero__actions .button {
    width: min(100%, 250px);
  }

  .difference-card {
    --difference-card-radius: 25px;

    width: 96%;
    gap: 30px;
    margin-top: -36px;
    padding: 66px 25px 58px;
  }

  .difference-card__media img {
    min-height: 310px;
    border-radius: 19px;
  }

  .difference-card__content {
    padding: 0;
  }

  .difference-card h2 {
    font-size: 45px;
  }

  .eyebrow {
    margin: 17px 0 22px;
    font-size: 20px;
  }

  .difference-card__copy {
    font-size: 13px;
  }

  .difference-card .button {
    width: 100%;
  }

  .services {
    margin-top: -23px;
    padding: 74px 12px 24px;
    border-radius: 18px;
  }

  .services__heading {
    padding: 0 5px 32px;
  }

  .services h2 {
    font-size: 55px;
    white-space: normal;
  }

  .services__heading p {
    font-size: 14px;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-card img {
    height: 190px;
  }

  .team {
    gap: 35px;
    padding: 58px 8px 10px;
  }

  .team__photo {
    height: 270px;
  }

  .team h2 {
    font-size: 58px;
  }

  .team p {
    margin: 24px auto 31px;
    font-size: 14px;
  }

  .patient-process {
    width: min(calc(100% - 38px), 420px);
    padding-block: 56px;
  }

  .patient-process h2 {
    font-size: 55px;
  }

  .patient-process__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 45px;
  }

  .closing {
    width: min(calc(100% - 20px), 1386px);
    margin-bottom: 10px;
  }

  .smile-cta {
    width: 96%;
    padding: 18px 18px 48px;
    border-radius: 18px;
  }

  .smile-cta__media {
    min-height: 255px;
  }

  .smile-cta__tooth {
    top: 198px;
    right: -3%;
    width: 205px;
  }

  .smile-cta__content {
    padding-top: 36px;
  }

  .smile-cta h2 {
    font-size: 56px;
  }

  .smile-cta p {
    margin: 24px 0 29px;
    font-size: 13px;
  }

  .site-footer {
    margin-top: -76px;
    padding: 134px 28px 45px;
    background: linear-gradient(180deg, #8da7d6 0%, #dce5f5 100%);
    border-radius: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    min-height: 170px;
    border-right: 0;
    border-bottom: 2px solid #3159a8;
  }

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

  .footer-social,
  .footer-contact {
    padding-left: 0;
  }
}

@media (min-width: 1600px) {
  .page-shell {
    width: min(calc(100% - 96px), 1720px);
    padding: 0 34px 72px;
    border-radius: 28px;
  }

  .site-header {
    grid-template-columns: 270px minmax(0, 1fr) 180px;
    min-height: 112px;
    gap: 38px;
    padding-inline: 22px;
  }

  .brand {
    width: 200px;
  }

  .primary-nav {
    gap: 30px;
  }

  .primary-nav a,
  .footer-nav a,
  .header-contact {
    font-size: 13px;
  }

  .header-contact {
    width: 180px;
    padding-inline: 18px;
    white-space: nowrap;
  }

  .button {
    min-height: 48px;
    padding: 14px 32px;
    font-size: 12px;
  }

  .button--outline {
    min-width: 166px;
  }

  .hero {
    min-height: clamp(760px, min(43vw, 78vh), 840px);
    border-radius: 26px;
  }

  .hero__content {
    padding: 76px 30px 60px;
  }

  .hero__mark {
    width: 88px;
    margin-bottom: 40px;
  }

  .hero h1 {
    max-width: 860px;
    font-size: clamp(28px, 1.65vw, 32px);
  }

  .hero__actions {
    gap: 30px;
    margin-top: 48px;
  }

  .difference-card {
    --difference-card-radius: 32px;

    grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
    width: min(86%, 1400px);
    min-height: 790px;
    gap: 70px;
    margin-top: -72px;
    padding: 112px 76px 94px;
  }

  .difference-card__media img {
    min-height: 560px;
    border-radius: 32px;
  }

  .difference-card h2 {
    max-width: 430px;
    font-size: clamp(62px, 3.45vw, 72px);
  }

  .eyebrow {
    margin: 25px 0 28px;
    font-size: 28px;
  }

  .difference-card__copy {
    margin-bottom: 38px;
    font-size: 15px;
  }

  .services {
    min-height: 660px;
    margin-top: -60px;
    padding: 128px 36px 40px;
    border-radius: 28px;
  }

  .services__heading {
    grid-template-columns: minmax(320px, 0.68fr) 1.4fr;
    gap: 90px;
    padding: 0 24px 58px;
  }

  .services h2 {
    font-size: clamp(58px, 3.4vw, 66px);
  }

  .services__heading p {
    max-width: 900px;
    font-size: 17px;
  }

  .services__grid {
    gap: 20px;
  }

  .service-card {
    min-height: 390px;
    padding: 16px 20px 25px;
    border-radius: 24px;
  }

  .service-card img {
    height: 176px;
    border-radius: 13px 13px 0 0;
  }

  .service-card h3 {
    margin-top: 16px;
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .team {
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.55fr);
    gap: 88px;
    padding: 88px 55px 10px 90px;
  }

  .team h2 {
    font-size: clamp(58px, 3.4vw, 66px);
  }

  .team p {
    max-width: 520px;
    font-size: 16px;
  }

  .team__photo {
    height: 450px;
    border-radius: 26px;
  }

  .patient-process {
    width: min(calc(100% - 96px), 1400px);
    padding: 72px 0 68px;
  }

  .patient-process h2 {
    font-size: clamp(58px, 3.4vw, 66px);
  }

  .patient-process__grid {
    gap: 46px;
    margin-top: 82px;
  }

  .closing {
    width: min(calc(100% - 72px), 1680px);
  }

  .smile-cta {
    width: min(92%, 1500px);
    min-height: 520px;
    padding: 44px 82px 36px 18px;
    border-radius: 28px;
  }

  .smile-cta__tooth {
    top: -96px;
    left: 50%;
    width: clamp(420px, 23vw, 460px);
    transform: translateX(-50%);
  }

  .smile-cta__content {
    max-width: 410px;
  }

  .smile-cta h2 {
    font-size: clamp(58px, 3.4vw, 66px);
  }

  .smile-cta p {
    font-size: 15px;
  }

  .site-footer {
    padding-inline: 82px;
    border-radius: 28px;
  }

  .site-footer__inner {
    grid-template-columns: 240px 250px minmax(320px, 1fr) 320px;
    gap: 44px;
  }
}

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

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