@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  --ink: #101923;
  --muted: #5c6875;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --soft-blue: #eaf4ff;
  --navy: #071529;
  --navy-2: #0c233a;
  --blue: #0b69d8;
  --blue-2: #1684ff;
  --teal: #0f8c86;
  --amber: #f4a51c;
  --rose: #d94b7d;
  --line: #d9e4ef;
  --line-dark: rgba(255, 255, 255, .16);
  --shadow: 0 18px 45px rgba(7, 21, 41, .12);
  --shadow-strong: 0 28px 70px rgba(7, 21, 41, .22);
  --radius: 8px;
  --container: 1180px;
  --header-height: 86px;
  --rainbow-loop: linear-gradient(
    90deg,
    #e40303 0%,
    #ff8c00 8.333%,
    #ffed00 16.666%,
    #008026 25%,
    #004dff 33.333%,
    #750787 41.666%,
    #e40303 50%,
    #ff8c00 58.333%,
    #ffed00 66.666%,
    #008026 75%,
    #004dff 83.333%,
    #750787 91.666%,
    #e40303 100%
  );
  --rainbow-loop-vertical: linear-gradient(
    180deg,
    #e40303 0%,
    #ff8c00 8.333%,
    #ffed00 16.666%,
    #008026 25%,
    #004dff 33.333%,
    #750787 41.666%,
    #e40303 50%,
    #ff8c00 58.333%,
    #ffed00 66.666%,
    #008026 75%,
    #004dff 83.333%,
    #750787 91.666%,
    #e40303 100%
  );
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(22, 132, 255, .55);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #071529 0%, #071529 72%, #06111e 100%);
  color: #fff;
  border-bottom: 1px solid rgba(22, 132, 255, .36);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 3px;
  background: var(--rainbow-loop);
  background-size: 200% 100%;
  opacity: .85;
  animation: stripe-flow 10s linear infinite;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 290px;
  gap: 14px;
  text-decoration: none;
}

.brand__mascot {
  position: relative;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b223a, #102f4f);
  border: 1px solid rgba(255, 255, 255, .18);
}

.brand__mascot img {
  position: absolute;
  width: 170px;
  max-width: none;
  left: 50%;
  top: -15px;
  transform: translateX(-48%);
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, .45));
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong,
.brand__text span {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand__text strong {
  font-size: 1.5rem;
}

.brand__text span {
  color: var(--blue-2);
  font-size: 1.18rem;
}

.brand__text small {
  margin-top: 7px;
  color: #bfd5ed;
  font-size: .78rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  padding: 13px 14px;
  color: #e8f2ff;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: rgba(22, 132, 255, .18);
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-chip {
  display: inline-flex;
  height: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 10px 26px rgba(11, 105, 216, .34);
  font-size: .94rem;
  text-decoration: none;
}

.phone-chip span {
  font-size: 1.15rem;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  display: block;
  width: 23px;
  height: 2px;
  margin: 0;
  border-radius: 99px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
  transform: translateX(-50%);
  transform-origin: center;
}

.menu-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateX(-50%) translateY(7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.05rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.lead {
  max-width: 650px;
  color: #e3edf8;
  font-size: 1.2rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #8ec6ff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow--blue {
  color: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-action-block {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  column-gap: 12px;
  width: auto;
  max-width: 100%;
}

.hero-action-block > .button-row {
  display: contents;
}

.hero-action-block > .hero-proof-row {
  grid-column: 1 / -1;
  width: 100%;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 14px 32px rgba(11, 105, 216, .28);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.btn--dark {
  color: #fff;
  background: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.rainbow-heart {
  display: inline-grid;
  width: 1.4em;
  height: 1.4em;
  flex: 0 0 auto;
  place-items: center;
  font-size: 1rem;
}

.rainbow-heart::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rainbow-loop-vertical);
  background-size: 100% 200%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29'%3E%3Cpath fill='black' d='M23.6 0C20.7 0 18.1 1.6 16 4.1C13.9 1.6 11.3 0 8.4 0C3.8 0 0 3.8 0 8.5C0 17.6 16 29 16 29S32 17.6 32 8.5C32 3.8 28.2 0 23.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 29'%3E%3Cpath fill='black' d='M23.6 0C20.7 0 18.1 1.6 16 4.1C13.9 1.6 11.3 0 8.4 0C3.8 0 0 3.8 0 8.5C0 17.6 16 29 16 29S32 17.6 32 8.5C32 3.8 28.2 0 23.6 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: heart-flow 10s linear infinite;
}

.hero {
  --hero-image: url("../img/hero/hero_startseite.webp");
  --hero-media-width: clamp(1180px, 100vw, 1440px);
  --hero-media-y: 51%;
  --hero-media-opacity: .58;
  --hero-edge-mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 7%, rgba(0, 0, 0, .55) 16%, #000 28%, #000 72%, rgba(0, 0, 0, .55) 84%, rgba(0, 0, 0, .08) 93%, transparent 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 14, 26, .99) 0%, rgba(7, 21, 41, .97) 32%, rgba(7, 21, 41, .86) 58%, rgba(7, 21, 41, .96) 100%),
    radial-gradient(circle at 78% 50%, rgba(22, 132, 255, .2), transparent 40%),
    linear-gradient(135deg, #050d18, var(--navy) 58%, #0f3657);
}

.hero::before {
  content: "";
  position: absolute;
  top: var(--hero-media-y);
  left: 50%;
  width: var(--hero-media-width);
  aspect-ratio: 16 / 9;
  z-index: 0;
  transform: translate(-50%, -50%);
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--hero-media-opacity);
  filter: saturate(.98) contrast(.96);
  -webkit-mask-image: var(--hero-edge-mask);
  mask-image: var(--hero-edge-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: var(--rainbow-loop);
  background-size: 200% 100%;
  animation: stripe-flow 10s linear infinite;
  animation-delay: -3.33s;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(650px, 1.1fr) minmax(320px, .9fr);
  gap: 34px;
  align-items: center;
  padding-block: 54px 18px;
}

.hero__copy {
  max-width: 760px;
}

.hero-title-line {
  display: block;
}

.hero-title-line--wide {
  white-space: nowrap;
}

.inclusive-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: 100%;
  align-items: center;
  justify-content: start;
  gap: 11px;
  margin: 26px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  text-align: left;
  line-height: 1.35;
}

.inclusive-note .rainbow-heart {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.inclusive-note .rainbow-heart::before {
  width: 100%;
  height: 100%;
}

.inclusive-note > span:last-child {
  display: grid;
  gap: 2px;
}

.inclusive-note strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  line-height: 1.15;
}

.hero-proof-row {
  display: block;
}

.hero-proof-row .hero-card-stack {
  display: none;
}

.page-proof-row {
  margin-top: 26px;
}

.hero__visual {
  position: relative;
  min-height: 540px;
  display: block;
}

.hero-mascot {
  position: absolute;
  left: clamp(-70px, -4vw, -24px);
  bottom: -172px;
  width: min(720px, 54vw);
  max-width: none;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .46));
  animation: herbert-bob 6s ease-in-out infinite;
}

.hero-card-stack {
  position: absolute;
  right: 0;
  bottom: 70px;
  display: grid;
  justify-items: end;
}

.hero-rating,
.score-panel {
  display: grid;
  gap: 5px;
  width: min(230px, 100%);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.hero-rating {
  position: static;
}

.google-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  color: transparent;
  background: #fff;
  box-shadow: inset 0 0 0 1px #dfe8f3;
  font-size: 0;
}

.google-mark::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%234285F4' d='M17.64 9.2c0-.64-.06-1.25-.16-1.84H9v3.48h4.84c-.21 1.12-.84 2.07-1.79 2.71v2.25h2.9c1.7-1.56 2.69-3.87 2.69-6.6z'/%3E%3Cpath fill='%2334A853' d='M9 18c2.43 0 4.47-.8 5.96-2.18l-2.9-2.25c-.8.54-1.83.86-3.06.86-2.35 0-4.34-1.58-5.05-3.71H.96v2.33A9 9 0 009 18z'/%3E%3Cpath fill='%23FBBC05' d='M3.95 10.72A5.41 5.41 0 013.67 9c0-.59.1-1.16.28-1.72V4.95H.96A9 9 0 000 9c0 1.45.35 2.82.96 4.05l2.99-2.33z'/%3E%3Cpath fill='%23EA4335' d='M9 3.58c1.32 0 2.51.45 3.44 1.35l2.58-2.58C13.46.89 11.43 0 9 0A9 9 0 00.96 4.95l2.99 2.33C4.66 5.15 6.65 3.58 9 3.58z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.hero-rating strong,
.score-panel strong {
  font-size: 1.55rem;
  line-height: 1;
}

.stars {
  color: #f7aa00;
  letter-spacing: 0;
}

.hero-rating small,
.score-panel small,
.reviews-summary small {
  color: var(--muted);
  font-weight: 750;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid article {
  min-height: 154px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid h3 {
  font-size: 1.02rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.mini-icon,
.service-card span,
.service-detail > span,
.process-card span {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 950;
}

.mini-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--blue);
  background: var(--soft-blue);
}

.section {
  padding-block: 86px;
}

.section--light {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head--compact {
  align-items: start;
  margin-bottom: 22px;
}

.service-grid,
.service-detail-grid,
.process-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.service-detail,
.process-card,
.values-grid article,
.content-panel,
.welcome-panel,
.contact-panel,
.contact-form-panel,
.legal-box,
.reviews-intro,
.reviews-panel,
.map-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 190px;
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

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

.service-grid--compact .service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 0;
  gap: 8px 12px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(5, 13, 24, .07);
}

.service-grid--compact .service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-card span,
.service-detail > span {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--blue);
  background: var(--soft-blue);
  border: 1px solid #cfe2f6;
}

.service-grid--compact .service-card span {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
  font-size: .84rem;
}

.service-grid--compact .service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.service-grid--compact .service-card p {
  grid-column: 2;
  margin: 0;
  font-size: .88rem;
  line-height: 1.45;
}

.service-card p,
.service-detail p,
.process-card p,
.values-grid p,
.content-panel p,
.welcome-panel p,
.contact-panel p,
.contact-form-panel p,
.legal-box p,
.reviews-intro p,
.review-card p,
.review-placeholder p,
.map-placeholder p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.story-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 22px;
  align-items: stretch;
}

.story-panel {
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.story-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  font-weight: 850;
}

.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
}

.mascot-note {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #12304d);
  box-shadow: var(--shadow-strong);
}

.mascot-note img {
  position: absolute;
  right: -62px;
  bottom: -74px;
  width: 300px;
  opacity: .95;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .42));
}

.mascot-note > div {
  position: relative;
  z-index: 1;
  max-width: 260px;
}

.mascot-note p {
  color: #dcecff;
}

.mascot-note strong {
  color: #fff;
  font-size: 1.4rem;
}

.page-hero {
  --page-hero-image: url("../img/hero/hero_startseite.webp");
  --page-hero-media-width: clamp(1040px, 96vw, 1220px);
  --page-hero-media-y: 50%;
  --page-hero-media-offset-y: 0px;
  --page-hero-media-opacity: .5;
  --page-hero-edge-mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .08) 7%, rgba(0, 0, 0, .55) 16%, #000 28%, #000 72%, rgba(0, 0, 0, .55) 84%, rgba(0, 0, 0, .08) 93%, transparent 100%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 14, 26, .99) 0%, rgba(7, 21, 41, .96) 40%, rgba(7, 21, 41, .86) 68%, rgba(7, 21, 41, .96) 100%),
    linear-gradient(135deg, #050d18, #071529 58%, #11375a);
}

.page-hero--services {
  --page-hero-image: url("../img/hero/hero_leistungen.webp");
}

.page-hero--about {
  --page-hero-image: url("../img/hero/hero_ueberuns.webp");
}

.page-hero--reviews {
  --page-hero-image: url("../img/hero/hero_bewertungen.webp");
  --page-hero-media-offset-y: 35px;
}

.page-hero--contact {
  --page-hero-image: url("../img/hero/hero_kontakt.webp");
}

.page-hero::before {
  content: "";
  position: absolute;
  top: var(--page-hero-media-y);
  left: 50%;
  width: var(--page-hero-media-width);
  aspect-ratio: 16 / 9;
  z-index: 0;
  transform: translate(-50%, calc(-50% + var(--page-hero-media-offset-y)));
  background-image: var(--page-hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--page-hero-media-opacity);
  filter: saturate(.98) contrast(.96);
  -webkit-mask-image: var(--page-hero-edge-mask);
  mask-image: var(--page-hero-edge-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  height: 3px;
  background: var(--rainbow-loop);
  background-size: 200% 100%;
  animation: stripe-flow 10s linear infinite;
  animation-delay: -3.33s;
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
  gap: 34px;
  align-items: center;
  padding-block: 58px;
}

.page-hero h2 {
  max-width: 820px;
  color: #fff;
  font-size: 3.8rem;
  text-wrap: balance;
}

.page-hero p {
  max-width: 740px;
  color: #dce9f8;
  font-size: 1.1rem;
  line-height: 1.7;
}

.page-hero__grid > img {
  width: min(340px, 82%);
  justify-self: center;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .42));
}

.about-hero-actions {
  margin-top: 24px;
}

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

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
}

.service-detail--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #fff, #edf7ff);
  border-color: #cfe2f6;
}

.service-detail > span {
  margin-bottom: 0;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-detail li {
  padding: 7px 9px;
  border-radius: var(--radius);
  color: #17436f;
  background: var(--soft-blue);
  border: 1px solid #d4e7fa;
  font-size: .86rem;
  font-weight: 800;
}

.process-section {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.process-section .section-head p {
  color: #d7e7f7;
}

.process-card {
  padding: 28px;
  border-color: var(--line-dark);
  color: #fff;
  background: rgba(255, 255, 255, .07);
  box-shadow: none;
}

.process-card span {
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  background: var(--blue-2);
}

.process-card p {
  color: #dcecff;
  margin-bottom: 0;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  gap: 22px;
}

.about-section {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: 24px;
  align-items: stretch;
}

.content-panel,
.welcome-panel,
.contact-panel,
.contact-form-panel,
.reviews-intro,
.reviews-panel,
.legal-box {
  padding: 34px;
}

.welcome-panel {
  background: linear-gradient(145deg, #fff, #edf7ff);
}

.about-story {
  position: relative;
  overflow: hidden;
  padding: 38px;
}

.about-story::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(22, 132, 255, .09);
  pointer-events: none;
}

.about-story h2 {
  max-width: 760px;
}

.about-lead {
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 760;
}

.about-signals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.about-signals span {
  display: grid;
  min-height: 56px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #d3e5f7;
  border-radius: var(--radius);
  color: #0d2b48;
  background: #f2f8ff;
  font-weight: 900;
  line-height: 1.25;
}

.about-welcome {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(237, 247, 255, .98)),
    var(--soft-blue);
}

.about-welcome h2 {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 3.6vw, 2.65rem);
  line-height: 1.06;
  white-space: nowrap;
}

.about-welcome .eyebrow {
  margin-bottom: -4px;
}

.about-welcome .rainbow-heart {
  width: .92em;
  height: .92em;
  font-size: .82em;
  transform: translateY(-.18em);
}

.about-values-section .section-head p {
  max-width: 660px;
}

.values-grid--about article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.values-grid--about article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.values-grid--about article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  font-size: .82rem;
  font-weight: 950;
}

.values-grid--about h3 {
  margin-top: 0;
}

.values-grid article {
  padding: 26px;
}

.reviews-section {
  background: linear-gradient(180deg, #fff, var(--soft));
  padding-top: clamp(26px, 4vw, 44px);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.review-placeholder code {
  padding: 2px 5px;
  border-radius: 5px;
  background: #e9f3ff;
  border: 1px solid #d3e5f7;
  color: #0d2b48;
}

.reviews-panel {
  display: grid;
  gap: 20px;
  overflow: hidden;
}

.reviews-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow action"
    "title action";
  align-items: end;
  gap: 8px 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.reviews-panel-head .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 8px;
}

.reviews-panel-head h2 {
  grid-area: title;
  margin-bottom: 0;
  font-size: 2.2rem;
}

.reviews-panel-head .btn {
  grid-area: action;
  min-height: 44px;
  padding: 11px 16px;
}

.reviews-summary {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: #f5f9ff;
  border: 1px solid #d6e5f5;
  box-shadow: 0 14px 32px rgba(7, 21, 41, .06);
}

.reviews-summary strong {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1;
}

.reviews-summary small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card,
.review-placeholder,
.reviews-error {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.review-card header {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.review-author {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.review-author img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--soft);
}

.review-author small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.25;
}

.review-card h3,
.review-placeholder h3 {
  margin: 0;
  font-size: 1rem;
}

.review-card time {
  color: var(--muted);
  font-size: .82rem;
  white-space: nowrap;
}

.review-card p,
.review-placeholder p {
  margin-bottom: 0;
  font-size: .95rem;
}

.review-card a {
  display: inline-flex;
  margin-top: 13px;
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.review-placeholder,
.reviews-error {
  grid-column: 1 / -1;
}

.reviews-error {
  color: #84220d;
  background: #fff5f0;
  border-color: #ffcbb8;
}

.score-panel {
  justify-self: end;
}

.contact-section {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  min-height: 520px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-panel {
  grid-column: 1 / -1;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-list a {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  font-weight: 800;
}

.contact-list strong {
  text-align: right;
}

.hours {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hours div:last-child {
  border-bottom: 0;
}

.hours dt {
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: right;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 132, 255, .14);
}

.form-note {
  margin: 0;
  font-size: .92rem;
}

.map-panel {
  overflow: hidden;
  background: #dfe9f4;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-placeholder {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(170px, .65fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #174364);
}

.map-placeholder img {
  width: min(230px, 100%);
  justify-self: center;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .34));
}

.map-placeholder h2 {
  color: #fff;
}

.map-placeholder p {
  color: #dcecff;
}

.legal-view {
  padding-block: 76px;
  background: linear-gradient(180deg, #fff, var(--soft));
}

.legal-container {
  max-width: 920px;
}

.legal-container > h2 {
  font-size: 3.4rem;
}

.legal-box {
  margin-top: 18px;
  box-shadow: none;
}

.legal-box--warning {
  color: #5a3600;
  background: #fff8e7;
  border-color: #f8d592;
}

.legal-box h3 {
  margin-top: 24px;
}

.legal-box h3:first-child {
  margin-top: 0;
}

.legal-box a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  position: relative;
  color: #d6e5f5;
  background: linear-gradient(135deg, #050d18, var(--navy) 58%, #0d2a45);
  padding-block: 58px 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--rainbow-loop);
  background-size: 200% 100%;
  animation: stripe-flow 10s linear infinite;
  animation-delay: -6.66s;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(190px, .85fr) minmax(190px, .8fr);
  gap: 32px;
  align-items: start;
}

.footer-intro {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .35));
}

.footer-brand h2 {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--blue-2);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.03rem;
}

.footer-brand h2 {
  margin: 0;
}

.site-footer p {
  margin: 0;
  color: #aec5dd;
}

.site-footer a {
  color: #e8f2ff;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-section,
.footer-section address,
.footer-hours {
  display: grid;
  gap: 10px;
}

.footer-section address {
  color: #aec5dd;
  font-style: normal;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.footer-route {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  font-weight: 850;
}

.footer-route {
  margin-top: 4px;
  color: #fff;
}

.footer-route::after {
  content: "→";
  margin-left: 8px;
  transition: transform .2s ease;
}

.footer-route:hover::after {
  transform: translateX(3px);
}

.footer-hours {
  margin: 0;
}

.footer-hours div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-hours div:last-child {
  border-bottom: 0;
}

.footer-hours dt {
  color: #fff;
  font-weight: 900;
}

.footer-hours dd {
  margin: 0;
  color: #aec5dd;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #9fb7d0;
}

@keyframes herbert-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes stripe-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes heart-flow {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 100%;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 78px;
  }

  .brand {
    min-width: 230px;
  }

  .brand__text small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .phone-chip {
    height: 46px;
    min-height: 46px;
    padding-block: 0;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 0 0 var(--radius) var(--radius);
    background: rgba(7, 21, 41, .98);
    box-shadow: var(--shadow-strong);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 16px;
  }

  .main-nav a.is-active::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 5.2vw, 3.05rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .page-hero h2 {
    font-size: 3.1rem;
  }

  .hero {
    --hero-media-width: clamp(1180px, 142vw, 1440px);
    --hero-media-y: 52%;
    --hero-media-opacity: .24;
    --hero-edge-mask: radial-gradient(ellipse at center, #000 0 44%, rgba(0, 0, 0, .72) 58%, rgba(0, 0, 0, .26) 76%, transparent 100%);
  }

  .page-hero {
    --page-hero-media-width: clamp(960px, 128vw, 1180px);
    --page-hero-media-y: 52%;
    --page-hero-media-opacity: .26;
    --page-hero-edge-mask: radial-gradient(ellipse at center, #000 0 44%, rgba(0, 0, 0, .72) 58%, rgba(0, 0, 0, .26) 76%, transparent 100%);
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
    align-content: initial;
    gap: 0;
    padding-block: 26px 0;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__copy h1,
  .hero__copy .lead,
  .hero__copy .button-row {
    max-width: 720px;
  }

  .hero-proof-row {
    display: flex;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    gap: 12px;
    margin-top: 16px;
  }

  .hero-proof-row .inclusive-note {
    flex: 1 1 100%;
    width: 100%;
    margin: 0;
    min-height: 54px;
  }

  .hero-proof-row .hero-card-stack {
    display: none;
    position: static;
    flex: 0 0 232px;
    align-self: stretch;
    justify-items: stretch;
    margin: 0;
  }

  .hero-proof-row .hero-rating {
    width: 100%;
    height: 100%;
    min-height: 58px;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    row-gap: 1px;
    align-items: center;
    padding: 10px 12px;
  }

  .hero-proof-row .google-mark {
    grid-row: 1 / 4;
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }

  .hero-proof-row .hero-rating strong {
    font-size: 1.1rem;
  }

  .hero-proof-row .stars {
    font-size: .82rem;
  }

  .hero-proof-row .hero-rating small {
    font-size: .76rem;
    line-height: 1.25;
  }

  .page-proof-row {
    max-width: 100%;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: clamp(148px, 20vw, 198px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
    justify-items: end;
    justify-content: end;
    margin-top: -176px;
    padding-right: clamp(0px, 7vw, 76px);
    pointer-events: auto;
  }

  .hero-mascot {
    position: static;
    width: clamp(390px, 58vw, 555px);
    max-width: 100%;
    justify-self: end;
    margin-bottom: -88px;
    margin-right: clamp(-150px, -12vw, -82px);
  }

  .hero-rating {
    width: 206px;
    padding: 14px;
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .service-detail-grid,
  .process-grid,
  .values-grid,
  .reviews-layout,
  .contact-grid,
  .content-grid,
  .about-layout,
  .story-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 18px;
  }

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

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

  .service-detail--featured {
    grid-column: auto;
  }

  .score-panel {
    justify-self: start;
  }

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

  .reviews-panel-head h2 {
    font-size: 2rem;
  }

  .contact-form-panel {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: minmax(230px, 1.15fr) minmax(170px, .8fr) minmax(220px, .95fr);
    gap: 24px;
  }

  .footer-brand {
    gap: 14px;
  }

  .footer-brand img {
    width: 76px;
    height: 76px;
  }

  .footer-brand h2 {
    font-size: 1.34rem;
  }

  .footer-intro > p {
    font-size: .94rem;
    line-height: 1.58;
  }
}

@media (max-width: 720px) {
  html {
    scroll-behavior: auto;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand__mascot {
    width: 56px;
    height: 56px;
  }

  .brand__mascot img {
    width: 138px;
    top: -12px;
  }

  .brand__text strong {
    font-size: 1.08rem;
  }

  .brand__text span {
    font-size: .9rem;
  }

  .phone-chip {
    width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
  }

  .phone-chip strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(2.35rem, 10.4vw, 2.75rem);
  }

  h2,
  .page-hero h2,
  .legal-container > h2 {
    font-size: 2.15rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .lead,
  .page-hero p {
    font-size: 1rem;
  }

  .hero {
    --hero-media-width: min(150vw, 720px);
    --hero-media-y: 100%;
    --hero-media-opacity: .18;
    --hero-edge-mask: radial-gradient(ellipse at center, #000 0 42%, rgba(0, 0, 0, .68) 58%, rgba(0, 0, 0, .24) 76%, transparent 100%);
    background:
      linear-gradient(180deg, rgba(5, 14, 26, .98) 0%, rgba(7, 21, 41, .94) 48%, rgba(7, 21, 41, .88) 100%),
      linear-gradient(135deg, #050d18, var(--navy) 58%, #0f3657);
  }

  .hero::before {
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
    background-position: center bottom;
  }

  .page-hero {
    --page-hero-media-width: min(150vw, 720px);
    --page-hero-media-y: 58%;
    --page-hero-media-opacity: .18;
    --page-hero-edge-mask: radial-gradient(ellipse at center, #000 0 42%, rgba(0, 0, 0, .68) 58%, rgba(0, 0, 0, .24) 76%, transparent 100%);
  }

  .page-hero--reviews {
    --page-hero-media-offset-y: 0px;
  }

  .hero__grid {
    gap: 0;
    padding-block: 38px 10px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: end;
    justify-items: center;
    justify-content: center;
    min-height: 190px;
    margin-top: 12px;
    padding-right: 0;
  }

  .hero-mascot {
    position: static;
    width: clamp(150px, 46vw, 210px);
    max-width: 100%;
    margin-bottom: -18px;
    margin-right: 0;
    justify-self: center;
  }

  .hero-card-stack {
    position: static;
    justify-items: start;
    margin-bottom: 0;
  }

  .hero-rating {
    display: none;
  }

  .button-row,
  .button-row .btn {
    width: 100%;
  }

  .button-row {
    gap: 10px;
  }

  .hero-action-block,
  .hero-action-block > .hero-proof-row {
    width: 100%;
  }

  .hero-action-block {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .hero-action-block > .button-row {
    display: flex;
  }

  .hero-proof-row {
    display: block;
    width: 100%;
    margin-top: 12px;
  }

  .inclusive-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    justify-content: start;
    align-items: center;
    gap: 11px;
    margin: 0 auto;
    padding: 12px 14px;
    border-color: rgba(255, 255, 255, .42);
    border-radius: 8px;
    color: #dcecff;
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    text-align: left;
    font-size: .95rem;
    line-height: 1.35;
    backdrop-filter: none;
  }

  .inclusive-note .rainbow-heart {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .inclusive-note .rainbow-heart::before {
    width: 100%;
    height: 100%;
  }

  .inclusive-note > span:last-child {
    display: grid;
    gap: 2px;
  }

  .inclusive-note strong {
    display: block;
    font-size: 1rem;
    line-height: 1.15;
  }

  .hero-proof-row .inclusive-note {
    min-height: 0;
  }

  .hero-proof-row .hero-card-stack {
    display: none;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 10px;
    background: #fff;
  }

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

  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 58px;
  }

  .section-head {
    display: grid;
    gap: 12px;
  }

  .service-card,
  .service-detail,
  .process-card,
  .values-grid article,
  .content-panel,
  .welcome-panel,
  .contact-panel,
  .contact-form-panel,
  .legal-box,
  .reviews-intro,
  .reviews-panel,
  .cta-panel,
  .story-panel {
    padding: 22px;
  }

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

  .about-section {
    background: #fff;
  }

  .about-layout {
    gap: 14px;
  }

  .about-story,
  .about-welcome {
    padding: 24px;
  }

  .about-welcome h2 {
    gap: 8px;
    font-size: clamp(1.68rem, 7.8vw, 2.05rem);
  }

  .about-story::after {
    width: 170px;
    height: 170px;
    inset: auto -70px -90px auto;
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-signals {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .about-signals span {
    min-height: 0;
    padding: 11px 13px;
  }

  .values-grid--about {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .values-grid--about article {
    padding: 22px;
  }

  .service-grid--compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-grid--compact .service-card {
    padding: 14px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail ul {
    display: grid;
  }

  .mascot-note {
    min-height: 310px;
    padding: 24px;
  }

  .mascot-note img {
    width: 240px;
    right: -58px;
    bottom: -54px;
  }

  .page-hero__grid {
    min-height: auto;
    padding-block: 44px 34px;
  }

  .page-hero__grid > img {
    width: min(250px, 72%);
  }

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

  .reviews-panel {
    gap: 16px;
  }

  .reviews-panel-head {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "action";
    gap: 14px;
    align-items: start;
    justify-items: stretch;
    padding-bottom: 16px;
    text-align: left;
  }

  .reviews-panel-head .eyebrow {
    justify-self: start;
  }

  .reviews-panel-head h2 {
    position: static;
    width: auto;
    max-width: 100%;
    justify-self: center;
    transform: none;
    text-align: center;
    font-size: 1.8rem;
  }

  .reviews-panel-head .btn {
    display: flex;
    width: min(100%, 222px);
    justify-self: center;
    margin-inline: auto;
    position: static;
    transform: none;
  }

  .reviews-panel-head .btn:hover {
    transform: translateY(-2px);
  }

  .reviews-summary {
    display: grid;
    justify-items: center;
    gap: 11px;
    padding: 22px 18px;
    text-align: center;
    background: #fff;
    border-color: #d8e6f5;
    box-shadow: 0 16px 34px rgba(7, 21, 41, .08);
  }

  .reviews-summary .google-mark {
    width: 42px;
    height: 42px;
  }

  .reviews-summary .google-mark::before {
    width: 25px;
    height: 25px;
  }

  .reviews-summary strong {
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
  }

  .reviews-summary .stars {
    display: inline-flex;
    justify-content: center;
    min-width: 104px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(247, 170, 0, .12);
    font-size: .98rem;
    line-height: 1;
  }

  .reviews-summary small {
    max-width: 25ch;
    color: var(--muted);
    font-weight: 850;
    line-height: 1.45;
  }

  .review-card header,
  .contact-list a,
  .form-grid,
  .hours div {
    display: grid;
  }

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

  .contact-list strong,
  .hours dd {
    text-align: left;
  }

  .map-panel,
  .map-panel iframe,
  .map-placeholder {
    min-height: 360px;
  }

  .map-placeholder {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .map-placeholder img {
    width: 160px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .site-footer {
    padding-block: 42px 22px;
  }

  .footer-intro,
  .footer-section {
    padding-block: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    justify-items: center;
  }

  .footer-intro {
    padding-top: 0;
  }

  .footer-section:last-of-type {
    border-bottom: 0;
  }

  .footer-brand {
    align-items: center;
    gap: 12px;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .footer-brand img {
    width: 64px;
    height: 64px;
  }

  .footer-brand h2 {
    font-size: 1.24rem;
  }

  .footer-intro > p,
  .footer-section address,
  .footer-section p {
    font-size: .95rem;
    line-height: 1.65;
  }

  .footer-intro > p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .footer-links a {
    width: 100%;
  }

  .footer-hours div {
    grid-template-columns: 1fr;
    gap: 3px;
    justify-items: center;
  }

  .footer-hours dd {
    text-align: center;
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    justify-content: center;
    align-items: center;
    place-items: center;
    justify-items: center;
    margin-top: 18px;
    padding-top: 18px;
    font-size: .9rem;
    text-align: center;
  }

  .footer-bottom > span {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    justify-self: center;
    text-align: center;
  }

  .footer-bottom span span {
    display: inline;
    width: auto;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .hero-title-line--wide {
    white-space: normal;
  }

  .hero {
    --hero-media-width: 168vw;
    --hero-media-y: 100%;
    --hero-media-opacity: .16;
  }

  .page-hero {
    --page-hero-media-width: 168vw;
    --page-hero-media-y: 60%;
    --page-hero-media-opacity: .15;
  }

  .brand__mascot {
    width: 48px;
    height: 48px;
  }

  .brand__mascot img {
    width: 120px;
    top: -10px;
  }

  .brand__text strong {
    font-size: .98rem;
  }

  .brand__text span {
    font-size: .82rem;
  }

  .nav-actions {
    gap: 7px;
  }

  .phone-chip,
  .menu-toggle {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }

  h1 {
    font-size: clamp(2.05rem, 10.8vw, 2.35rem);
  }

  h2,
  .page-hero h2,
  .legal-container > h2 {
    font-size: 1.9rem;
  }

  .hero__visual {
    min-height: 164px;
  }

  .hero-mascot {
    width: clamp(138px, 48vw, 184px);
    margin-bottom: -16px;
  }

  .inclusive-note {
    width: 100%;
    gap: 10px;
    padding: 11px 12px;
    font-size: .88rem;
  }

  .inclusive-note .rainbow-heart {
    width: 38px;
    height: 38px;
  }

  .inclusive-note .rainbow-heart::before {
    width: 100%;
    height: 100%;
  }

  .inclusive-note strong {
    font-size: .96rem;
  }

  .site-footer {
    padding-block: 36px 20px;
  }

  .footer-brand img {
    width: 56px;
    height: 56px;
  }

  .footer-brand h2 {
    font-size: 1.1rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    font-size: .85rem;
  }
}

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

  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}
