:root {
  --hh-ink: #172424;
  --hh-ink-soft: #314141;
  --hh-teal: #009ca6;
  --hh-teal-dark: #007b83;
  --hh-yellow: #f0c531;
  --hh-mist: #edf3f2;
  --hh-line: #d5dfdd;
  --hh-white: #ffffff;
  --hh-muted: #637170;
  --hh-shadow: 0 18px 48px rgba(23, 36, 36, 0.12);
  --hh-shell: 1180px;
  --hh-header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--hh-white);
  color: var(--hh-ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.hh-nav-open,
body.hh-search-open { overflow: hidden; }

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

a { color: inherit; }

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

button { color: inherit; }

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

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

h1 { font-size: 64px; }
h2 { font-size: 44px; }
h3 { font-size: 22px; }

::selection {
  background: var(--hh-yellow);
  color: var(--hh-ink);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.hh-skip-link {
  background: var(--hh-yellow);
  color: var(--hh-ink);
  font-weight: 800;
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -100px;
  z-index: 99999;
}

.hh-skip-link:focus { top: 16px; }

.hh-shell {
  margin-inline: auto;
  max-width: var(--hh-shell);
  padding-inline: 28px;
  width: 100%;
}

.hh-section { padding-block: 104px; }

.hh-icon {
  display: inline-block;
  flex: 0 0 auto;
  height: 21px;
  vertical-align: middle;
  width: 21px;
}

.hh-kicker {
  align-items: center;
  color: var(--hh-teal-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hh-kicker::before {
  background: var(--hh-yellow);
  content: "";
  height: 4px;
  width: 32px;
}

.hh-kicker--light { color: var(--hh-white); }

.hh-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hh-button:hover { transform: translateY(-2px); }
.hh-button:focus-visible { outline: 3px solid var(--hh-yellow); outline-offset: 3px; }
.hh-button--primary { background: var(--hh-teal); color: var(--hh-white); }
.hh-button--primary:hover { background: var(--hh-teal-dark); }
.hh-button--yellow { background: var(--hh-yellow); color: var(--hh-ink); }
.hh-button--yellow:hover { background: #ffdb52; }
.hh-button--dark { background: var(--hh-ink); color: var(--hh-white); }
.hh-button--dark:hover { background: var(--hh-teal-dark); }
.hh-button--ghost-light { border-color: rgba(255, 255, 255, 0.58); color: var(--hh-white); }
.hh-button--ghost-light:hover { background: var(--hh-white); color: var(--hh-ink); }
.hh-button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hh-topbar {
  background: var(--hh-ink);
  color: var(--hh-white);
  font-size: 13px;
}

.hh-topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 40px;
}

.hh-topbar p,
.hh-topbar a {
  align-items: center;
  display: flex;
  gap: 7px;
  margin: 0;
}

.hh-topbar a { text-decoration: none; }
.hh-topbar a:hover { color: var(--hh-yellow); }
.hh-topbar .hh-icon { height: 15px; width: 15px; }
.hh-topbar__links { display: flex; gap: 24px; }

.hh-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  transition: box-shadow 180ms ease, border-color 180ms ease;
  z-index: 1000;
}

.admin-bar .hh-header { top: 32px; }
.hh-header.is-scrolled { border-color: var(--hh-line); box-shadow: 0 10px 30px rgba(23, 36, 36, 0.08); }

.hh-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: var(--hh-header-height);
}

.hh-header__actions { align-items: center; display: flex; gap: 9px; margin-left: 18px; }
.hh-search-toggle,
.hh-search-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--hh-line);
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}
.hh-search-toggle:hover,
.hh-search-toggle[aria-expanded="true"] { background: var(--hh-ink); border-color: var(--hh-ink); color: var(--hh-white); }
.hh-search-panel { background: var(--hh-ink); color: var(--hh-white); left: 0; position: absolute; right: 0; top: 100%; }
.hh-search-panel[hidden] { display: none; }
.hh-search-panel__inner { align-items: end; display: grid; gap: 20px; grid-template-columns: 1fr 46px; padding-block: 28px; }
.hh-search-panel form label { display: block; font-size: 12px; font-weight: 850; margin-bottom: 8px; text-transform: uppercase; }
.hh-search-panel form > div { display: grid; grid-template-columns: 1fr auto; }
.hh-search-panel input { background: var(--hh-white); border: 0; border-radius: 3px 0 0 3px; color: var(--hh-ink); min-height: 52px; padding: 12px 15px; width: 100%; }
.hh-search-panel form button { align-items: center; background: var(--hh-yellow); border: 0; border-radius: 0 3px 3px 0; cursor: pointer; display: inline-flex; font-weight: 900; gap: 8px; padding-inline: 20px; }
.hh-search-close { border-color: #536362; color: var(--hh-white); }

.hh-brand,
.custom-logo-link {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.custom-logo { max-height: 62px; width: auto; }

.hh-brand { gap: 11px; }

.hh-brand__mark {
  align-items: center;
  background: var(--hh-teal);
  color: var(--hh-white);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.hh-brand__mark svg {
  fill: none;
  height: 39px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  width: 39px;
}

.hh-brand__mark .hh-brand__spark { stroke: var(--hh-yellow); stroke-width: 3; }

.hh-brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.hh-brand__text strong { font-size: 20px; font-weight: 900; }
.hh-brand__text small { color: var(--hh-teal-dark); font-size: 11px; font-weight: 800; margin-top: 5px; text-transform: uppercase; }

.hh-nav {
  align-items: center;
  display: flex;
  gap: 25px;
}

.hh-menu {
  align-items: center;
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hh-menu a {
  font-size: 14px;
  font-weight: 750;
  position: relative;
  text-decoration: none;
}

.hh-menu a::after {
  background: var(--hh-teal);
  bottom: -9px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.hh-menu a:hover::after,
.hh-menu .current-menu-item > a::after { transform: scaleX(1); }

.hh-nav-toggle {
  align-items: center;
  background: var(--hh-ink);
  border: 0;
  border-radius: 4px;
  color: var(--hh-white);
  display: none;
  height: 46px;
  justify-content: center;
  padding: 0;
  width: 46px;
}

.hh-nav-toggle__close { display: none; }
.hh-nav-toggle[aria-expanded="true"] .hh-nav-toggle__open { display: none; }
.hh-nav-toggle[aria-expanded="true"] .hh-nav-toggle__close { display: inline; }

.hh-hero {
  background: var(--hh-ink);
  color: var(--hh-white);
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hh-hero::after {
  border: 26px solid rgba(255, 255, 255, 0.055);
  border-bottom: 0;
  content: "";
  height: 360px;
  position: absolute;
  right: -40px;
  top: 128px;
  transform: rotate(45deg);
  width: 360px;
}

.hh-hero__media {
  background-color: #234344;
  background-image: var(--hh-hero-image);
  background-position: center;
  background-size: cover;
  bottom: 0;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  left: 51%;
  opacity: 0.96;
  position: absolute;
  right: 0;
  top: 0;
}

.hh-hero__media::after {
  background: rgba(10, 28, 28, 0.48);
  content: "";
  inset: 0;
  position: absolute;
}

.hh-hero__monogram {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 8%;
  top: 44%;
  transform: translateY(-50%);
  z-index: 1;
}

.hh-hero__monogram strong {
  color: rgba(255, 255, 255, 0.12);
  font-size: 210px;
  font-weight: 950;
  line-height: 0.78;
}

.hh-hero__monogram span {
  border-top: 5px solid var(--hh-yellow);
  color: var(--hh-white);
  font-size: 18px;
  font-weight: 900;
  margin-top: 28px;
  padding-top: 12px;
  text-transform: uppercase;
}

.hh-hero.has-image .hh-hero__monogram { display: none; }

.hh-hero__inner {
  align-items: center;
  display: flex;
  min-height: 560px;
  position: relative;
  z-index: 2;
}

.hh-hero__content { max-width: 690px; padding-block: 72px; }
.hh-hero__content h1 { font-size: 70px; margin-bottom: 24px; max-width: 760px; }
.hh-hero__content > p { color: #d8e2e0; font-size: 20px; margin-bottom: 34px; max-width: 610px; }

.hh-hero__stamp {
  align-items: center;
  background: var(--hh-yellow);
  bottom: 64px;
  color: var(--hh-ink);
  display: flex;
  flex-direction: column;
  height: 158px;
  justify-content: center;
  position: absolute;
  right: 28px;
  transform: rotate(-3deg);
  width: 158px;
}

.hh-hero__stamp span,
.hh-hero__stamp small { font-size: 12px; font-weight: 850; text-transform: uppercase; }
.hh-hero__stamp strong { font-size: 21px; line-height: 1.1; margin-block: 6px; }

.hh-proofbar {
  background: var(--hh-white);
  bottom: 0;
  color: var(--hh-ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 50%;
  padding-block: 25px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.hh-proofbar > div {
  align-items: center;
  display: flex;
  gap: 14px;
  padding-inline: 28px;
}

.hh-proofbar > div + div { border-left: 1px solid var(--hh-line); }
.hh-proofbar .hh-icon { color: var(--hh-teal); height: 28px; width: 28px; }
.hh-proofbar span { display: flex; flex-direction: column; }
.hh-proofbar strong { font-size: 15px; }
.hh-proofbar small { color: var(--hh-muted); font-size: 12px; }

.hh-section-head {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: 1.1fr 0.9fr;
  margin-bottom: 54px;
}

.hh-section-head h2 { margin-bottom: 0; }
.hh-section-head > p { color: var(--hh-muted); font-size: 18px; margin-bottom: 4px; max-width: 520px; }
.hh-section-head--compact { grid-template-columns: 1fr; }

.hh-services { background: var(--hh-white); }
.hh-service-grid { display: grid; grid-template-columns: repeat(5, 1fr); }

.hh-service-card {
  border: 1px solid var(--hh-line);
  color: var(--hh-ink);
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 28px 24px;
  position: relative;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hh-service-card:not(:nth-child(5n+1)) { border-left: 0; }
.hh-service-card:nth-child(n+6) { border-top: 0; }
.hh-service-card:hover { background: var(--hh-ink); color: var(--hh-white); transform: translateY(-4px); z-index: 2; }
.hh-service-card__number { color: var(--hh-muted); font-size: 12px; font-weight: 900; position: absolute; right: 25px; top: 22px; }
.hh-service-card__icon { align-items: center; background: var(--hh-mist); color: var(--hh-teal-dark); display: flex; height: 55px; justify-content: center; margin-bottom: 30px; width: 55px; }
.hh-service-card__icon .hh-icon { height: 27px; width: 27px; }
.hh-service-card h2,
.hh-service-card h3 { font-size: 20px; margin-bottom: 14px; overflow-wrap: anywhere; }
.hh-service-card p { color: var(--hh-muted); font-size: 15px; margin-bottom: 24px; }
.hh-service-card:hover p,
.hh-service-card:hover .hh-service-card__number { color: #c9d5d3; }
.hh-text-link { align-items: center; color: var(--hh-teal-dark); display: inline-flex; font-size: 14px; font-weight: 850; gap: 8px; margin-top: auto; }
.hh-text-link .hh-icon { height: 17px; width: 17px; }
.hh-service-card:hover .hh-text-link { color: var(--hh-yellow); }

.hh-service-grid--media { gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hh-service-card--media {
  border: 0 !important;
  box-shadow: 0 13px 36px rgba(23, 36, 36, 0.1);
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.1fr);
  min-height: 270px;
  padding: 0;
  transform: none;
}
.hh-service-card--media:hover { background: var(--hh-white); color: var(--hh-ink); transform: translateY(-5px); }
.hh-service-card__visual {
  align-items: center;
  background-color: var(--hh-teal-dark);
  background-image: linear-gradient(145deg, rgba(0, 0, 0, 0.06), rgba(23, 36, 36, 0.52)), var(--hh-service-image);
  background-position: center;
  background-size: cover;
  color: var(--hh-white);
  display: flex;
  justify-content: center;
  min-height: 270px;
  overflow: hidden;
  position: relative;
}
.hh-service-card__visual::after { border: 14px solid rgba(255, 255, 255, 0.1); content: ""; height: 150px; position: absolute; right: -55px; top: -35px; transform: rotate(45deg); width: 150px; }
.hh-service-card__visual > small { bottom: 17px; color: rgba(255, 255, 255, 0.82); font-size: 12px; font-weight: 900; left: 18px; position: absolute; }
.hh-service-card--media .hh-service-card__icon { background: rgba(255, 255, 255, 0.14); color: var(--hh-yellow); height: 76px; margin: 0; width: 76px; }
.hh-service-card--media .hh-service-card__icon .hh-icon { height: 37px; width: 37px; }
.hh-service-card--media.has-image .hh-service-card__icon { backdrop-filter: blur(6px); background: rgba(10, 28, 28, 0.58); }
.hh-service-card__body { display: flex; flex-direction: column; padding: 30px 28px; }
.hh-service-card--media h2,
.hh-service-card--media h3 { font-size: 25px; }
.hh-service-card--media p { margin-bottom: 22px; }
.hh-service-card--media:hover p { color: var(--hh-muted); }
.hh-service-card--media:hover .hh-text-link { color: var(--hh-teal-dark); }
.hh-service-card--gartenbau .hh-service-card__visual { background-color: #3c6950; }
.hh-service-card--dachrinnenreinigung .hh-service-card__visual { background-color: #315467; }
.hh-service-card--boden-laminat .hh-service-card__visual { background-color: #76684c; }
.hh-service-card--trockenbau .hh-service-card__visual,
.hh-service-card--abbrucharbeiten .hh-service-card__visual { background-color: #545d5b; }
.hh-section-action { display: flex; justify-content: center; margin-top: 42px; }

.hh-trust { background: var(--hh-ink); color: var(--hh-white); }
.hh-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hh-trust__grid > div { display: flex; flex-direction: column; min-height: 132px; justify-content: center; padding: 28px 32px; }
.hh-trust__grid > div + div { border-left: 1px solid #3a4a49; }
.hh-trust__grid strong { color: var(--hh-yellow); font-size: 24px; line-height: 1.1; }
.hh-trust__grid span { color: #c4cfcd; font-size: 13px; font-weight: 700; margin-top: 8px; }

.hh-split { background: var(--hh-mist); }
.hh-split__grid { align-items: stretch; display: grid; gap: 70px; grid-template-columns: 0.9fr 1.1fr; }

.hh-split__visual {
  background: var(--hh-teal-dark);
  color: var(--hh-white);
  min-height: 490px;
  overflow: hidden;
  padding: 45px;
  position: relative;
}

.hh-split__visual::after {
  border: 22px solid rgba(255, 255, 255, 0.14);
  content: "";
  height: 300px;
  position: absolute;
  right: -90px;
  top: 82px;
  transform: rotate(45deg);
  width: 300px;
}

.hh-split__visual > p { bottom: 28px; color: #d3e7e5; font-size: 13px; left: 36px; margin: 0; max-width: 310px; position: absolute; z-index: 2; }
.hh-workmark { display: flex; flex-direction: column; position: relative; z-index: 2; }
.hh-workmark .hh-icon { color: var(--hh-yellow); height: 74px; margin-bottom: 35px; width: 74px; }
.hh-workmark span { font-size: 28px; font-weight: 500; }
.hh-workmark strong { font-size: 50px; line-height: 1; }
.hh-worktags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 52px; max-width: 330px; position: relative; z-index: 2; }
.hh-worktags span { border: 1px solid rgba(255, 255, 255, 0.42); font-size: 12px; font-weight: 800; padding: 8px 11px; }

.hh-split__content { align-self: center; padding-block: 34px; }
.hh-split__content h2 { margin-bottom: 27px; }
.hh-lead { color: var(--hh-ink-soft); font-size: 20px; margin-bottom: 30px; }
.hh-checklist { display: grid; gap: 14px; list-style: none; margin: 0 0 34px; padding: 0; }
.hh-checklist li { align-items: center; display: flex; font-weight: 700; gap: 12px; }
.hh-checklist .hh-icon { color: var(--hh-teal-dark); }

.hh-audiences { background: var(--hh-white); }
.hh-audience-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hh-audience-card { border: 1px solid var(--hh-line); border-top: 6px solid var(--hh-teal); padding: 36px 32px; }
.hh-audience-card:nth-child(2) { border-top-color: var(--hh-yellow); }
.hh-audience-card:nth-child(3) { border-top-color: var(--hh-ink); }
.hh-audience-card > span { align-items: center; background: var(--hh-mist); color: var(--hh-teal-dark); display: flex; height: 58px; justify-content: center; margin-bottom: 28px; width: 58px; }
.hh-audience-card > span .hh-icon { height: 29px; width: 29px; }
.hh-audience-card h3 { font-size: 26px; margin-bottom: 15px; }
.hh-audience-card p { color: var(--hh-muted); font-size: 15px; }
.hh-audience-card ul { border-top: 1px solid var(--hh-line); display: grid; gap: 10px; list-style: none; margin: 24px 0 0; padding: 22px 0 0; }
.hh-audience-card li { align-items: center; display: flex; font-size: 13px; font-weight: 750; gap: 9px; }
.hh-audience-card li .hh-icon { color: var(--hh-teal-dark); height: 17px; width: 17px; }

.hh-process { background: var(--hh-white); }
.hh-process__grid { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; margin: 0; padding: 0; }
.hh-process__grid li { border-top: 5px solid var(--hh-ink); min-height: 240px; padding: 28px 28px 20px 0; position: relative; }
.hh-process__grid li + li { padding-left: 28px; }
.hh-process__grid li:nth-child(2) { border-color: var(--hh-teal); }
.hh-process__grid li:nth-child(3) { border-color: var(--hh-yellow); }
.hh-process__grid li:nth-child(4) { border-color: var(--hh-ink); }
.hh-process__grid span { color: var(--hh-teal-dark); font-size: 13px; font-weight: 900; }
.hh-process__grid h3 { margin: 42px 0 12px; }
.hh-process__grid p { color: var(--hh-muted); font-size: 15px; }

.hh-area { background: var(--hh-ink); color: var(--hh-white); overflow: hidden; position: relative; }
.hh-area::after { border: 24px solid rgba(255, 255, 255, 0.05); content: ""; height: 390px; position: absolute; right: -120px; top: -110px; transform: rotate(45deg); width: 390px; }
.hh-area__grid { align-items: center; display: grid; gap: 70px; grid-template-columns: 0.9fr 1.1fr; position: relative; z-index: 2; }
.hh-area__copy h2 { margin-bottom: 25px; }
.hh-area__copy p { color: #cbd6d4; font-size: 18px; margin-bottom: 30px; }
.hh-location-list { display: flex; flex-wrap: wrap; gap: 9px; }
.hh-location-list a { align-items: center; border: 1px solid #50605f; display: inline-flex; font-size: 13px; font-weight: 750; gap: 7px; padding: 10px 13px; text-decoration: none; }
.hh-location-list a:hover { background: var(--hh-yellow); border-color: var(--hh-yellow); color: var(--hh-ink); }
.hh-location-list a:hover .hh-icon { color: var(--hh-ink); }
.hh-location-list .hh-icon { color: var(--hh-yellow); height: 15px; width: 15px; }

.hh-faq { background: var(--hh-white); }
.hh-faq__grid { align-items: start; display: grid; gap: 75px; grid-template-columns: 0.7fr 1.3fr; }
.hh-faq__intro { position: sticky; top: 125px; }
.admin-bar .hh-faq__intro { top: 157px; }
.hh-faq__intro h2 { margin-bottom: 22px; }
.hh-faq__intro p { color: var(--hh-muted); margin-bottom: 28px; }
.hh-faq__list { border-top: 1px solid var(--hh-line); }
.hh-faq details,
.hh-detail-faq details { border-bottom: 1px solid var(--hh-line); }
.hh-faq summary,
.hh-detail-faq summary { align-items: center; cursor: pointer; display: flex; font-size: 18px; font-weight: 850; gap: 20px; justify-content: space-between; list-style: none; padding: 23px 0; }
.hh-faq summary::-webkit-details-marker,
.hh-detail-faq summary::-webkit-details-marker { display: none; }
.hh-faq summary span,
.hh-detail-faq summary span { color: var(--hh-teal-dark); font-size: 25px; font-weight: 400; transition: transform 160ms ease; }
.hh-faq details[open] summary span,
.hh-detail-faq details[open] summary span { transform: rotate(45deg); }
.hh-faq details p,
.hh-detail-faq details p { color: var(--hh-muted); font-size: 15px; margin: -8px 0 22px; max-width: 720px; }

.hh-contact { background: var(--hh-mist); }
.hh-cta {
  align-items: center;
  background: var(--hh-teal);
  color: var(--hh-white);
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto;
  padding: 52px 58px;
  position: relative;
}

.hh-cta::after { background: var(--hh-yellow); bottom: 0; content: ""; height: 9px; left: 0; position: absolute; width: 38%; }
.hh-cta h2 { font-size: 38px; margin-bottom: 12px; }
.hh-cta p { color: #d5eceb; margin-bottom: 0; }
.hh-cta__actions { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }
.hh-cta--compact { padding-block: 42px; }

.hh-contact-grid { align-items: start; display: grid; gap: 70px; grid-template-columns: 0.78fr 1.22fr; }
.hh-contact-copy { padding-top: 20px; }
.hh-contact-copy h2 { font-size: 46px; margin-bottom: 22px; }
.hh-contact-copy > p { color: var(--hh-muted); font-size: 18px; margin-bottom: 38px; }
.hh-contact-direct { border-top: 1px solid var(--hh-line); display: grid; }
.hh-contact-direct a { align-items: center; border-bottom: 1px solid var(--hh-line); display: flex; gap: 15px; padding-block: 18px; text-decoration: none; }
.hh-contact-direct .hh-icon { color: var(--hh-teal-dark); height: 24px; width: 24px; }
.hh-contact-direct span { display: flex; flex-direction: column; font-weight: 900; overflow-wrap: anywhere; }
.hh-contact-direct small { color: var(--hh-muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }

.hh-form-wrap { background: var(--hh-white); border-top: 7px solid var(--hh-yellow); box-shadow: var(--hh-shadow); padding: 38px; }
.hh-contact-form { display: grid; gap: 19px; }
.hh-form-row { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hh-contact-form label { display: grid; gap: 7px; }
.hh-contact-form label > span:first-child { font-size: 13px; font-weight: 850; }
.hh-contact-form input,
.hh-contact-form select,
.hh-contact-form textarea { background: #f8faf9; border: 1px solid #bdc9c7; border-radius: 3px; color: var(--hh-ink); min-height: 50px; padding: 11px 13px; width: 100%; }
.hh-contact-form textarea { min-height: 135px; resize: vertical; }
.hh-contact-form input:focus,
.hh-contact-form select:focus,
.hh-contact-form textarea:focus { border-color: var(--hh-teal-dark); box-shadow: 0 0 0 3px rgba(0, 156, 166, 0.14); outline: none; }
.hh-form-consent { align-items: flex-start; display: flex !important; gap: 11px !important; }
.hh-form-consent input { flex: 0 0 auto; height: 18px; margin-top: 3px; min-height: 0; width: 18px; }
.hh-form-consent span { color: var(--hh-muted); font-size: 12px !important; font-weight: 500 !important; line-height: 1.5; }
.hh-form-consent a { color: var(--hh-teal-dark); font-weight: 750; }
.hh-form-help { color: var(--hh-muted); font-size: 12px; margin: -8px 0 0; }
.hh-file-field > span:first-child small { color: var(--hh-teal-dark); font-size: 11px; margin-left: 5px; text-transform: uppercase; }
.hh-file-field > small { color: var(--hh-muted); font-size: 11px; }
.hh-file-control { align-items: center; background: #f8faf9; border: 1px dashed #93a4a2; cursor: pointer; display: grid; gap: 11px; grid-template-columns: 24px auto minmax(0, 1fr); min-height: 60px; padding: 12px 14px; position: relative; }
.hh-file-control .hh-icon { color: var(--hh-teal-dark); }
.hh-file-control strong { font-size: 13px; }
.hh-file-control em { color: var(--hh-muted); font-size: 12px; font-style: normal; overflow: hidden; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.hh-file-control input { cursor: pointer; inset: 0; min-height: 0; opacity: 0; padding: 0; position: absolute; }
.hh-contact-form .hh-button { border: 0; cursor: pointer; justify-self: start; }
.hh-form-honeypot { height: 1px; left: -10000px; overflow: hidden; position: absolute; top: auto; width: 1px; }
.hh-form-notice { border-left: 5px solid var(--hh-teal); font-size: 14px; font-weight: 750; margin-bottom: 24px; padding: 14px 16px; }
.hh-form-notice--success { background: #e5f5ed; color: #175837; }
.hh-form-notice--error { background: #fff0ed; border-color: #c44a39; color: #7d271c; }

.hh-footer { background: #101b1b; color: var(--hh-white); }
.hh-footer__grid { display: grid; gap: 70px; grid-template-columns: 1.25fr 1fr 0.7fr; padding-block: 72px; }
.hh-footer .hh-brand { color: var(--hh-white); }
.hh-footer .hh-brand__text small { color: #6fd3d8; }
.hh-footer__brand > p { color: #aab9b7; margin: 25px 0 0; max-width: 410px; }
.hh-footer h2 { font-size: 16px; margin-bottom: 22px; text-transform: uppercase; }
.hh-footer__list,
.hh-footer__menu { display: grid; gap: 13px; list-style: none; margin: 0; padding: 0; }
.hh-footer__list li,
.hh-footer__list a { align-items: flex-start; display: flex; gap: 10px; }
.hh-footer__list a,
.hh-footer__menu a { color: #d5dfdd; text-decoration: none; }
.hh-footer__list a:hover,
.hh-footer__menu a:hover { color: var(--hh-yellow); }
.hh-footer__list .hh-icon { color: var(--hh-teal); height: 18px; margin-top: 4px; width: 18px; }
.hh-footer__bottom { border-top: 1px solid #314040; color: #93a3a1; font-size: 12px; }
.hh-footer__bottom .hh-shell { align-items: center; display: flex; justify-content: space-between; min-height: 64px; }
.hh-footer__bottom p { margin: 0; }
.hh-footer__bottom div div { display: flex; gap: 22px; }
.hh-footer__bottom a { text-decoration: none; }

.hh-mobile-actions { display: none; }

.hh-page-hero,
.hh-detail-hero,
.hh-location-hero,
.hh-index-hero {
  background: var(--hh-ink);
  color: var(--hh-white);
  overflow: hidden;
  position: relative;
}

.hh-page-hero::after,
.hh-detail-hero::after,
.hh-location-hero::after,
.hh-index-hero::after { border: 22px solid rgba(255,255,255,0.055); content: ""; height: 300px; position: absolute; right: -80px; top: -130px; transform: rotate(45deg); width: 300px; }
.hh-page-hero .hh-shell { padding-block: 86px; position: relative; z-index: 2; }
.hh-page-hero h1 { font-size: 58px; margin-bottom: 0; max-width: 920px; }

.hh-content { margin-inline: auto; max-width: 790px; }
.hh-content--wide { margin: 0; max-width: 820px; }
.hh-content > *:first-child { margin-top: 0; }
.hh-content > *:last-child { margin-bottom: 0; }
.hh-content h2 { font-size: 36px; margin: 52px 0 20px; }
.hh-content h3 { font-size: 25px; margin: 36px 0 14px; }
.hh-content p,
.hh-content li { color: var(--hh-ink-soft); }
.hh-content a { color: var(--hh-teal-dark); font-weight: 700; }
.hh-content ul,
.hh-content ol { padding-left: 24px; }
.hh-content li + li { margin-top: 8px; }
.hh-featured-image { margin: 0 0 42px; }
.hh-featured-image img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

.hh-detail-hero__grid,
.hh-location-hero__grid { align-items: center; display: grid; gap: 60px; grid-template-columns: 1fr 310px; min-height: 490px; padding-block: 70px; position: relative; z-index: 2; }
.hh-detail-hero h1,
.hh-location-hero h1 { font-size: 60px; margin-bottom: 22px; }
.hh-detail-hero p,
.hh-location-hero p { color: #cbd7d5; font-size: 19px; margin-bottom: 30px; max-width: 690px; }
.hh-detail-hero__mark,
.hh-radius-badge { align-items: center; border: 1px solid #5c6c6a; display: flex; flex-direction: column; min-height: 280px; justify-content: center; padding: 30px; text-align: center; }
.hh-detail-hero__mark .hh-icon,
.hh-radius-badge .hh-icon { color: var(--hh-yellow); height: 52px; margin-bottom: 25px; width: 52px; }
.hh-detail-hero__mark span,
.hh-radius-badge span { font-size: 14px; text-transform: uppercase; }
.hh-detail-hero__mark strong,
.hh-radius-badge strong { font-size: 29px; line-height: 1.1; margin-block: 5px; }
.hh-detail-hero__mark small,
.hh-radius-badge small { color: #adbcba; }

.hh-detail-hero__photo { align-items: center; background: var(--hh-teal-dark); color: var(--hh-white); display: flex; flex-direction: column; justify-content: center; min-height: 310px; overflow: hidden; position: relative; text-align: center; }
.hh-detail-hero__photo::after { background: linear-gradient(180deg, transparent, rgba(13, 28, 28, 0.58)); content: ""; inset: 0; position: absolute; }
.hh-detail-hero__photo img { height: 310px; object-fit: cover; width: 100%; }
.hh-detail-hero__photo > .hh-icon { color: var(--hh-yellow); height: 75px; position: relative; width: 75px; z-index: 1; }
.hh-detail-hero__photo > span { bottom: 24px; font-size: 16px; font-weight: 900; left: 20px; position: absolute; right: 20px; z-index: 1; }
.hh-article-lead { border-left: 6px solid var(--hh-yellow); font-size: 21px; font-weight: 650; padding-left: 22px; }
.hh-scope-list { display: grid; gap: 0; list-style: none; margin: 28px 0 50px !important; padding: 0 !important; }
.hh-scope-list li { align-items: center; border-bottom: 1px solid var(--hh-line); display: flex; gap: 13px; margin: 0 !important; padding: 14px 0; }
.hh-scope-list .hh-icon { color: var(--hh-teal-dark); }
.hh-inline-process { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); margin: 28px 0 50px; }
.hh-inline-process > div { background: var(--hh-mist); display: flex; flex-direction: column; min-height: 150px; padding: 22px; }
.hh-inline-process strong { color: var(--hh-teal-dark); font-size: 13px; }
.hh-inline-process span { font-size: 14px; font-weight: 750; margin-top: auto; }
.hh-editor-addition { border-top: 1px solid var(--hh-line); margin-top: 50px; padding-top: 10px; }
.hh-detail-faq { margin-top: 58px; }
.hh-detail-faq > h2 { margin-bottom: 20px; }
.hh-location-focus { background: var(--hh-mist); margin: 35px 0 48px; padding: 28px 30px; }
.hh-location-focus h2 { font-size: 27px; margin: 0 0 18px; }
.hh-location-focus ul { display: grid; gap: 11px; list-style: none; margin: 0; padding: 0; }
.hh-location-focus li { align-items: center; display: flex; font-weight: 750; gap: 10px; margin: 0 !important; }
.hh-location-focus .hh-icon { color: var(--hh-teal-dark); }

.hh-index-hero .hh-shell { min-height: 410px; padding-block: 85px; position: relative; z-index: 2; }
.hh-index-hero h1 { font-size: 62px; margin-bottom: 23px; max-width: 850px; }
.hh-index-hero p { color: #cbd7d5; font-size: 19px; max-width: 720px; }
.hh-index-hero--locations { background: var(--hh-teal-dark); }
.hh-index-hero--search .hh-shell { min-height: 320px; }
.hh-location-card-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hh-location-card-grid > a { align-items: center; border: 1px solid var(--hh-line); display: grid; gap: 16px; grid-template-columns: 28px minmax(0, 1fr) 22px; min-height: 118px; padding: 21px 23px; text-decoration: none; }
.hh-location-card-grid > a:hover { background: var(--hh-ink); color: var(--hh-white); }
.hh-location-card-grid > a > .hh-icon:first-child { color: var(--hh-teal-dark); }
.hh-location-card-grid > a:hover > .hh-icon:first-child { color: var(--hh-yellow); }
.hh-location-card-grid span { display: flex; flex-direction: column; min-width: 0; }
.hh-location-card-grid strong { font-size: 17px; }
.hh-location-card-grid small { color: var(--hh-muted); display: -webkit-box; font-size: 12px; line-height: 1.45; margin-top: 5px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hh-location-card-grid > a:hover small { color: #bdcbc9; }
.hh-search-results { display: grid; gap: 15px; }
.hh-search-result { border: 1px solid var(--hh-line); padding: 28px 30px; }
.hh-search-result > span { color: var(--hh-teal-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.hh-search-result h2 { font-size: 28px; margin: 8px 0 10px; }
.hh-search-result h2 a { text-decoration: none; }
.hh-search-result p { color: var(--hh-muted); font-size: 14px; }
.hh-empty-state { border: 1px solid var(--hh-line); padding: 55px; text-align: center; }
.hh-empty-state > .hh-icon { color: var(--hh-teal-dark); height: 48px; width: 48px; }
.hh-empty-state h2 { font-size: 31px; margin: 22px 0 12px; }
.hh-empty-state p { color: var(--hh-muted); margin: 0 auto 26px; max-width: 620px; }

.hh-article-layout { align-items: start; display: grid; gap: 70px; grid-template-columns: minmax(0, 1fr) 330px; }
.hh-contact-panel { background: var(--hh-mist); border-top: 6px solid var(--hh-teal); padding: 30px; position: sticky; top: 112px; }
.admin-bar .hh-contact-panel { top: 144px; }
.hh-contact-panel h2 { font-size: 26px; margin-bottom: 14px; }
.hh-contact-panel > p { color: var(--hh-muted); font-size: 14px; margin-bottom: 25px; }
.hh-contact-panel > a { align-items: center; border-top: 1px solid var(--hh-line); display: flex; gap: 13px; padding-block: 16px; text-decoration: none; }
.hh-contact-panel > a:last-child { padding-bottom: 0; }
.hh-contact-panel > a .hh-icon { color: var(--hh-teal-dark); }
.hh-contact-panel > a span { display: flex; flex-direction: column; font-size: 14px; font-weight: 850; min-width: 0; }
.hh-contact-panel > a small { color: var(--hh-muted); font-size: 11px; font-weight: 500; overflow-wrap: anywhere; }

.hh-related-services,
.hh-location-services { background: var(--hh-mist); }
.hh-mini-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hh-mini-service-grid > a { align-items: center; background: var(--hh-white); border: 1px solid var(--hh-line); display: grid; gap: 13px; grid-template-columns: 28px 1fr 20px; margin: -1px 0 0 -1px; min-height: 84px; padding: 18px 22px; text-decoration: none; }
.hh-mini-service-grid > a:hover { background: var(--hh-ink); color: var(--hh-white); }
.hh-mini-service-grid > a .hh-icon:first-child { color: var(--hh-teal); }
.hh-mini-service-grid > a .hh-icon:last-child { height: 17px; width: 17px; }
.hh-mini-service-grid > a span { font-size: 14px; font-weight: 800; }

.hh-location-note { align-items: flex-start; background: var(--hh-mist); border-left: 5px solid var(--hh-yellow); display: flex; gap: 18px; margin-top: 50px; padding: 25px; }
.hh-location-note .hh-icon { color: var(--hh-teal-dark); margin-top: 3px; }
.hh-location-note p { font-size: 13px; margin: 6px 0 0; }

.hh-post-grid { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
.hh-post-card { border: 1px solid var(--hh-line); }
.hh-post-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.hh-post-card > div { padding: 26px; }
.hh-post-card time { color: var(--hh-teal-dark); font-size: 12px; font-weight: 800; }
.hh-post-card h2 { font-size: 24px; margin: 10px 0 13px; }
.hh-post-card h2 a { text-decoration: none; }
.hh-post-card p { color: var(--hh-muted); font-size: 14px; }

.hh-error-page { align-items: center; display: flex; min-height: 650px; padding-block: 100px; text-align: center; }
.hh-error-page__code { color: var(--hh-mist); display: block; font-size: 180px; font-weight: 950; line-height: 0.8; }
.hh-error-page h1 { font-size: 45px; margin: 24px auto 18px; max-width: 720px; }
.hh-error-page p { color: var(--hh-muted); margin-bottom: 28px; }

.wp-block-button__link { border-radius: 5px; }
.wp-block-quote { border-left: 5px solid var(--hh-yellow); margin-left: 0; padding-left: 25px; }

@media (max-width: 1080px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  .hh-menu { gap: 17px; }
  .hh-nav { gap: 16px; }
  .hh-nav__cta { display: none; }
  .hh-hero__content h1 { font-size: 60px; max-width: 650px; }
  .hh-hero__media { left: 58%; }
  .hh-split__grid,
  .hh-area__grid { gap: 45px; }
  .hh-service-grid { grid-template-columns: repeat(2, 1fr); }
  .hh-service-card { border: 1px solid var(--hh-line); min-height: 290px; padding: 30px; }
  .hh-service-card:not(:nth-child(5n+1)) { border-left: 1px solid var(--hh-line); }
  .hh-service-card:nth-child(n+6) { border-top: 1px solid var(--hh-line); }
  .hh-service-card:nth-child(even) { border-left: 0; }
  .hh-service-card:nth-child(n+3) { border-top: 0; }
  .hh-service-card h2,
  .hh-service-card h3 { font-size: 23px; }
	.hh-service-card--media { grid-template-columns: 0.82fr 1.18fr; }
	.hh-service-card--media .hh-service-card__body { padding: 27px 24px; }
}

@media (max-width: 920px) {
  .admin-bar .hh-header { top: 46px; }
  .hh-topbar__links a:first-child { display: none; }
  .hh-nav-toggle { display: inline-flex; }
	.hh-header__actions { margin-left: auto; }
  .hh-nav {
    align-items: stretch;
    background: var(--hh-white);
    box-shadow: var(--hh-shadow);
    display: none;
    flex-direction: column;
    left: 0;
    max-height: calc(100vh - var(--hh-header-height));
    overflow-y: auto;
    padding: 25px 28px 32px;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .hh-nav-open .hh-nav { display: flex; }
  .hh-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .hh-menu li { border-bottom: 1px solid var(--hh-line); }
  .hh-menu a { display: block; font-size: 18px; padding-block: 15px; }
  .hh-menu a::after { display: none; }
  .hh-nav__cta { display: inline-flex; }
  .hh-hero__media { left: 50%; opacity: 0.32; }
  .hh-hero__content { max-width: 720px; }
  .hh-hero__stamp { display: none; }
  .hh-section-head { grid-template-columns: 1fr; gap: 18px; }
  .hh-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .hh-trust__grid > div:nth-child(3) { border-left: 0; border-top: 1px solid #3a4a49; }
  .hh-trust__grid > div:nth-child(4) { border-top: 1px solid #3a4a49; }
  .hh-split__grid,
  .hh-area__grid { grid-template-columns: 1fr; }
	.hh-audience-grid { grid-template-columns: 1fr; }
	.hh-audience-card { display: grid; gap: 0 26px; grid-template-columns: 58px 1fr; }
	.hh-audience-card > span { grid-row: 1 / 4; }
	.hh-audience-card ul { grid-column: 2; }
  .hh-split__visual { min-height: 400px; }
  .hh-process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .hh-cta { grid-template-columns: 1fr; }
  .hh-cta__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .hh-contact-grid { gap: 45px; grid-template-columns: 1fr; }
  .hh-contact-copy { padding-top: 0; }
  .hh-footer__grid { grid-template-columns: 1fr 1fr; }
  .hh-footer__brand { grid-column: 1 / -1; }
  .hh-detail-hero__grid,
  .hh-location-hero__grid { grid-template-columns: 1fr 230px; }
  .hh-article-layout { grid-template-columns: 1fr; }
  .hh-contact-panel { position: static; }
	.hh-faq__grid { gap: 45px; grid-template-columns: 1fr; }
	.hh-faq__intro { position: static; }
	.hh-location-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 62px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hh-shell { padding-inline: 20px; }
  .hh-section { padding-block: 72px; }
  .hh-topbar__inner { justify-content: center; }
  .hh-topbar__links { display: none; }
  .hh-header__inner { min-height: 72px; }
  .hh-brand__mark { height: 43px; width: 43px; }
  .hh-brand__mark svg { height: 34px; width: 34px; }
  .hh-brand__text strong { font-size: 17px; }
  .hh-brand__text small { font-size: 9px; }
  .custom-logo { max-height: 52px; max-width: 230px; }
	.hh-header__actions { gap: 6px; margin-left: 10px; }
	.hh-search-toggle,
	.hh-nav-toggle { height: 42px; width: 42px; }
	.hh-search-panel__inner { grid-template-columns: 1fr 42px; padding-block: 20px; }
	.hh-search-panel form > div { grid-template-columns: 1fr 50px; }
	.hh-search-panel form button { justify-content: center; padding: 0; }
	.hh-search-panel form button span { display: none; }
  .hh-hero { min-height: 720px; }
  .hh-hero::after { right: -180px; top: 120px; }
  .hh-hero__media { clip-path: none; left: 0; opacity: 0.22; }
  .hh-hero__monogram { right: 3%; }
  .hh-hero__monogram strong { font-size: 150px; }
  .hh-hero__inner { align-items: flex-start; min-height: 620px; padding-top: 30px; }
  .hh-hero__content { padding-block: 58px; }
  .hh-hero__content h1 { font-size: 46px; }
  .hh-hero__content > p { font-size: 18px; }
  .hh-button-row { align-items: stretch; flex-direction: column; }
  .hh-button-row .hh-button { width: 100%; }
  .hh-proofbar { grid-template-columns: 1fr; padding-block: 13px; }
  .hh-proofbar > div { padding: 10px 20px; }
  .hh-proofbar > div + div { border-left: 0; display: none; }
  .hh-section-head { margin-bottom: 35px; }
  .hh-service-grid { grid-template-columns: 1fr; }
  .hh-service-card { border: 1px solid var(--hh-line) !important; margin-top: -1px; min-height: 285px; padding: 28px; }
	.hh-service-card--media { display: grid; grid-template-columns: 1fr; margin-top: 0; min-height: 0; padding: 0; }
	.hh-service-card__visual { min-height: 225px; }
	.hh-service-card__body { min-height: 240px; padding: 27px 24px; }
	.hh-service-card--media h2,
	.hh-service-card--media h3 { font-size: 25px; }
	.hh-section-action .hh-button { width: 100%; }
  .hh-trust__grid > div { min-height: 118px; padding: 22px 18px; }
  .hh-trust__grid strong { font-size: 20px; }
  .hh-trust__grid span { font-size: 11px; }
  .hh-split__grid { gap: 30px; }
  .hh-split__visual { min-height: 330px; padding: 30px; }
  .hh-workmark strong { font-size: 42px; }
  .hh-lead { font-size: 18px; }
  .hh-process__grid { grid-template-columns: 1fr; }
  .hh-process__grid li { min-height: 190px; padding: 25px 0 !important; }
  .hh-process__grid h3 { margin-top: 25px; }
  .hh-location-list { max-height: 330px; overflow: hidden; }
	.hh-audience-card { display: block; padding: 30px 25px; }
	.hh-audience-card > span { margin-bottom: 24px; }
	.hh-audience-card ul { grid-column: auto; }
	.hh-faq summary,
	.hh-detail-faq summary { font-size: 16px; padding-block: 20px; }
  .hh-cta { gap: 28px; padding: 35px 25px; }
  .hh-cta h2 { font-size: 30px; }
  .hh-cta__actions { align-items: stretch; flex-direction: column; min-width: 0; }
  .hh-contact-copy h2 { font-size: 36px; }
  .hh-form-wrap { padding: 27px 20px; }
  .hh-form-row { grid-template-columns: 1fr; }
	.hh-file-control { align-items: start; grid-template-columns: 24px 1fr; }
	.hh-file-control em { grid-column: 2; text-align: left; }
  .hh-contact-form .hh-button { justify-self: stretch; width: 100%; }
  .hh-footer__grid { gap: 45px; grid-template-columns: 1fr; padding-block: 60px; }
  .hh-footer__brand { grid-column: auto; }
  .hh-footer__bottom .hh-shell { align-items: flex-start; flex-direction: column; gap: 12px; justify-content: center; padding-block: 16px; }
	.hh-mobile-actions { bottom: 0; display: grid; grid-template-columns: 1fr 1fr; left: 0; min-height: 62px; position: fixed; right: 0; z-index: 1200; }
	.hh-mobile-actions a { align-items: center; background: var(--hh-yellow); color: var(--hh-ink); display: flex; font-size: 14px; font-weight: 900; gap: 8px; justify-content: center; text-decoration: none; }
	.hh-mobile-actions a + a { background: #15785f; color: var(--hh-white); }
	.hh-mobile-actions .hh-icon { height: 21px; width: 21px; }
  .hh-page-hero .hh-shell { padding-block: 68px; }
  .hh-page-hero h1 { font-size: 43px; }
  .hh-detail-hero__grid,
  .hh-location-hero__grid { grid-template-columns: 1fr; min-height: 0; padding-block: 70px; }
  .hh-detail-hero h1,
  .hh-location-hero h1 { font-size: 44px; }
  .hh-detail-hero__mark,
  .hh-radius-badge { display: none; }
  .hh-content h2 { font-size: 31px; }
	.hh-detail-hero__photo { min-height: 240px; }
	.hh-detail-hero__photo img { height: 240px; }
	.hh-inline-process { grid-template-columns: 1fr; }
	.hh-inline-process > div { min-height: 110px; }
	.hh-index-hero .hh-shell { min-height: 350px; padding-block: 70px; }
	.hh-index-hero h1 { font-size: 43px; }
	.hh-location-card-grid > a { min-height: 105px; padding: 18px; }
	.hh-empty-state { padding: 38px 22px; }
  .hh-mini-service-grid { grid-template-columns: 1fr; }
  .hh-post-grid { grid-template-columns: 1fr; }
  .hh-error-page__code { font-size: 120px; }
  .hh-error-page h1 { font-size: 36px; }
}

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