:root {
  color-scheme: light;
  --page: #F4FBFA;
  --surface: #FFFFFF;
  --surface-soft: #E9F7F5;
  --ink: #123E43;
  --text: #2F5B5E;
  --muted: #6A898A;
  --brand: #0B8C8D;
  --brand-dark: #076D70;
  --brand-deep: #064D56;
  --brand-pale: #D9F1EF;
  --line: #CFE4E2;
  --star: #F4B84A;
  --white: #FFFFFF;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-small: 12px;
  --radius-card: 22px;
  --radius-large: 32px;
  --radius-pill: 999px;
  --shadow-card: 0 16px 42px rgba(6, 77, 86, .10);
  --shadow-float: 0 12px 28px rgba(6, 77, 86, .18);
  --content-max: 1180px;
  --page-gutter: clamp(18px, 4vw, 54px);
  --section-space: 106px;
  --header-height: 78px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--page);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}
*,
*::before,
*::after { box-sizing: border-box; }
html { min-width: 320px; background: var(--page); }
body {
  margin: 0;
  min-width: 320px;
  padding-top: var(--header-height);
  background: var(--page);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a:focus-visible,
button:focus-visible { outline: 3px solid var(--star); outline-offset: 3px; border-radius: 8px; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }
.shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--content-max)); margin-inline: auto; }
.icon { display: inline-grid; flex: 0 0 auto; place-items: center; width: 19px; height: 19px; }
.icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.skip-link {
  position: fixed;
  z-index: 100;
  left: 14px;
  top: -80px;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--brand-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  min-height: var(--header-height);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(207,228,226,.9);
  box-shadow: 0 6px 24px rgba(6,77,86,.07);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 42px);
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}
.brand__logo { width: 42px; height: 42px; }
.brand__text { display: grid; gap: 3px; }
.brand__name {
  color: var(--ink);
  font: 800 17px/1 var(--font-display);
  letter-spacing: -.04em;
}
.brand__descriptor {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-navigation { flex: 1 1 auto; min-width: 0; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-link:hover,
.nav-link[aria-current="location"] { color: var(--brand-dark); }
.nav-link[aria-current="location"]::after { opacity: 1; transform: scaleX(1); }
.header-cta {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 20px rgba(11,140,141,.2);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.header-cta:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(11,140,141,.28); }
.header-cta .icon { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink);
  font-size: 0;
  cursor: pointer;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

.hero-section { padding: 34px 0 0; background: var(--page); }
.hero-backdrop {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--brand-deep);
}
.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  pointer-events: none;
}
.hero-backdrop::before { width: 600px; height: 600px; right: -110px; top: -350px; }
.hero-backdrop::after { width: 750px; height: 750px; right: -280px; bottom: -570px; }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(370px, .98fr);
  align-items: center;
  min-height: 555px;
  padding-block: clamp(45px, 6vw, 84px);
}
.hero__copy { position: relative; z-index: 2; max-width: 625px; }
.eyebrow {
  margin: 0 0 17px;
  color: var(--brand);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow--hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.10);
  color: #A6E2DC;
  letter-spacing: .11em;
}
.eyebrow--hero::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #88DED4;
  box-shadow: 0 0 0 4px rgba(136,222,212,.14);
}
.hero__title {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font: 820 clamp(42px, 5.8vw, 77px)/.98 var(--font-display);
  letter-spacing: -.07em;
}
.hero__body {
  max-width: 450px;
  margin: 22px 0 0;
  color: #C3E3E1;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.7;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: #A6D5D2;
  font-size: 12px;
  font-weight: 700;
}
.hero__meta .icon { width: 16px; height: 16px; color: #8DE0D5; }
.hero__meta-separator { color: rgba(255,255,255,.36); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { background: var(--white); color: var(--brand-deep); box-shadow: 0 10px 22px rgba(0,0,0,.14); }
.button--light:hover { background: #E9FFFC; box-shadow: 0 13px 26px rgba(0,0,0,.2); }
.button--outline { border-color: rgba(255,255,255,.44); color: var(--white); background: rgba(255,255,255,.05); }
.button--outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button--primary { background: var(--brand); color: var(--white); box-shadow: 0 10px 22px rgba(11,140,141,.2); }
.button--primary:hover { background: var(--brand-dark); box-shadow: 0 13px 26px rgba(11,140,141,.28); }
.hero__visual-wrap { position: relative; min-width: 0; min-height: 430px; display: grid; place-items: center; }
.hero__visual {
  position: relative;
  width: min(100%, 520px);
  margin: 0;
  display: grid;
  place-items: center;
}
.hero__halo {
  position: absolute;
  width: min(85%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.27) 0 42%, rgba(134,222,213,.16) 43% 67%, transparent 68%);
}
.hero__illustration { position: relative; z-index: 1; width: min(100%, 500px); filter: drop-shadow(0 24px 25px rgba(0,24,31,.23)); }
.hero__caption {
  position: absolute;
  right: 8%;
  bottom: 2%;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px;
  background: rgba(4,52,59,.72);
  color: #C4E3E0;
  font-size: 9px;
  font-weight: 700;
}
.hero__note {
  position: absolute;
  right: -4px;
  bottom: 23px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  min-width: 165px;
  padding: 13px 15px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-float);
  color: var(--ink);
}
.hero__note-mark { grid-row: 1 / 3; color: var(--star); font-size: 22px; line-height: 1; }
.hero__note strong { font-size: 12px; line-height: 1.2; }
.hero__note span:last-child { color: var(--muted); font-size: 10px; line-height: 1.4; }

.content-section { padding: var(--section-space) 0; scroll-margin-top: calc(var(--header-height) + 22px); }
.section-intro { max-width: 700px; }
.section-title {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font: 800 clamp(31px, 4vw, 51px)/1.06 var(--font-display);
  letter-spacing: -.06em;
}
.section-copy {
  max-width: 610px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.services-section { background: var(--page); padding-top: 95px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 38px;
}
.service-card {
  position: relative;
  min-height: 185px;
  padding: 24px 21px 21px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 8px 25px rgba(6,77,86,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--brand-pale);
  border-radius: 50%;
}
.service-card:hover { transform: translateY(-4px); border-color: #A9D9D4; box-shadow: var(--shadow-card); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  border-radius: 15px;
  background: var(--brand-pale);
  color: var(--brand-dark);
}
.service-card__icon .icon { width: 23px; height: 23px; }
.service-card__title {
  max-width: 180px;
  margin: 25px 0 0;
  color: var(--ink);
  font: 760 17px/1.15 var(--font-display);
  letter-spacing: -.035em;
}
.service-card__note { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.reputation-section { padding: 0 0 var(--section-space); background: var(--page); scroll-margin-top: calc(var(--header-height) + 22px); }
.reputation-panel {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow: hidden;
  padding: clamp(34px, 5.7vw, 67px);
  border-radius: var(--radius-large);
  background: linear-gradient(118deg, var(--brand-deep) 0%, #08767A 65%, var(--brand) 100%);
  color: var(--white);
}
.reputation-panel::before,
.reputation-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  pointer-events: none;
}
.reputation-panel::before { width: 440px; height: 440px; right: 90px; top: -295px; }
.reputation-panel::after { width: 610px; height: 610px; right: -90px; bottom: -485px; }
.reputation-copy { position: relative; z-index: 2; max-width: 670px; }
.section-intro--light .eyebrow { color: #A4E5DD; }
.section-intro--light .section-title { color: var(--white); }
.section-intro--light .section-copy { color: #C4E2E0; }
.reputation-rating {
  margin: 25px 0 0;
  color: var(--white);
  font: 820 clamp(33px, 4.2vw, 56px)/1 var(--font-display);
  letter-spacing: -.065em;
}
.reputation-source { max-width: 480px; margin: 13px 0 0; color: #C4E2E0; font-size: 12px; line-height: 1.6; }
.reputation-cta { margin-top: 25px; }
.reputation-cta .icon { width: 17px; height: 17px; }
.reputation-seal {
  position: absolute;
  z-index: 1;
  right: clamp(34px, 10vw, 150px);
  top: 50%;
  color: rgba(255,255,255,.13);
  font-size: clamp(150px, 23vw, 265px);
  line-height: .8;
  transform: translateY(-51%) rotate(-10deg);
}

.location-section { background: #EAF7F5; }
.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.map-illustration {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  isolation: isolate;
  background: #CFECE8;
}
.map-illustration__streets {
  position: absolute;
  inset: -20% -7%;
  opacity: .85;
  background-image: linear-gradient(32deg, transparent 0 44%, rgba(255,255,255,.82) 44.5% 47%, transparent 47.5%), linear-gradient(112deg, transparent 0 51%, rgba(255,255,255,.72) 51.5% 54%, transparent 54.5%), linear-gradient(90deg, rgba(52,126,126,.12) 1px, transparent 1px), linear-gradient(rgba(52,126,126,.12) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 45px 45px, 45px 45px;
  transform: rotate(-5deg) scale(1.13);
}
.map-illustration__route {
  position: absolute;
  left: -8%;
  top: 48%;
  width: 117%;
  height: 47px;
  border-block: 2px solid rgba(44,115,117,.2);
  background: rgba(255,255,255,.67);
  transform: rotate(-18deg);
}
.map-illustration__district {
  position: absolute;
  z-index: 1;
  color: #5F9693;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
}
.map-illustration__district--a { top: 19%; left: 12%; }
.map-illustration__district--b { right: 10%; bottom: 21%; }
.map-illustration__pin {
  position: absolute;
  z-index: 3;
  left: 55%;
  top: 49%;
  display: grid;
  width: 69px;
  height: 69px;
  place-items: center;
  border: 7px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 13px 20px rgba(6,77,86,.24);
  transform: translate(-50%, -50%);
}
.map-illustration__pin::after {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 19px;
  height: 19px;
  background: var(--brand);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.map-illustration__pin .icon { width: 25px; height: 25px; }
.map-illustration__note {
  position: absolute;
  z-index: 4;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 9px;
  background: rgba(255,255,255,.88);
  color: #5D8483;
  font-size: 10px;
  font-weight: 700;
}
.location-details { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(29px, 4.2vw, 53px); }
.location-details .eyebrow { margin-bottom: 13px; }
.location-details__address {
  max-width: 390px;
  color: var(--ink);
  font: 740 clamp(20px, 2.15vw, 27px)/1.35 var(--font-display);
  letter-spacing: -.045em;
}
.location-details__button { margin-top: 25px; }

.hours-section { background: var(--page); }
.hours-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(35px, 8vw, 120px); align-items: center; }
.hours-table {
  padding: 9px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 12px 33px rgba(6,77,86,.055);
}
.hours-row { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row__days { color: var(--muted); font-size: 14px; font-weight: 650; }
.hours-row__time { color: var(--ink); font-size: 16px; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-row--heading { min-height: 45px; }
.hours-row--heading .hours-row__days,
.hours-row--heading .hours-row__time { color: var(--brand-dark); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }

.contact-section { padding: 0 0 var(--section-space); background: var(--page); scroll-margin-top: calc(var(--header-height) + 22px); }
.contact-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  padding: clamp(30px, 5.3vw, 56px);
  border-radius: var(--radius-large);
  background: var(--brand);
  color: var(--white);
}
.contact-panel::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  pointer-events: none;
}
.contact-copy { position: relative; z-index: 1; max-width: 700px; }
.contact-copy .section-intro--light .section-title { max-width: 640px; }
.contact-details { display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 21px; }
.contact-detail {
  display: inline-flex;
  max-width: 100%;
  align-items: flex-start;
  gap: 8px;
  color: #D5F2EF;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.contact-detail:hover { color: var(--white); }
.contact-detail .icon { width: 17px; height: 17px; margin-top: 1px; color: #A8E6DE; }
.contact-detail--address { max-width: 390px; }
.contact-cta { position: relative; z-index: 1; flex: 0 0 auto; }

.site-footer {
  padding: 32px 0 calc(31px + env(safe-area-inset-bottom));
  background: #043E48;
  color: #C0DEDB;
}
.footer-inner { display: grid; grid-template-columns: auto 1fr; gap: 13px 30px; align-items: center; }
.footer-brand { color: var(--white); font-size: 17px; font-weight: 800; letter-spacing: -.035em; text-decoration: none; }
.footer-info { display: flex; flex-wrap: wrap; gap: 7px 19px; color: #A9CDCA; font-size: 11px; line-height: 1.6; }
.footer-info > * { max-width: 100%; overflow-wrap: anywhere; }
.footer-link { color: var(--white); font-weight: 750; text-decoration-color: rgba(255,255,255,.42); text-underline-offset: 3px; }
.footer-note { grid-column: 1 / -1; max-width: 740px; margin: 0; color: #88B2AF; font-size: 10px; line-height: 1.65; }

.load-error {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(calc(100% - 40px), 620px);
  margin: auto;
  color: var(--ink);
}
.load-error__mark { color: var(--brand); font-size: 42px; }
.load-error h1 { margin: 16px 0 0; font-size: 32px; letter-spacing: -.05em; }
.load-error p { max-width: 440px; color: var(--muted); line-height: 1.65; }
.noscript-message { width: min(calc(100% - 40px), 620px); margin: 120px auto; color: var(--ink); }
.noscript-message p { color: var(--muted); }

@media (max-width: 1000px) {
  :root { --section-space: 86px; }
  .header-inner { gap: 17px; }
  .nav-list { gap: clamp(7px, 1.6vw, 18px); }
  .nav-link { font-size: 11px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr); min-height: 515px; }
  .hero__title { font-size: clamp(42px, 6vw, 68px); }
  .hero__visual-wrap { min-height: 385px; }
  .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 11px; }
  .service-card { padding-inline: 17px; }
  .service-card__title { font-size: 15px; }
  .location-panel { grid-template-columns: 1fr 1fr; }
  .location-details { padding-inline: 35px; }
}

@media (max-width: 780px) {
  :root { --header-height: 76px; }
  .header-inner { min-height: var(--header-height); }
  .brand__logo { width: 38px; height: 38px; }
  .brand__name { font-size: 15px; }
  .brand__descriptor { font-size: 9px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-cta { min-height: 44px; padding-inline: 13px; }
  .header-cta__label { display: none; }
  .site-navigation {
    position: absolute;
    z-index: 5;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px var(--page-gutter) 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,.98);
    box-shadow: 0 15px 24px rgba(6,77,86,.12);
  }
  .site-navigation.is-open { display: block; }
  .nav-list { display: grid; gap: 2px; justify-content: stretch; }
  .nav-link { width: 100%; min-height: 46px; padding-inline: 12px; border-radius: 10px; font-size: 13px; }
  .nav-link:hover, .nav-link[aria-current="location"] { background: var(--surface-soft); }
  .nav-link::after { right: auto; bottom: 8px; left: 12px; width: 20px; }
  .hero-section { padding-top: 22px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-block: 45px 28px; }
  .hero__copy { max-width: 650px; }
  .hero__visual-wrap { min-height: 320px; margin-top: 20px; }
  .hero__illustration { width: min(100%, 450px); }
  .hero__note { right: 0; bottom: 10px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-panel { grid-template-columns: 1fr; }
  .map-illustration { min-height: 300px; }
  .location-details { padding: 31px var(--page-gutter) 35px; }
  .hours-layout { grid-template-columns: 1fr; gap: 30px; }
  .contact-panel { display: block; }
  .contact-cta { margin-top: 27px; }
}

@media (max-width: 520px) {
  :root { --section-space: 72px; }
  .shell { width: min(calc(100% - 36px), var(--content-max)); }
  .brand { gap: 8px; }
  .brand__logo { width: 34px; height: 34px; }
  .brand__name { font-size: 14px; }
  .brand__descriptor { font-size: 8px; letter-spacing: .1em; }
  .header-cta { padding-inline: 11px; }
  .header-cta .icon { width: 17px; height: 17px; }
  .hero { padding-block: 31px 20px; }
  .eyebrow--hero { padding: 8px 11px; font-size: 9px; }
  .hero__title { font-size: clamp(39px, 12vw, 58px); }
  .hero__body { margin-top: 16px; font-size: 14px; line-height: 1.63; }
  .hero__meta { margin-top: 14px; font-size: 11px; }
  .hero__actions { gap: 8px; margin-top: 23px; }
  .button { min-height: 46px; padding-inline: 15px; font-size: 11px; }
  .hero__visual-wrap { min-height: 265px; margin-top: 12px; }
  .hero__halo { width: min(83vw, 305px); }
  .hero__illustration { width: min(100%, 355px); }
  .hero__note { right: 1px; bottom: 2px; min-width: 151px; padding: 10px 12px; }
  .hero__note strong { font-size: 11px; }
  .hero__note span:last-child { font-size: 9px; }
  .section-title { font-size: clamp(30px, 9vw, 40px); }
  .section-copy { margin-top: 12px; font-size: 14px; }
  .services-section { padding-top: 65px; }
  .services-grid { gap: 10px; margin-top: 25px; }
  .service-card { min-height: 155px; padding: 18px 16px; }
  .service-card__icon { width: 41px; height: 41px; border-radius: 13px; }
  .service-card__icon .icon { width: 20px; height: 20px; }
  .service-card__title { margin-top: 18px; font-size: 14px; }
  .service-card__note { margin-top: 6px; font-size: 10px; }
  .reputation-section { padding-bottom: 36px; }
  .reputation-panel { min-height: 305px; padding: 29px 24px; border-radius: 25px; }
  .reputation-rating { margin-top: 20px; font-size: clamp(30px, 8.5vw, 43px); }
  .reputation-source { font-size: 11px; }
  .reputation-cta { margin-top: 21px; }
  .reputation-seal { right: 7px; bottom: -20px; top: auto; font-size: 165px; transform: rotate(-10deg); }
  .map-illustration { min-height: 245px; }
  .location-details { padding: 25px 22px 29px; }
  .location-details__address { font-size: 21px; }
  .hours-table { padding-inline: 18px; }
  .hours-row { min-height: 60px; }
  .hours-row__days { font-size: 13px; }
  .hours-row__time { font-size: 14px; }
  .contact-panel { padding: 27px 23px 30px; border-radius: 25px; }
  .contact-details { display: grid; gap: 12px; }
  .contact-detail { font-size: 11px; }
  .footer-inner { grid-template-columns: 1fr; gap: 10px; }
  .footer-info { gap: 6px 14px; }
  .footer-note { grid-column: auto; margin-top: 3px; }
}

@media (orientation: landscape) and (max-height: 520px) {
  :root { --header-height: 70px; }
  .hero { grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr); min-height: 390px; padding-block: 30px; }
  .hero__visual-wrap { min-height: 300px; margin-top: 0; }
  .hero__title { font-size: clamp(36px, 6vw, 55px); }
  .hero__body { margin-top: 13px; }
  .hero__actions { margin-top: 18px; }
}

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