:root {
  --ink: #182c29;
  --green: #285940;
  --green-dark: #1b432f;
  --sage: #eaf0e9;
  --paper: #fff;
  --soft: #f5f7f4;
  --muted: #67736c;
  --line: #dde4dc;
  --peach: #f4e4d6;
  --font: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--font);
  letter-spacing: 0;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b28156;
  outline-offset: 5px;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 30;
  background: white;
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
.header {
  height: 96px;
  background: #fffdfaf5;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #eef0ea;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px 15px 15px 4px;
  background: var(--green);
  color: white;
}
.brand-mark svg {
  width: 30px;
  height: 30px;
}
.brand strong {
  font-size: 22px;
  display: block;
  line-height: 1.25;
  font-weight: 800;
}
.brand small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
}
.nav a:after {
  content: "";
  position: absolute;
  bottom: 2px;
  height: 1px;
  background: var(--green);
  left: 0;
  right: 100%;
  transition: right 0.25s;
}
.nav a:hover:after {
  right: 0;
}
.header-contact {
  display: flex;
  gap: 12px;
  align-items: center;
}
.header-contact > svg {
  color: var(--green);
  width: 20px;
}
.header-contact strong {
  font-size: 14px;
  display: block;
}
.header-contact small {
  font-size: 12px;
  color: var(--muted);
  display: block;
}
.icon-button {
  width: 44px;
  height: 44px;
  background: transparent;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}
.menu-button {
  display: none;
}
.hero {
  position: relative;
  isolation: isolate;
  background: #edf1eb;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 38%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #f1f4eeef 0%,
      #f1f4eeef 30%,
      #f1f4ee9c 43%,
      #f1f4ee00 62%
    ),
    linear-gradient(0deg, #e9eee9 0%, #e9eee900 26%);
}
.hero-inner {
  min-height: 605px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-copy {
  padding: 56px 0 65px;
  max-width: 680px;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-line {
  height: 1px;
  width: 28px;
  background: var(--green);
}
h1 {
  font-size: 66px;
  line-height: 1.08;
  margin: 24px 0 21px;
  font-weight: 800;
}
h1 span {
  color: var(--green);
}
.hero-lead {
  font-size: 27px;
  line-height: 1.4;
  font-weight: 500;
}
.hero-description {
  font-size: 16px;
  line-height: 1.75;
  color: #52645a;
  margin: 18px 0 26px;
}
.button {
  min-height: 60px;
  border: 0;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 25px;
  font-size: 16px;
  font-weight: 700;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 7px 17px #244e3620;
}
.button.primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 23px #244e3630;
}
.button-arrow {
  margin-left: 18px;
  width: 19px;
}
.button-note {
  font-size: 12px;
  color: #607165;
  margin-top: 12px;
  padding-left: 4px;
}
.hero-handwriting {
  position: absolute;
  right: -3%;
  top: 15%;
  font:
    37px/1.03 Caveat,
    cursive;
  color: #244c36;
  transform: rotate(-10deg);
  text-shadow: 0 1px 14px white;
}
.hero-handwriting span {
  display: block;
  margin-left: 12px;
}
.hero-handwriting svg {
  display: block;
  width: 200px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  margin-left: 25px;
}
.hero-caption {
  position: absolute;
  bottom: 78px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #ffffffeb;
  padding: 18px 22px;
  border-radius: 6px;
  box-shadow: 0 10px 35px #24392810;
}
.hero-caption p {
  font-size: 13px;
  line-height: 1.6;
}
.caption-icon {
  display: grid;
  place-items: center;
  color: var(--green);
  height: 40px;
  width: 40px;
  background: var(--sage);
  border-radius: 50%;
}
.caption-icon svg {
  width: 21px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0 28px;
  border-top: 1px solid #ccd7cb;
  gap: 25px;
}
.benefits > div {
  display: flex;
  align-items: center;
  gap: 17px;
}
.benefits > div > svg {
  color: var(--green);
  width: 29px;
  height: 29px;
  stroke-width: 1.4;
}
.benefits span {
  font-size: 13px;
  line-height: 1.65;
  color: #607065;
}
.benefits strong {
  font-weight: 600;
  color: var(--ink);
}
.section {
  padding: 88px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 38px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
h2 {
  font-size: 42px;
  line-height: 1.23;
}
h3 {
  font-size: 18px;
  line-height: 1.4;
}
.section-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 390px;
  margin-bottom: 4px;
}
.smile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.smile-card {
  min-width: 0;
}
.smile-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.45;
  border-radius: 6px;
}
.smile-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
}
.smile-card:hover img {
  transform: scale(1.045);
}
.image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #ffffffed;
  border-radius: 3px;
  padding: 5px 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.smile-card-copy {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}
.item-number {
  font-size: 12px;
  color: #829383;
  padding-top: 5px;
  font-weight: 600;
}
.smile-card-copy p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.photo-note {
  font-size: 12px;
  color: #758176;
  margin-top: 24px;
}
.doctors-section {
  background: var(--soft);
}
.text-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #749a7e;
  padding-bottom: 6px;
  color: var(--green);
  margin-bottom: 4px;
}
.text-link svg {
  width: 18px;
}
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}
.doctor-card {
  min-width: 0;
}
.doctor-photo {
  position: relative;
  aspect-ratio: 1.05;
  background: #e0e6e1;
  border-radius: 6px;
  overflow: hidden;
}
.doctor-photo img {
  width: 100%;
  height: 100%;
  object-position: center 24%;
  transition: transform 0.7s;
}
.doctor-card:hover img {
  transform: scale(1.035);
}
.doctor-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  background: #fffffff0;
  border-radius: 3px;
  padding: 6px 11px;
  font-weight: 600;
}
.doctor-badge svg {
  width: 13px;
  height: 13px;
  color: var(--green);
}
.doctor-info {
  position: relative;
  padding: 20px 42px 0 0;
}
.doctor-info p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.doctor-info > a {
  position: absolute;
  right: 0;
  top: 20px;
  width: 34px;
  height: 34px;
  border: 1px solid #cdd8cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  transition: background 0.2s;
}
.doctor-info > a:hover {
  background: #dce9db;
}
.doctor-info > a svg {
  width: 18px;
  height: 18px;
}
.team-message {
  margin-top: 40px;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 22px;
}
.team-message > svg {
  width: 37px;
  height: 37px;
  stroke-width: 1.1;
  color: #6f9076;
}
.team-message p {
  font-size: 17px;
  line-height: 1.7;
}
.team-message strong {
  font-weight: 600;
}
.handwriting {
  font:
    32px/1.2 Caveat,
    cursive;
  color: var(--green);
}
.team-message .handwriting {
  margin-left: auto;
  transform: rotate(-4deg);
}
.muted-title {
  color: #839788;
}
.steps {
  padding: 0;
  margin: 50px 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.steps li {
  position: relative;
  min-width: 0;
}
.step-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
}
.step-number {
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  color: #9dac9c;
}
.step-top svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  stroke-width: 1.4;
}
.steps p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 13px 0 20px;
}
.step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #617f65;
}
.faq-section {
  background: var(--soft);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 88px;
}
.faq-heading .eyebrow {
  margin-bottom: 18px;
}
.faq-heading > p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
  margin-top: 22px;
}
.faq-heading .handwriting {
  display: block;
  font-size: 28px;
  transform: rotate(-4deg);
  margin-top: 34px;
}
.faq-list details {
  border-bottom: 1px solid #d8e0d7;
}
.faq-list details:first-child {
  border-top: 1px solid #d8e0d7;
}
.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  min-height: 76px;
  padding: 19px 2px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  width: 19px;
  color: var(--green);
  transition: transform 0.25s;
}
.faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 36px 24px 2px;
  animation: answer-in 0.3s ease;
}
.contact-section {
  padding: 62px 0;
  background: #e6eee4;
  border-top: 1px solid #d9e4d6;
  position: relative;
  overflow: hidden;
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-inner .eyebrow {
  margin-bottom: 19px;
}
.contact-inner h2 {
  font-size: 40px;
}
.contact-inner p:not(.eyebrow) {
  font-size: 15px;
  color: #5b6e5d;
  margin-top: 17px;
}
.contact-action {
  text-align: center;
  padding-right: 24px;
}
.contact-action .handwriting {
  display: block;
  font-size: 33px;
  transform: rotate(-5deg);
  margin-top: 24px;
}
.footer {
  padding: 35px 0 22px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
}
.footer-top > p {
  font-size: 14px;
  color: var(--muted);
}
.back-top {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.back-top svg {
  width: 19px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
}
.privacy-button {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 12px;
  padding: 0;
}
.privacy-button:hover {
  text-decoration: underline;
}
.medical-note {
  margin-top: 20px;
  font-size: 12px;
  color: #758176;
  text-align: center;
}
dialog {
  width: min(460px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 100px #1d352940;
  color: var(--ink);
}
dialog::backdrop {
  background: #152b2470;
  backdrop-filter: blur(5px);
}
dialog[open] {
  animation: dialog-in 0.25s ease;
}
dialog .dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  border: 0;
}
dialog h2 {
  font-size: 28px;
  margin: 15px 0;
}
dialog > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}
dialog .button {
  width: 100%;
  margin-top: 25px;
  min-height: 48px;
}
.dialog-symbol {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--green);
  margin-bottom: 20px;
}
.reveal {
  transition:
    opacity 0.75s,
    transform 0.75s;
}
.motion-enabled .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(25px);
}
.hero-copy {
  animation: hero-in 0.85s ease both;
}
.hero-handwriting {
  animation: handwriting-in 1.1s 0.2s ease both;
}
.hero-caption {
  animation: hero-in 0.9s 0.3s ease both;
}
.smile-grid .reveal:nth-child(2),
.doctors-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2) {
  transition-delay: 0.09s;
}
.smile-grid .reveal:nth-child(3),
.doctors-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3) {
  transition-delay: 0.18s;
}
.steps .reveal:nth-child(4) {
  transition-delay: 0.27s;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes handwriting-in {
  from {
    opacity: 0;
    transform: rotate(-10deg) translateY(10px);
  }
  to {
    opacity: 1;
    transform: rotate(-10deg) translateY(0);
  }
}
@keyframes answer-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eyebrow,
.step-label {
  letter-spacing: 0;
}
.contact-phone {
  display: block;
  font-size: 25px;
  font-weight: 750;
  color: var(--green);
  margin-bottom: 18px;
}
.hero-photo {
  left: auto;
  width: 62%;
  object-position: 50% 30%;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      #edf1eb 0%,
      #edf1eb 36%,
      #edf1ebe6 42%,
      #edf1eb00 62%
    ),
    linear-gradient(0deg, #edf1eb 0%, #edf1eb00 25%);
}
@media (min-width: 1500px) {
  .hero-inner {
    min-height: 640px;
  }
  .hero-photo {
    object-position: center 36%;
  }
  .hero-handwriting {
    right: 1%;
    top: 20%;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 18px;
  }
  .header-contact strong {
    font-size: 12px;
  }
  .header-contact small {
    font-size: 11px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand small {
    font-size: 11px;
  }
  h1 {
    font-size: 57px;
  }
  .hero-inner {
    min-height: 600px;
  }
  .hero-handwriting {
    font-size: 30px;
    right: 0;
    top: 12%;
  }
  .hero-caption {
    right: 0;
    bottom: 65px;
    padding: 14px;
  }
  .hero-caption p {
    font-size: 12px;
  }
  .faq-layout {
    gap: 45px;
  }
  .doctors-grid,
  .smile-grid {
    gap: 20px;
  }
  .doctor-info h3 {
    font-size: 16px;
  }
  .section-heading .section-intro {
    max-width: 310px;
  }
  h2 {
    font-size: 37px;
  }
  .steps {
    gap: 25px;
  }
  .step-label {
    font-size: 10px;
  }
  .contact-action {
    padding-right: 0;
  }
}
@media (max-width: 900px) {
  .header {
    height: 82px;
  }
  .header-contact {
    margin-left: auto;
  }
  .menu-button {
    display: grid;
  }
  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 32px;
    box-shadow: 0 15px 20px #213c2610;
    flex-direction: column;
    gap: 3px;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    font-size: 16px;
    padding: 12px 0;
  }
  .hero-inner {
    min-height: 600px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #f1f4eef5 0%, #f1f4eee8 35%, #f1f4ee40 70%),
      linear-gradient(0deg, #e9eee9 0%, #e9eee900 28%);
  }
  .hero-handwriting {
    display: none;
  }
  .hero-caption {
    bottom: 24px;
  }
  .hero-photo {
    object-position: 60% center;
  }
  .hero-copy {
    max-width: 550px;
  }
  h1 {
    font-size: 52px;
  }
  .hero-lead {
    font-size: 25px;
  }
  .benefits {
    gap: 20px;
  }
  .benefits > div {
    gap: 10px;
  }
  .benefits > div > svg {
    width: 24px;
  }
  .benefits span {
    font-size: 11px;
  }
  .section {
    padding: 65px 0;
  }
  .section-heading {
    align-items: flex-start;
  }
  .section-intro {
    font-size: 14px;
  }
  .section-heading .text-link {
    max-width: 230px;
  }
  .smile-card-copy {
    gap: 10px;
  }
  .smile-card h3 {
    font-size: 16px;
  }
  .smile-card-copy p {
    font-size: 13px;
  }
  .smile-image {
    aspect-ratio: 1.15;
  }
  .doctor-photo {
    aspect-ratio: 0.8;
  }
  .doctor-info {
    padding-right: 0;
  }
  .doctor-info > a {
    display: none;
  }
  .team-message .handwriting {
    font-size: 27px;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq-heading > p:not(.eyebrow),
  .faq-heading .handwriting {
    display: none;
  }
  .contact-inner h2 {
    font-size: 33px;
  }
  .contact-action .button {
    font-size: 14px;
    padding: 15px;
  }
  .contact-action .button-arrow {
    margin-left: 3px;
  }
  .contact-action .handwriting {
    font-size: 28px;
  }
  .footer-top > p {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 24px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header {
    height: 76px;
  }
  .header-inner {
    gap: 12px;
  }
  .brand {
    gap: 10px;
  }
  .brand-mark {
    height: 39px;
    width: 39px;
    border-radius: 12px 12px 12px 3px;
  }
  .brand-mark svg {
    width: 26px;
    height: 26px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand small {
    font-size: 10px;
  }
  .header-contact {
    display: none;
  }
  .menu-button {
    margin-left: auto;
    width: 39px;
    height: 39px;
  }
  .nav {
    top: 76px;
    padding: 18px 20px;
  }
  .hero-inner {
    display: block;
    min-height: 760px;
  }
  .hero-photo {
    height: 435px;
    top: 350px;
    object-position: 66% 30%;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #edf1eb 0%,
      #edf1eb 42%,
      #edf1eb00 59%,
      #edf1eb00 81%,
      #edf1eb 95%
    );
  }
  .hero-copy {
    padding: 31px 0 0;
    max-width: 100%;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.15px;
    gap: 8px;
  }
  .eyebrow-line {
    width: 19px;
  }
  h1 {
    font-size: 43px;
    line-height: 1.08;
    margin: 20px 0 17px;
  }
  .hero-lead {
    font-size: 22px;
    line-height: 1.35;
  }
  .hero-lead br {
    display: none;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.7;
    margin: 14px 0 20px;
  }
  .hero .button {
    min-height: 54px;
    font-size: 14px;
    padding: 14px 18px;
  }
  .button-arrow {
    margin-left: 11px;
  }
  .button-note {
    font-size: 11px;
    margin-top: 8px;
  }
  .hero-caption {
    bottom: 30px;
    right: 0;
    padding: 13px 16px;
    gap: 10px;
    max-width: 100%;
  }
  .hero-caption p {
    font-size: 11px;
  }
  .caption-icon {
    width: 32px;
    height: 32px;
  }
  .caption-icon svg {
    width: 18px;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 0 29px;
    gap: 24px 15px;
    border-top: 1px solid #d2dccf;
  }
  .benefits > div {
    gap: 13px;
  }
  .benefits > div > svg {
    width: 25px;
    height: 25px;
  }
  .benefits span {
    font-size: 12px;
  }
  .section {
    padding: 54px 0;
  }
  h2 {
    font-size: 31px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading .eyebrow {
    margin-bottom: 13px;
  }
  .section-heading .section-intro {
    max-width: 100%;
    margin-top: 18px;
    font-size: 14px;
  }
  .section-heading .text-link {
    display: inline-flex;
    margin-top: 20px;
    font-size: 13px;
    max-width: 100%;
  }
  .smile-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .smile-image {
    aspect-ratio: 1.55;
  }
  .smile-card-copy {
    margin-top: 16px;
    gap: 12px;
  }
  .smile-card h3 {
    font-size: 18px;
  }
  .smile-card-copy p {
    font-size: 14px;
    margin-top: 6px;
  }
  .image-label {
    font-size: 11px;
    bottom: 13px;
    left: 13px;
  }
  .photo-note {
    font-size: 11px;
    line-height: 1.7;
    margin-top: 22px;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .doctor-photo {
    aspect-ratio: 1.07;
  }
  .doctor-photo img {
    object-position: center 22%;
  }
  .doctor-info {
    padding-top: 16px;
    padding-right: 40px;
  }
  .doctor-info h3 {
    font-size: 19px;
  }
  .doctor-info > a {
    display: grid;
    top: 16px;
  }
  .doctor-info p {
    font-size: 14px;
  }
  .team-message {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 13px;
    padding-top: 25px;
    margin-top: 30px;
  }
  .team-message > svg {
    width: 25px;
    height: 25px;
  }
  .team-message p {
    font-size: 14px;
  }
  .team-message .handwriting {
    grid-column: 2;
    margin-left: 0;
    margin-top: 9px;
    font-size: 26px;
  }
  .steps {
    gap: 31px 20px;
    margin-top: 32px;
  }
  .step-number {
    font-size: 39px;
  }
  .step-top {
    padding-bottom: 19px;
    margin-bottom: 19px;
  }
  .step-top svg {
    width: 25px;
    height: 25px;
  }
  .steps h3 {
    font-size: 17px;
  }
  .steps p {
    font-size: 13px;
    line-height: 1.75;
    margin: 10px 0 14px;
  }
  .step-label {
    font-size: 9px;
    letter-spacing: 0.6px;
  }
  .faq-layout {
    gap: 27px;
  }
  .faq-list summary {
    font-size: 14px;
    gap: 15px;
    min-height: 72px;
  }
  .faq-answer {
    font-size: 13px;
    padding-right: 12px;
  }
  .contact-section {
    padding: 45px 0;
  }
  .contact-inner {
    display: block;
  }
  .contact-inner h2 {
    font-size: 31px;
  }
  .contact-inner p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-action {
    text-align: left;
    margin-top: 27px;
  }
  .contact-action .button {
    font-size: 15px;
    min-height: 57px;
    padding: 15px 20px;
  }
  .contact-action .handwriting {
    margin-top: 22px;
    font-size: 29px;
  }
  .footer {
    padding-top: 28px;
  }
  .footer-top {
    padding-bottom: 25px;
  }
  .footer-top > p {
    display: none;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 11px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
  }
  .privacy-button {
    font-size: 11px;
  }
  .medical-note {
    text-align: left;
    font-size: 11px;
  }
  .footer .brand strong {
    font-size: 18px;
  }
  dialog {
    padding: 35px 26px;
  }
  dialog h2 {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  h1 {
    font-size: 37px;
  }
  .hero-lead {
    font-size: 20px;
  }
  .hero-inner {
    min-height: 740px;
  }
  .hero-photo {
    top: 340px;
    height: 415px;
  }
  .hero .button {
    gap: 9px;
    padding-inline: 13px;
  }
  .button-arrow {
    margin-left: 3px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step-top {
    justify-content: flex-start;
    gap: 24px;
  }
  .steps p {
    font-size: 14px;
  }
  .step-label {
    font-size: 11px;
  }
}
@media (max-width: 600px) {
  .hero-photo {
    width: 100%;
    object-position: 50% 34%;
  }
  .eyebrow,
  .step-label {
    letter-spacing: 0;
  }
  .contact-phone {
    font-size: 23px;
    margin-bottom: 13px;
  }
}
.skip-link {
  opacity: 0;
  pointer-events: none;
}
.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}
.hero-photo {
  width: 53%;
  object-position: center 30%;
}
.hero-handwriting {
  right: 0;
  top: auto;
  bottom: 183px;
  font-size: 32px;
}
.hero-caption {
  bottom: 55px;
}
.doctor-card:first-child .doctor-photo img {
  object-position: center 38%;
}
.smile-card:nth-child(2) .smile-image img {
  object-position: center 40%;
}
@media (min-width: 901px) and (max-height: 850px) {
  .hero-inner {
    min-height: 515px;
  }
  .hero-copy {
    padding: 35px 0 40px;
  }
  h1 {
    font-size: 58px;
    margin: 18px 0;
  }
  .hero-lead {
    font-size: 24px;
  }
  .hero-description {
    margin: 13px 0 20px;
  }
  .benefits {
    padding: 20px 0;
  }
  .hero-handwriting {
    bottom: 175px;
  }
  .hero-caption {
    bottom: 45px;
  }
  .smiles-section {
    padding-top: 50px;
  }
}
@media (max-width: 900px) {
  .hero-photo {
    width: 62%;
  }
}
@media (max-width: 600px) {
  .hero-inner {
    min-height: 520px;
  }
  .hero-copy {
    padding-top: 25px;
  }
  .hero-description {
    display: none;
  }
  .hero-copy .button {
    margin-top: 19px;
  }
  .hero-lead {
    font-size: 20px;
  }
  .hero-photo {
    width: 100%;
    height: 255px;
    top: 290px;
    object-fit: cover;
    object-position: center 27%;
  }
  .hero-shade {
    background: linear-gradient(
      180deg,
      #edf1eb 0%,
      #edf1eb 43%,
      #edf1eb00 56%,
      #edf1eb00 69%,
      #edf1eb 86%
    );
  }
  .hero-caption {
    bottom: 18px;
    padding: 10px 12px;
    max-width: 260px;
  }
  .hero-caption p {
    font-size: 10px;
  }
  .hero-caption .caption-icon {
    width: 27px;
    height: 27px;
  }
  .hero-caption .caption-icon svg {
    width: 16px;
  }
  .benefits {
    padding: 19px 0 21px;
    gap: 15px;
  }
  .benefits span {
    font-size: 11px;
    line-height: 1.5;
  }
  .benefits > div > svg {
    width: 23px;
  }
  .smiles-section {
    padding-top: 37px;
  }
  .hero-handwriting {
    display: none;
  }
}
@media (max-width: 360px) {
  .hero-inner {
    min-height: 535px;
  }
  .hero-photo {
    top: 300px;
  }
  .hero-caption {
    bottom: 18px;
  }
  .hero-lead {
    font-size: 18px;
  }
  .hero-copy .button {
    margin-top: 17px;
  }
}
.hero-photo {
  mask-image: linear-gradient(90deg, transparent, #000 24%);
}
.hero-handwriting {
  left: 50%;
  right: auto;
  bottom: 106px;
}
.hero-handwriting svg {
  width: 170px;
}
@media (max-width: 600px) {
  .hero-photo {
    mask-image: linear-gradient(
      180deg,
      transparent,
      #000 22%,
      #000 75%,
      transparent
    );
  }
  .hero-copy .button-note {
    visibility: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-enabled .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
