:root {
  --ink: #2c3349;
  --muted: #697082;
  --line: #e5e8ef;
  --mist: #f7f8fa;
  --blue: #83a9f2;
  --blue-dark: #4d6fae;
  --blue-pale: #f3f7ff;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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; top: 12px; left: 12px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.announcement { background: var(--ink); color: #f5fbfb; font-size: 0.82rem; letter-spacing: 0.03em; }
.announcement__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement__inner span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: #8fd2d8; vertical-align: 1px; }
.announcement a { color: #d9f1f2; }
.announcement a:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: inline-flex; align-items: center; position: relative; }
.brand__text { display: grid; line-height: 1; letter-spacing: 0.01em; }
.brand__text strong { color: var(--ink); font-family: var(--serif); font-size: 1.28rem; font-weight: 500; letter-spacing: -0.02em; }
.brand__text span { margin-top: 7px; color: var(--ink); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.18em; text-transform: uppercase; }
.site-header .brand { gap: 15px; padding-block: 4px; }
.site-header .brand::before {
  content: "";
  width: 3px;
  height: 46px;
  flex: 0 0 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-dark), var(--blue));
  box-shadow: 0 4px 14px rgba(77, 111, 174, .2);
}
.site-header .brand__text { gap: 4px; }
.site-header .brand__text strong { font-size: 1.62rem; line-height: .95; letter-spacing: -.035em; }
.site-header .brand__text span { margin-top: 0; color: var(--blue-dark); font-size: .72rem; line-height: 1.1; letter-spacing: .24em; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-contact { padding: 4px 4px 4px 15px; display: grid; justify-items: start; gap: 3px; border-left: 1px solid rgba(131, 169, 242, .4); line-height: 1.2; }
.header-phone { padding: 0; color: var(--blue-dark); font-size: .92rem; font-weight: 780; white-space: nowrap; }
.header-phone:hover { color: var(--ink); }
.header-location { display: flex; align-items: center; gap: 7px; color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.header-location::before { content: ""; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(131, 169, 242, .16); }
.menu-toggle { display: block; border: 0; background: transparent; width: 44px; height: 44px; padding: 12px 8px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 7px 0; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { transform: translateY(-4.5px) rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 88px 0 auto;
  z-index: 99;
  height: calc(100vh - 88px);
  padding: clamp(38px, 7vh, 72px) 0;
  overflow-y: auto;
  display: none;
  background: rgba(255, 255, 255, .985);
  border-top: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(44, 51, 73, .12);
  backdrop-filter: blur(18px);
}
.site-nav.is-open { display: block; }
.site-nav__inner { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(48px, 9vw, 120px); align-items: end; }
.site-nav__links { display: grid; }
.site-nav__links > a {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font: 500 clamp(2.2rem, 4.6vw, 4.4rem)/1.05 var(--serif);
  letter-spacing: -.035em;
  transition: color .2s ease, padding-left .2s ease;
}
.site-nav__links > a::after { content: "→"; position: absolute; right: 4px; color: var(--blue-dark); font-family: var(--sans); font-size: .55em; opacity: 0; transform: translateX(-8px); transition: opacity .2s ease, transform .2s ease; }
.site-nav__links > a:hover, .site-nav__links > a[aria-current="page"] { padding-left: 10px; color: var(--blue-dark); }
.site-nav__links > a:hover::after, .site-nav__links > a[aria-current="page"]::after { opacity: 1; transform: translateX(0); }
.site-nav__status { padding: 25px; display: grid; gap: 8px; border: 1px solid rgba(131, 169, 242, .25); border-radius: 18px; background: var(--blue-pale); }
.site-nav__status strong { font: 600 1.18rem/1.3 var(--serif); }
.site-nav__status span { color: var(--muted); font-size: .86rem; line-height: 1.5; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid var(--blue); border-radius: 999px; background: var(--blue); color: var(--ink); font-size: 0.91rem; font-weight: 750; letter-spacing: 0.015em; box-shadow: 0 10px 26px rgba(131, 169, 242, .22); transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.button--small { min-height: 42px; padding-inline: 18px; }
.button--secondary { background: var(--white); color: var(--ink); box-shadow: none; }
.button--secondary:hover { background: var(--blue-pale); border-color: var(--blue); color: var(--ink); }
.button--secondary span { margin-left: 9px; transition: transform .2s ease; }
.button--secondary:hover span { transform: translateX(3px); }
.button--white { background: var(--blue); color: var(--ink); border-color: var(--blue); box-shadow: 0 10px 26px rgba(131, 169, 242, .18); }
.button--white:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-size: 0.91rem; font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: var(--ink); }

.hero { overflow: hidden; background: var(--white); }
.hero__media { position: relative; min-height: clamp(650px, 77vh, 790px); overflow: hidden; background: #dfe9f8; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; opacity: 0; }
.hero__slide.is-active { opacity: 1; }
.hero__slide--dental { object-position: center 42%; }
.hero__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(20, 31, 58, .72); opacity: 0; transition: opacity .42s ease; pointer-events: none; }
.hero__media.is-transitioning::before { opacity: 1; }
.hero__media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(20, 31, 58, .72) 0%, rgba(20, 31, 58, .48) 34%, rgba(20, 31, 58, .12) 68%, transparent 100%); pointer-events: none; }
.hero__overlay { position: relative; z-index: 2; min-height: inherit; padding-bottom: clamp(36px, 6vh, 64px); display: flex; align-items: center; }
.hero__panel { width: min(590px, 54%); padding-block: clamp(52px, 7vw, 88px); color: var(--white); }
.hero__panel.reveal { opacity: 1; transform: none; }
.hero__panel .eyebrow { color: #e5edff; }
.hero__panel h1 { color: var(--white); text-shadow: 0 3px 26px rgba(15, 26, 48, .32); }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--blue-dark); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--blue); }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; line-height: 1.03; text-wrap: balance; }
h1 { max-width: 820px; font-size: clamp(3.35rem, 5.5vw, 5.4rem); }
h2 { font-size: clamp(2.35rem, 4vw, 4.25rem); }
.hero__lede { max-width: 650px; margin: 28px 0 0; color: rgba(255, 255, 255, .92); font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.75; text-shadow: 0 2px 18px rgba(15, 26, 48, .36); }
.hero__actions { width: min(100%, 320px); margin-top: 34px; display: grid; gap: 12px; }
.hero__actions .button { width: 100%; }
.hero__actions .button--secondary { border-color: rgba(255, 255, 255, .8); background: rgba(22, 35, 64, .24); color: var(--white); box-shadow: none; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.hero__actions .button--secondary:hover { border-color: var(--white); background: rgba(255, 255, 255, .18); color: var(--white); }
.hero__insurance { margin: 15px 0 0; display: flex; align-items: center; gap: 9px; color: rgba(255, 255, 255, .9); font-size: .82rem; font-weight: 700; letter-spacing: .02em; text-shadow: 0 2px 14px rgba(15, 26, 48, .35); }
.hero__insurance::before { content: ""; width: 7px; height: 7px; flex: 0 0 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(131, 169, 242, .18); }
.hero__welcome { margin: 30px 0 0; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .38); display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.hero__welcome strong { font-size: .83rem; }
.hero__welcome span { color: rgba(255, 255, 255, .8); font-size: .77rem; text-align: right; }
.trust-strip {
  position: relative;
  padding-bottom: 34px;
  background: #fbfcff;
  border-bottom: 1px solid rgba(131, 169, 242, .16);
}
.trust-strip__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -30px;
  overflow: hidden;
  border: 1px solid rgba(131, 169, 242, .24);
  border-radius: 20px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 58px rgba(44, 51, 73, .1);
}
.trust-strip__grid > div {
  min-height: 142px;
  padding: 31px 34px 28px;
  display: grid;
  align-content: center;
  position: relative;
  border-right: 1px solid var(--line);
}
.trust-strip__grid > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 48px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}
.trust-strip__grid > div:last-child { border-right: 0; }
.trust-strip strong { font: 600 1.24rem/1.2 var(--serif); }
.trust-strip span { max-width: 300px; margin-top: 9px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.trust-hours { max-width: 300px; margin-top: 10px; display: grid; gap: 5px; }
.trust-hours span { max-width: none; margin: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: .8rem; line-height: 1.4; }
.trust-hours b { color: var(--ink); font-weight: 750; }
.trust-hours em { font-style: normal; white-space: nowrap; }

.section { padding: 116px 0; }
.services {
  padding-block: 104px;
  background: linear-gradient(180deg, #fbfcff 0%, var(--blue-pale) 100%);
  border-block: 1px solid rgba(131, 169, 242, .16);
}
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.section-heading--services { display: block; margin-bottom: 42px; }
.section-heading--services .services__title {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(2.1rem, 3.4vw, 3.45rem)/1.05 var(--serif);
  letter-spacing: -.03em;
  text-transform: none;
}
.section-heading--services .services__title > span { width: 44px; height: 3px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 18px; }
.service-card {
  min-height: 270px;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(131, 169, 242, .25);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 50px rgba(44, 51, 73, .07);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}
.service-card:hover { transform: translateY(-3px); border-color: rgba(77, 111, 174, .42); box-shadow: 0 24px 58px rgba(44, 51, 73, .11); }
.service-card__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(131, 169, 242, .3);
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font: 700 .72rem/1 var(--sans);
  letter-spacing: .08em;
}
.service-card h3 {
  min-height: 3.66rem;
  margin: 38px 0 14px;
  font: 500 1.55rem/1.18 var(--serif);
}
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; line-height: 1.72; }
.services__more {
  width: 100%;
  margin: 18px 0 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(131, 169, 242, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(131, 169, 242, .13));
  color: var(--muted);
  font-size: .95rem;
}
.services__more > span:first-child { color: var(--ink); font: 500 1.08rem/1.4 var(--serif); }
.services__more .text-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(77, 111, 174, .16);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.services__more .text-link:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }

.location-section { padding: 34px 0 54px; background: var(--blue-pale); }
.location-card {
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
  border: 1px solid rgba(131, 169, 242, .3);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(44, 51, 73, .08);
}
.location-card .eyebrow { margin-bottom: 16px; }
.location-card h2 { max-width: 760px; font-size: clamp(2.15rem, 4vw, 3.75rem); }
.location-card__details { display: grid; gap: 18px; justify-items: start; }
.location-card__details p { margin: 0; color: var(--muted); line-height: 1.7; }

.story { background: var(--mist); }
.story__grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.story__photo { position: relative; }
.story__photo img { width: 100%; aspect-ratio: .9; object-fit: cover; object-position: 50% 15%; border-radius: 22px; filter: saturate(.78) contrast(.98); }
.story__photo-label { padding: 17px 3px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.story__photo-label strong { font-family: var(--serif); }
.story__photo-label span { color: var(--muted); font-size: .8rem; }
.story__copy h2 { max-width: 690px; }
.story__copy h1 { max-width: 690px; font-size: clamp(2.35rem, 4vw, 4.25rem); }
.story__lead { margin: 32px 0 18px; color: var(--ink); font: 500 1.18rem/1.65 var(--serif); }
.story__copy > p:not(.eyebrow):not(.story__lead) { color: var(--muted); }
.doctor-note { margin: 30px 0 26px; padding: 20px 0; border-block: 1px solid #dadae9; display: flex; align-items: center; gap: 15px; }
.doctor-note__initials { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); font: 600 .78rem/1 var(--sans); letter-spacing: .08em; }
.doctor-note div { display: grid; }
.doctor-note strong { font: 600 1rem/1.35 var(--serif); }
.doctor-note div span { color: var(--muted); font-size: .79rem; }
.practice-page .story { min-height: calc(100vh - 260px); display: flex; align-items: center; }

.site-footer { padding: 34px 0 28px; border-top: 1px solid var(--line); background: var(--mist); }
.footer-visit { padding-bottom: 26px; display: grid; grid-template-columns: 1.08fr .82fr 1.1fr; gap: 14px; align-items: stretch; }
.footer-block { min-width: 0; padding: 24px; display: grid; align-content: start; gap: 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .78); }
.footer-visit__brand { justify-items: start; }
.footer-visit__brand .brand { margin-bottom: 12px; }
.footer-block__label { color: var(--blue-dark); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.footer-block p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.65; overflow-wrap: anywhere; }
.footer-block a:hover { color: var(--blue-dark); }
.footer-block__link { margin-top: 3px; color: var(--ink); font-size: .8rem; font-weight: 750; }
.footer-block__link span { margin-left: 4px; color: var(--blue-dark); }
.footer-hours { margin-top: 4px; display: grid; gap: 15px; }
.footer-hours p { display: grid; gap: 2px; }
.footer-hours strong { color: var(--ink); font: 600 .96rem/1.35 var(--serif); }
.footer-contact .button { width: 100%; margin-top: auto; }
.site-footer__bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .78rem; }
.site-footer__bottom div { display: flex; gap: 24px; }
.site-footer__bottom a:hover { color: var(--blue); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .12s; }

@media (max-width: 940px) {
  .site-nav__inner { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .site-nav__status { max-width: 460px; }
  .hero__welcome { display: none; }
  .hero__panel { width: min(610px, 62%); }
  h1 { font-size: clamp(3rem, 7vw, 4.6rem); }
  .trust-strip__grid > div { padding-inline: 24px; }
  .trust-strip__grid > div::before { left: 24px; }
  .trust-strip strong { font-size: 1.12rem; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .story__grid { gap: 60px; }
  .footer-visit { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .nav-wrap { min-height: 0; padding-block: 10px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px 14px; }
  .header-actions { display: contents; }
  .site-header .brand { grid-column: 1; grid-row: 1; gap: 10px; }
  .site-header .brand::before { height: 34px; }
  .site-header .brand__text { gap: 3px; }
  .site-header .brand__text strong { font-size: 1.24rem; }
  .site-header .brand__text span { margin-top: 0; font-size: .64rem; letter-spacing: .2em; }
  .menu-toggle { grid-column: 2; grid-row: 1; justify-self: end; }
  .header-contact { grid-column: 1; grid-row: 2; align-self: center; padding: 2px 4px 0; border-left: 0; }
  .header-phone { font-size: .82rem; }
  .header-location { font-size: .69rem; }
  .header-appointment { grid-column: 2; grid-row: 2; min-height: 36px; padding-inline: 13px; font-size: .75rem; }
  .site-nav { inset: 108px 0 auto; height: calc(100vh - 108px); padding: 26px 0 48px; }
  .site-nav__links > a { padding-block: 14px; font-size: clamp(2rem, 11vw, 3.25rem); }
  .site-nav__status { padding: 20px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .announcement__inner { min-height: 39px; }
  .announcement__inner span { font-size: .72rem; }
  .announcement a { font-size: .74rem; }
  .brand__text strong { font-size: 1.08rem; }
  .brand__text span { font-size: .66rem; }
  .hero { overflow: hidden; padding: 0; }
  .hero__media { min-height: 760px; overflow: hidden; background: #dfe9f8; }
  .hero__slide { position: absolute; height: 100%; object-position: 48% center; }
  .hero__slide--dental { object-position: 52% center; }
  .hero__media::after { height: 100%; background: linear-gradient(180deg, rgba(20, 31, 58, .05) 0%, rgba(20, 31, 58, .2) 32%, rgba(20, 31, 58, .7) 100%); }
  .hero__overlay { min-height: inherit; margin-top: 0; padding-block: 60px 78px; align-items: flex-end; }
  .hero__panel { width: 100%; padding: 0 6px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.4rem); }
  .hero__lede { margin-top: 22px; }
  .hero__actions { width: 100%; gap: 12px; }
  .trust-strip { padding-bottom: 26px; }
  .trust-strip__grid { grid-template-columns: 1fr; margin-top: -22px; border-radius: 16px; }
  .trust-strip__grid > div, .trust-strip__grid > div:first-child { min-height: 0; padding: 23px 22px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip__grid > div::before { top: 0; left: 22px; width: 40px; }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .trust-strip span { max-width: none; }
  .section { padding: 84px 0; }
  .services { padding-block: 78px; }
  .section-heading { margin-bottom: 44px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { min-height: 238px; padding: 25px; grid-column: auto; }
  .service-card h3 { min-height: 0; margin-top: 27px; }
  .services__more { grid-template-columns: 1fr; gap: 12px; border-radius: 16px; }
  .services__more .text-link { width: 100%; justify-content: center; }
  .location-section { padding: 24px 0 42px; }
  .location-card { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; border-radius: 18px; }
  .location-card__details .button { width: 100%; }
  .story__grid { grid-template-columns: 1fr; gap: 62px; }
  .story__photo-label { align-items: flex-start; flex-direction: column; gap: 2px; }
  .site-footer { padding-bottom: 44px; }
  .footer-visit { grid-template-columns: 1fr; gap: 12px; }
  .footer-contact { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button { border: 1px solid currentColor; }
}
