:root {
  --ink: #1e2526;
  --soft-ink: #566063;
  --paper: #fbfaf7;
  --porcelain: #f2f7f5;
  --mist: #e4ece9;
  --teal: #0d5a5f;
  --teal-dark: #07373c;
  --copper: #b77854;
  --white: #ffffff;
  --line: rgba(30, 37, 38, 0.12);
  --shadow: 0 22px 70px rgba(8, 24, 26, 0.12);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  border-radius: 50%;
  font-weight: 700;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-text small {
  color: currentColor;
  font-size: 11px;
  line-height: 1.1;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 650;
  opacity: 0.86;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-link:hover,
.nav-link.is-active {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .site-nav > a:hover,
.site-header.is-scrolled .site-nav > a.is-active,
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active,
body:not(.home-page) .site-nav > a:hover,
body:not(.home-page) .site-nav > a.is-active,
body:not(.home-page) .nav-link:hover,
body:not(.home-page) .nav-link.is-active {
  background: rgba(13, 90, 95, 0.1);
  color: var(--teal-dark);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.dropdown-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  cursor: pointer;
}

.dropdown-toggle:hover,
.nav-dropdown.is-open .dropdown-toggle {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .dropdown-toggle:hover,
body:not(.home-page) .dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown.is-open .dropdown-toggle,
body:not(.home-page) .nav-dropdown.is-open .dropdown-toggle {
  background: rgba(13, 90, 95, 0.1);
}

.dropdown-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(380px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(18px);
}

.dropdown-panel a {
  display: grid;
  gap: 2px;
  padding: 12px 13px;
  border-radius: 6px;
}

.dropdown-panel a:hover {
  color: var(--teal-dark);
  background: var(--porcelain);
}

.dropdown-panel span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dropdown-panel small {
  color: var(--soft-ink);
  font-size: 12px;
}

@media (min-width: 981px) {
  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel,
  .nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 86px) clamp(20px, 6vw, 82px) 46px;
  color: var(--white);
  background: var(--teal-dark);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 26, 29, 0.76) 0%, rgba(5, 26, 29, 0.38) 54%, rgba(5, 26, 29, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 26, 29, 0.68) 0%, rgba(5, 26, 29, 0.05) 44%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c4a8;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 500;
}

.hero-lead {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
}

.intro-band,
.section,
.feature-section,
.cta-band,
.invisalign-detail,
.map-placeholder {
  padding: clamp(68px, 9vw, 112px) 0;
}

.intro-band {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.split h2,
.section-head h2,
.feature-grid h2,
.cta-inner h2,
.page-hero h1 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.16;
  font-weight: 620;
  max-width: 780px;
}

.flow p,
.story-panel p,
.service-card p,
.team-card p,
.contact-info p,
.values-grid p,
.page-hero p,
.feature-grid p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
}

.flow {
  display: grid;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  margin-left: 12px;
  background: currentColor;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2 {
  max-width: 720px;
  font-size: clamp(28px, 2.6vw, 40px);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

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

.service-grid:not(.compact) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 286px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(30, 37, 38, 0.04);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 90, 95, 0.22);
  box-shadow: 0 18px 45px rgba(8, 24, 26, 0.1);
}

.service-card.has-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(5, 26, 29, 0.34), rgba(5, 26, 29, 0));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.035);
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px;
}

.service-card span,
.values-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.service-card h2 {
  margin-bottom: 16px;
  font-size: 23px;
}

.service-grid.compact .service-card h3 {
  font-size: 21px;
}

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

.small-copy {
  margin-top: 18px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 15px !important;
}

.feature-section {
  color: var(--white);
  background: var(--teal-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.feature-grid p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.feature-list span {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.muted {
  background: var(--porcelain);
}

.cta-band {
  background: var(--mist);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 700px;
}

.page-hero {
  padding: calc(var(--header-height) + 84px) 0 82px;
  background: linear-gradient(135deg, var(--porcelain), var(--paper) 58%, #efe8df);
}

.page-hero-inner {
  width: min(920px, calc(100% - 40px));
}

.page-hero p:last-child {
  width: min(720px, 100%);
  margin-top: 22px;
}

.page-hero h1 {
  font-size: clamp(28px, 2.5vw, 38px);
}

.service-showcase {
  padding: clamp(58px, 8vw, 96px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 120, 84, 0.24), transparent 34%),
    linear-gradient(135deg, #07373c 0%, #0d5a5f 48%, #173b42 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.showcase-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.showcase-copy p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.showcase-media-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 14px;
  align-items: end;
}

.showcase-media-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.showcase-media-stack img:nth-child(2) {
  transform: translateY(34px);
}

.about-visual-section {
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--porcelain) 100%);
}

.about-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 20px 60px rgba(8, 24, 26, 0.12);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.about-photo-large {
  min-height: 440px;
  grid-row: span 2;
}

.about-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 26, 29, 0.58);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.about-visual-copy {
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(183, 120, 84, 0.34), transparent 30%),
    linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.about-visual-copy h2,
.about-care-copy h2,
.about-treatment-grid h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 620;
}

.about-visual-copy p:last-child,
.about-care-copy p,
.about-treatment-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.about-photo-detail {
  min-height: 260px;
}

.about-care-grid,
.about-treatment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-care-copy p {
  color: var(--soft-ink);
}

.about-care-grid .about-photo,
.about-treatment-grid .about-photo {
  aspect-ratio: 16 / 10;
}

.about-treatment-band {
  padding: clamp(62px, 8vw, 104px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 55, 60, 0.94), rgba(13, 90, 95, 0.88)),
    var(--teal-dark);
}

.about-treatment-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.story-grid,
.team-grid,
.contact-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

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

.story-panel,
.team-card,
.contact-form,
.contact-info,
.values-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.story-panel h2,
.team-card h2,
.values-grid h2,
.contact-info h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

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

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

.team-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  font-size: 44px;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  color: var(--teal-dark);
  font-size: 18px;
  font-weight: 780;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.map-placeholder {
  background: var(--teal-dark);
  color: var(--white);
}

.map-placeholder h2 {
  width: min(760px, 100%);
  font-size: clamp(32px, 4vw, 52px);
}

.invisalign-detail {
  background: var(--porcelain);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #121819;
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 40px;
  padding: 58px 0;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.site-footer p {
  margin: 0;
  max-width: 420px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
}

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

.footer-bottom {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 92px 28px 32px;
    overflow-y: auto;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a,
  .nav-link {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 28px;
  }

  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
    align-items: center;
  }

  .nav-dropdown .nav-link {
    border-bottom: 1px solid var(--line);
  }

  .dropdown-toggle {
    width: 44px;
    height: 44px;
    justify-self: end;
  }

  .dropdown-panel {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    opacity: 1;
    color: var(--ink);
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
    backdrop-filter: none;
  }

  .nav-dropdown.is-open .dropdown-panel {
    max-height: 720px;
    padding-bottom: 12px;
  }

  .dropdown-panel a {
    padding: 9px 0;
  }

  .dropdown-panel span {
    font-size: 15px;
  }

  .dropdown-panel small {
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 58px) 20px 30px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .split,
  .feature-grid,
  .showcase-grid,
  .about-visual-grid,
  .about-care-grid,
  .about-treatment-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid:not(.compact),
  .team-grid,
  .values-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head,
  .cta-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 640px) {
  .container,
  .footer-inner,
  .footer-bottom,
  .page-hero-inner {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: 56px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .intro-band,
  .section,
  .feature-section,
  .service-showcase,
  .about-visual-section,
  .about-treatment-band,
  .cta-band,
  .invisalign-detail,
  .map-placeholder {
    padding: 56px 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 58px) 0 58px;
  }

  .split h2,
  .section-head h2,
  .feature-grid h2,
  .cta-inner h2,
  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .service-grid,
  .service-grid:not(.compact),
  .team-grid,
  .values-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .story-panel,
  .team-card,
  .contact-form,
  .contact-info,
  .values-grid article {
    padding: 22px;
  }

  .service-card.has-image {
    padding: 0;
  }

  .service-content {
    padding: 22px;
  }

  .service-card,
  .service-card-large {
    min-height: auto;
  }

  .showcase-media-stack {
    grid-template-columns: 1fr;
  }

  .showcase-media-stack img:nth-child(2) {
    transform: none;
  }

  .about-photo-large,
  .about-photo-detail,
  .about-care-grid .about-photo,
  .about-treatment-grid .about-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .about-visual-copy {
    padding: 22px;
  }

  .about-visual-copy h2,
  .about-care-copy h2,
  .about-treatment-grid h2 {
    font-size: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  .hero-video {
    display: none;
  }
}
