/* Dental Blush — layout from Figma node 12411:62714 (1440×5400 reference)
   Sizes use rem/px (1rem = 16px at default browser settings).
   Responsive tweaks use @media blocks below — not clamp(). */

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Recoleta";
  src: url("assets/fonts/Recoleta Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core scale: edit rem here. Examples — 1rem=16px: 4.5rem=72px, 3.25rem=52px, 1.375rem=22px */
  --color-accent: #ff6687;
  --color-text: #1b1213;
  --color-text-muted: rgba(27, 18, 19, 0.61);
  --color-text-soft: rgba(27, 18, 19, 0.55);
  --color-text-faint: rgba(27, 18, 19, 0.5);
  --color-name: #060d25;
  --color-surface-muted: #E2D7D9;
  --color-white: #ffffff;
  --color-white-85: rgba(255, 255, 255, 0.85);
  --font-display: "Recoleta", Georgia, "Times New Roman", serif;
  --font-body: "Gothic A1", system-ui, sans-serif;
  --page-max: 1360px;
  --gutter: 2rem;
  --section-y: 5rem;
  --header-h: 64px;
  /* Reserve space when header pins fixed (matches inline header row height) */
  --hero-inline-header: 7.5rem;
  /* Bottom inset for hero copy column only — photo column stays flush to next section (Figma) */
  --hero-bottom-pad-left: 2.5rem;
  --radius-pill: 100px;
  --radius-card: 12px;
  --radius-thumb: 8px;
}

@media (min-width: 1024px) {
  :root {
    --gutter: 5rem;
    --section-y: 7.5rem;
    --hero-inline-header: 8.5rem;
    --hero-bottom-pad-left: 4rem;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: normal;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Full-bleed backgrounds; content limited by .content-wrap */
.section--white {
  width: 100%;
  background: var(--color-white);
}

.section--accent {
  width: 100%;
  background: var(--color-accent);
}

.content-wrap {
  container-type: inline-size;
  container-name: page;
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ——— Header: inline in hero (Figma) by default; fixed glass bar after scroll ——— */
.site-header {
  position: relative;
  z-index: 5;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

/* Inline header matches content column (1300px + same gutters as .content-wrap) */
.site-header:not(.is-scrolled) {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(27, 18, 19, 0.06);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: auto;
  /* Only vertical padding — .content-wrap supplies horizontal gutters */
  padding-top: 2.25rem;
  padding-bottom: 0.75rem;
  transition: justify-content 0.35s cubic-bezier(0.2, 0.85, 0.25, 1), padding 0.3s ease;
}

.site-header.is-scrolled .site-header__bar {
  justify-content: center;
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Prevent jump when header leaves document flow */
body.header-is-fixed .hero {
  padding-top: var(--hero-inline-header);
}

.site-header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  max-width: 120px;
  transition:
    opacity 0.32s ease,
    max-width 0.38s cubic-bezier(0.2, 0.85, 0.25, 1),
    margin 0.38s ease,
    transform 0.32s ease;
}

.site-header__logo img {
  width: 103px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}

.site-header.is-scrolled .site-header__logo img {
  max-height: 56px;
}

.site-header.is-scrolled .site-header__logo {
  opacity: 0;
  max-width: 0;
  margin-inline: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateX(-6px);
}

.site-header__logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

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

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  z-index: 210;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nav-toggle-label:hover {
  background: rgba(27, 18, 19, 0.05);
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  padding: 6px 2px;
  transition: color 0.22s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



.nav__cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.2s ease,
    box-shadow 0.22s ease;
}

.nav__cta:hover {
  background: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-text);
  box-shadow: 0 6px 20px rgba(27, 18, 19, 0.12);
  transform: translateY(-1px);
}

.nav__cta-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ——— Hero ——— */
.hero {
  container-type: inline-size;
  container-name: hero;
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  /* Photo track can dominate width — image fills row height (min-height) via cover */
  grid-template-columns: minmax(0, 1fr) minmax(280px, 52%);
  gap:1rem;
  align-items: stretch;
  padding-top: 2rem;
  /* No bottom padding: right column (photo) is flush with the next section; spacing lives on .hero__left only */
  padding-bottom: 0;
  min-height: 58rem;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-width: 0;
  align-self: stretch;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: var(--hero-bottom-pad-left);
}

/* Photo fills the full grid row height (same as min-height on .hero__grid) so the portrait isn’t visually shorter than the copy column */
.hero__photo {
  position: relative;
  width: calc(100% + var(--gutter));
  max-width: none;
  margin-right: calc(-1 * var(--gutter));
  min-height: 0;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
  padding-bottom: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.hero__photo-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 90%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.hero__google-badge {
  position: absolute;
  z-index: 2;
  top: 14%;
  right: 6%;
  max-width: min(17.5rem, calc(100% - 1.5rem));
  padding: 0.875rem 1rem 0.85rem;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(27, 18, 19, 0.06);
  box-shadow:
    0 12px 40px rgba(27, 18, 19, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__google-badge-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
}

.hero__google-logo {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.hero__google-logo-img {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: 100%;
}

.hero__google-score {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.hero__google-stars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 0;
}

.hero__star-svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(160, 110, 0, 0.35));
}

.hero__star-svg--muted {
  filter: none;
}

.hero__star-partial {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(160, 110, 0, 0.35));
}

.hero__star-partial .hero__star-svg--muted {
  position: absolute;
  inset: 0;
}

.hero__star-partial-clip {
  position: absolute;
  inset: 0;
  width: 90%;
  overflow: hidden;
}

.hero__star-partial-clip .hero__star-svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: none;
}

.hero__main {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 100%;
}

.hero__copy {
  max-width: min(726px, 100%);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: 0 0 3rem;
  max-width: min(726px, 100%);
  font-size: 1.125rem;
  line-height: 1.5;
}

.hero__subtitle-highlight {
  font-weight: 600;
  padding: 0.1em 0.35em;
  border-radius: 0.25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--color-accent);
  background: rgba(255, 102, 135, 0.12);
}

/* Muted charcoal chip — minimal, high contrast */
.hero__subtitle-highlight--muted {
  color: var(--color-text);
  background: rgba(27, 18, 19, 0.06);
}

/* No fill — accent underline only */
.hero__subtitle-highlight--underline {
  padding: 0 0 0.08em;
  border-radius: 0;
  color: var(--color-text);
  background: transparent;
  box-shadow: inset 0 -2px 0 0 var(--color-accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.2s ease,
    box-shadow 0.22s ease;
}

.btn--primary {
  background: var(--color-text);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #2d2425;
  box-shadow: 0 8px 24px rgba(27, 18, 19, 0.18);
  transform: translateY(-2px);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(27, 18, 19, 0.12);
}

.btn--primary img {
  width: 32px;
  height: 32px;
}

.btn--muted {
  background: var(--color-surface-muted);
  color: var(--color-text);
  width: 191px;
  padding-left: 46px;
  padding-right: 44px;
}

.btn--muted:hover {
  background: #e8e8e8;
  border-color: rgba(27, 18, 19, 0.12);
  box-shadow: 0 6px 18px rgba(27, 18, 19, 0.08);
  transform: translateY(-2px);
}

.btn--muted:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.btn--muted img {
  width: 32px;
  height: 32px;
}

.hero__credentials {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 0 0.5rem;
  max-width: min(420px, 100%);
}

.hero__credentials-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 12px;
}

.hero__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-name);
  min-width: 0;
}

.hero__degree {
  font-size: 20px;
  color: var(--color-text-faint);
  flex-shrink: 0;
  white-space: nowrap;
}

.hero__affiliations {
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--color-text-soft);
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 19px;
}

.hero__badge-img {
  object-fit: cover;
  border-radius: 4px;
}

/* ——— About ——— */
.about {
  min-height: 45rem;
  padding: 2.5rem 0 2.5rem;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 2.5rem 4rem;
  align-items: start;
}

.about__media {
  position: relative;
  max-width: min(542px, 100%);
}

.about__image-wrap {
  position: relative;
  width: 100%;
  max-width: 542px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.about__image {
  display: block;
  width: 100%;
  max-width: 542px;
  height: auto;
  aspect-ratio: 542 / 640;
  object-fit: cover;
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(0.0444467deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 29.404%);
  pointer-events: none;
}

.about__stats {
  position: absolute;
  left: 3.375rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-white);
  flex-wrap: wrap;
}

.about__stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.375rem;
  line-height: 1.15;
}

.about__stat-label {
  margin: 4px 0 0;
  font-size: 1.5rem;
  line-height: normal;
}

.about__stat-line {
  align-self: stretch;
  width: 1px;
  min-height: 107px;
  background: var(--color-white-85);
  opacity: 0.9;
}

.about__text {
  padding-top: 9.5rem;
  max-width: min(657px, 100%);
  justify-self: end;
}

.about__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  color: var(--color-white);
}

.about__body {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-white-85);
}

.about__points {
  margin: 1.25rem 0 0;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-white-85);
  list-style-type: disc;
}

.about__points li {
  margin-top: 0.5rem;
}

.about__points li:first-child {
  margin-top: 0;
}

/* ——— Services ——— */
.services {
  padding: var(--section-y) 0;
}

.services__heading-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 4.5rem;
}

.services__heading {
  margin: 0;
  max-width: min(726px, 100%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.25rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-text);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5rem 7.8125rem;
  width: 100%;
  max-width: 100%;
}

/* Column-major layout: each column stacks two cards (01/02 | 03/04 | 05/06). */
.services__grid > .service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.services__grid > .service-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.services__grid > .service-card:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.services__grid > .service-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.services__grid > .service-card:nth-child(5) {
  grid-column: 3;
  grid-row: 1;
}

.services__grid > .service-card:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

.services__grid > .service-card:nth-child(3),
.services__grid > .service-card:nth-child(4) {
  margin-top: 11px;
}

.service-card__num {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 64px;
  color: var(--color-accent);
}

.service-card__num--tight {
  line-height: normal;
  margin-bottom: 12px;
}

.service-card__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 23px;
}

.service-card--image-first .service-card__num {
  margin-bottom: 12px;
}

.service-card--image-first .service-card__media {
  margin-bottom: 12px;
}

.service-card--image-first .service-card__text {
  margin-bottom: 0;
}

.service-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--color-text);
}

.service-card__desc {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.service-card__media {
  border-radius: var(--radius-thumb);
  overflow: hidden;
  line-height: 0;
}

.service-card__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 338 / 248;
  object-fit: cover;
}

/* ——— Reviews (Google-style carousel) ——— */
.reviews {
  padding: 5rem 0 5.5rem;
}

.reviews__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
}

.reviews__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.25rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
}

.reviews__source-note {
  max-width: 36rem;
  margin: 0 auto 2.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.reviews__source-note a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews__source-note a:hover {
  opacity: 0.92;
}

.reviews-carousel {
  width: 100%;
}

.reviews-carousel__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  min-height: 16rem;
  font-family: var(--font-body);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

/* Side “peek” — white text on pink, no card fill */
.review-card--peek {
  background: transparent;
  color: var(--color-white);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.review-card--peek .review-card__text {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card--peek .review-card__name {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--color-white);
}

.review-card--peek .review-card__role {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

.review-card--peek .review-card__avatar--initials {
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Center — white card, dark text */
.review-card--active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.25rem;
  z-index: 1;
}

.review-card--active .review-card__text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex: 1;
}

.review-card--active .review-card__name {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--color-text);
}

.review-card--active .review-card__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: auto;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.review-card__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.review-card--active .review-card__avatar--initials {
  border: none;
  box-shadow: 0 2px 8px rgba(27, 18, 19, 0.1);
}

.review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: left;
}

.reviews-carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
}

.reviews-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  border-radius: 8px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.reviews-carousel__btn:hover {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.12);
}

.reviews-carousel__btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
}

.reviews-carousel__arrow {
  display: block;
}

/* ——— Visit ——— */
.visit {
  padding: var(--section-y) 0;
  border-top: 1px solid rgba(27, 18, 19, 0.08);
}

.visit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
  gap: 3rem 4rem;
  align-items: stretch;
}

.visit__panel {
  max-width: min(520px, 100%);
}

.visit__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.visit__heading {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--color-text);
}

.visit__address {
  margin: 0 0 2rem;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.visit__clinic-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
}

.visit__socials {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.visit__social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.visit__social:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.visit__social:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.visit__social-icon {
  display: flex;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.visit__social:hover .visit__social-icon {
  color: var(--color-accent);
}

.visit__cta {
  margin-top: 0.25rem;
}

.visit__cta .btn--primary img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.visit__map {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 26rem;
  aspect-ratio: 4 / 3;
  min-width: 0;
  background: var(--color-surface-muted);
  box-shadow: 0 12px 40px rgba(27, 18, 19, 0.08);
}

.visit__map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid #eee;
}

.footer__inner {
  max-width: 100%;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.footer__credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.footer__credit-logo {
  display: block;
  height: 1.25rem;
  width: auto;
}

.footer__credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__credit-link:hover {
  color: var(--color-accent);
}

/* ——— Responsive ——— */

@media (min-width: 1024px) {
  .nav-toggle-label {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .nav-toggle-label {
    display: flex;
    position: static;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-header__bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .site-header.is-scrolled .site-header__bar {
    justify-content: flex-end;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 250;
    width: min(320px, 88vw);
    margin: 0;
    padding: calc(var(--header-h) + 2rem) 32px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: var(--color-white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
  }

  .nav__link {
    font-size: 1.0625rem;
  }

  .nav__link::after {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    min-height: 46rem;
    align-items: stretch;
    padding-top: 2rem;
    padding-bottom: 0;
  }

  .hero__photo {
    min-height: 0;
    height: 100%;
    width: calc(100% + var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    max-width: none;
  }

  .hero__google-badge {
    top: 10%;
    right: 4%;
    padding: 0.75rem 0.875rem 0.65rem;
  }

  .hero__google-score {
    font-size: 1.5rem;
  }

  .hero__google-logo-img {
    height: 1.375rem;
  }

  .hero__star-svg,
  .hero__star-partial {
    width: 1.35rem;
    height: 1.35rem;
  }

  .hero__star-partial-clip .hero__star-svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
    row-gap: 5rem;
  }

  .services__grid > .service-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .services__grid > .service-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .services__grid > .service-card:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .services__grid > .service-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .services__grid > .service-card:nth-child(5) {
    grid-column: 1;
    grid-row: 3;
  }

  .services__grid > .service-card:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
  }

  .services__grid > .service-card:nth-child(3),
  .services__grid > .service-card:nth-child(4) {
    margin-top: 0;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about__text {
    padding-top: 0;
    justify-self: stretch;
  }

  .reviews-carousel__stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 0.9fr);
    gap: 1rem;
  }

  .review-card {
    padding: 1.25rem 1rem;
    min-height: 14rem;
  }

  .review-card--active {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.75rem;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .btn {
    font-size: 1.125rem;
  }

  .services__heading {
    font-size: 2.5rem;
  }

  .reviews__title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .reviews__source-note {
    margin-bottom: 2rem;
    padding: 0 var(--gutter);
    font-size: 0.875rem;
  }

  .about__title {
    font-size: 2.25rem;
  }

  .about__body {
    font-size: 1.25rem;
  }

  .about__points {
    font-size: 1.25rem;
  }

  .about__stat-value {
    font-size: 2.5rem;
  }

  .about__stat-label {
    font-size: 1.25rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  .hero__left {
    order: 1;
    justify-content: flex-start;
    gap: 2rem;
    align-self: stretch;
    /* Row gap separates copy from photo; no extra inset under credentials */
    padding-bottom: 0;
  }

  .hero__photo {
    order: 2;
    justify-self: stretch;
    position: relative;
    width: 100%;
    max-width: none;
    margin-right: 0;
    height: auto;
    min-height: min(92vw, 36rem);
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .hero__photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom center;
  }

  .hero__google-badge {
    top: auto;
    bottom: 12%;
    right: 5%;
    left: auto;
    max-width: min(15rem, calc(100% - 1.25rem));
    padding: 0.65rem 0.85rem 0.65rem;
  }

  .hero__google-logo-img {
    height: 1.25rem;
  }

  .hero__google-score {
    font-size: 1.375rem;
  }

  .hero__star-svg,
  .hero__star-partial {
    width: 1.28rem;
    height: 1.28rem;
  }

  .hero__star-partial-clip .hero__star-svg {
    width: 1.28rem;
    height: 1.28rem;
  }

  .hero__credentials {
    padding-left: 0;
  }

  .visit__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .visit__panel {
    max-width: none;
  }

  .visit__heading {
    font-size: 2.25rem;
  }

  .visit__map {
    aspect-ratio: 16 / 10;
    min-height: 15rem;
  }

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

  .about__text {
    margin-top: 1.5rem;
  }

  .about__stats {
    left: 1rem;
    bottom: 1rem;
    gap: 1rem;
  }

  .services__grid {
    grid-template-columns: 1fr;
    row-gap: 5rem;
  }

  .services__grid > .service-card:nth-child(1),
  .services__grid > .service-card:nth-child(2),
  .services__grid > .service-card:nth-child(3),
  .services__grid > .service-card:nth-child(4),
  .services__grid > .service-card:nth-child(5),
  .services__grid > .service-card:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
  }

  .services__grid > .service-card:nth-child(3),
  .services__grid > .service-card:nth-child(4) {
    margin-top: 0;
  }

  .reviews-carousel__stage {
    display: block;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  .review-card--peek {
    display: none;
  }

  .review-card--active {
    min-height: auto;
  }

  .btn {
    width: 100%;
    max-width: 22rem;
  }

  .btn--muted {
    width: 100%;
    max-width: 22rem;
  }
}

@media (max-width: 479px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn--muted {
    max-width: none;
    width: 100%;
    justify-content: center;
  }

  .about__stat-line {
    display: none;
  }

  .about__stats {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header__bar,
  .site-header__logo {
    transition: none;
  }

  .nav {
    transition: none;
  }

  .btn,
  .nav__cta,
  .nav__link {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
