:root {
  --uh-ink: #1c2a22;
  --uh-forest: #26503b;
  --uh-forest-d: #17372a;
  --uh-moss: #6f8f68;
  --uh-clay: #b4653f;
  --uh-sand: #f4f1e8;
  --uh-paper: #fffdf8;
  --uh-line: #ded8c9;
  --uh-muted: #5d6a61;
  --uh-radius: 4px;
  --uh-shadow: 0 12px 34px rgba(28, 42, 34, 0.1);
  --uh-serif: Georgia, "Times New Roman", serif;
  --uh-sans:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--uh-paper);
  color: var(--uh-ink);
  font-family: var(--uh-sans);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: var(--uh-forest);
}

h1,
h2,
h3,
h4 {
  font-family: var(--uh-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--uh-forest-d);
  margin: 0 0 0.6em;
}

h1 {
  font-size: 2.1rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.05rem;
  font-family: var(--uh-sans);
  font-weight: 600;
}

p {
  margin: 0 0 1.1em;
}

.uh-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.uh-skip {
  position: absolute;
  left: -9999px;
  background: var(--uh-forest);
  color: #fff;
  padding: 10px 16px;
  z-index: 90;
}
.uh-skip:focus {
  left: 12px;
  top: 12px;
}

.uh-btn {
  display: inline-block;
  padding: 13px 26px;
  background: var(--uh-forest);
  color: #fff;
  border: 1px solid var(--uh-forest);
  border-radius: var(--uh-radius);
  font: 600 15px/1.2 var(--uh-sans);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.uh-btn:hover {
  background: var(--uh-forest-d);
  border-color: var(--uh-forest-d);
}
.uh-btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}
.uh-btn--ghost {
  background: transparent;
  color: var(--uh-forest);
}
.uh-btn--ghost:hover {
  background: rgba(38, 80, 59, 0.08);
  color: var(--uh-forest-d);
}
.uh-btn--clay {
  background: var(--uh-clay);
  border-color: var(--uh-clay);
}
.uh-btn--clay:hover {
  background: #9d5433;
  border-color: #9d5433;
}

.uh-top {
  border-bottom: 1px solid var(--uh-line);
  background: var(--uh-paper);
  position: relative;
  z-index: 40;
}
.uh-top__bar {
  background: var(--uh-forest-d);
  color: #d9e5da;
  font-size: 13px;
}
.uh-top__bar-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.uh-top__hours {
  display: none;
}
.uh-top__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.uh-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}
.uh-logo__mark {
  display: block;
  flex: 0 0 32px;
}
.uh-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.uh-logo__text strong {
  font-family: var(--uh-serif);
  font-size: 1.32rem;
  font-weight: 400;
  color: var(--uh-forest-d);
  letter-spacing: 0.01em;
}
.uh-logo__text em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--uh-muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.uh-burger {
  display: block;
  width: 42px;
  height: 38px;
  padding: 9px 8px;
  background: none;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  cursor: pointer;
}
.uh-burger span {
  display: block;
  height: 2px;
  background: var(--uh-forest-d);
  border-radius: 2px;
}
.uh-burger span + span {
  margin-top: 5px;
}

.uh-nav {
  display: none;
  width: 100%;
}
.uh-nav.uh-nav--open {
  display: block;
}
.uh-nav__list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  border-top: 1px solid var(--uh-line);
}
.uh-nav__item {
  position: relative;
  border-bottom: 1px solid var(--uh-line);
}
.uh-nav__link {
  display: block;
  padding: 13px 2px;
  text-decoration: none;
  color: var(--uh-ink);
  font-size: 15.5px;
}
.uh-nav__link--on {
  color: var(--uh-clay);
}
.uh-nav__toggle {
  position: absolute;
  right: 0;
  top: 8px;
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  cursor: pointer;
}
.uh-nav__toggle::before,
.uh-nav__toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--uh-forest-d);
}
.uh-nav__toggle::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.uh-nav__item--open .uh-nav__toggle::after {
  transform: rotate(0deg);
}
.uh-nav__sub {
  display: none;
  list-style: none;
  margin: 0 0 10px;
  padding: 0 0 0 14px;
}
.uh-nav__item--open .uh-nav__sub {
  display: block;
}
.uh-nav__sub a {
  display: block;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--uh-muted);
  text-decoration: none;
}
.uh-nav__sub a:hover {
  color: var(--uh-forest);
}
.uh-nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0 4px;
}
.uh-nav__phone {
  font: 600 16px/1 var(--uh-sans);
  color: var(--uh-forest-d);
  text-decoration: none;
  white-space: nowrap;
}

.uh-hero {
  background: var(--uh-sand);
  border-bottom: 1px solid var(--uh-line);
}
.uh-hero__in {
  display: grid;
  gap: 26px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.uh-hero__eyebrow {
  display: inline-block;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uh-clay);
  margin-bottom: 14px;
}
.uh-hero h1 {
  font-size: 2.3rem;
  margin-bottom: 0.5em;
}
.uh-hero__lead {
  font-size: 18.5px;
  color: var(--uh-muted);
  max-width: 34em;
}
.uh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.uh-hero__pic img {
  border-radius: var(--uh-radius);
  box-shadow: var(--uh-shadow);
}
.uh-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  border-top: 1px solid var(--uh-line);
  padding-top: 20px;
}
.uh-hero__fact b {
  display: block;
  font-family: var(--uh-serif);
  font-size: 1.7rem;
  color: var(--uh-forest);
  line-height: 1.1;
}
.uh-hero__fact span {
  font-size: 13.5px;
  color: var(--uh-muted);
}

.uh-sec {
  padding: 52px 0;
}
.uh-sec--sand {
  background: var(--uh-sand);
  border-top: 1px solid var(--uh-line);
  border-bottom: 1px solid var(--uh-line);
}
.uh-sec--tight {
  padding: 38px 0;
}
.uh-sec__head {
  max-width: 40em;
  margin-bottom: 30px;
}
.uh-sec__head p {
  color: var(--uh-muted);
  margin-bottom: 0;
}
.uh-sec__kicker {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uh-clay);
  margin-bottom: 10px;
}

.uh-grid {
  display: grid;
  gap: 20px;
}
.uh-grid--2 {
  grid-template-columns: 1fr;
}
.uh-grid--3 {
  grid-template-columns: 1fr;
}
.uh-grid--4 {
  grid-template-columns: 1fr 1fr;
}

.uh-card {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  padding: 24px;
}
.uh-card h3 {
  margin-bottom: 0.45em;
}
.uh-card p:last-child {
  margin-bottom: 0;
}
.uh-card__meta {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uh-moss);
  margin-bottom: 10px;
}
.uh-card__price {
  font-family: var(--uh-serif);
  font-size: 1.3rem;
  color: var(--uh-forest);
}
.uh-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.uh-card--link:hover {
  box-shadow: var(--uh-shadow);
  transform: translateY(-2px);
}

.uh-svc {
  display: grid;
  gap: 18px;
}
.uh-svc__item {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  overflow: hidden;
}
.uh-svc__pic img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.uh-svc__body {
  padding: 0 22px 24px;
}
.uh-svc__body h3 {
  margin-bottom: 0.4em;
}
.uh-svc__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.uh-svc__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 7px;
  font-size: 15.5px;
  color: var(--uh-muted);
}
.uh-svc__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--uh-moss);
}
.uh-svc__more {
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid rgba(38, 80, 59, 0.35);
}

.uh-steps {
  counter-reset: uh-step;
  display: grid;
  gap: 18px;
}
.uh-step {
  position: relative;
  padding: 22px 22px 22px 68px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
}
.uh-step::before {
  counter-increment: uh-step;
  content: counter(uh-step);
  position: absolute;
  left: 22px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--uh-forest);
  color: #fff;
  font: 600 15px/32px var(--uh-sans);
  text-align: center;
}
.uh-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3em;
}
.uh-step p {
  margin-bottom: 0;
  font-size: 15.5px;
  color: var(--uh-muted);
}

.uh-plans {
  display: grid;
  gap: 20px;
}
.uh-plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  padding: 26px 24px;
}
.uh-plan--mark {
  border-color: var(--uh-forest);
  box-shadow: var(--uh-shadow);
  position: relative;
}
.uh-plan__tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--uh-clay);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.uh-plan__name {
  font-family: var(--uh-serif);
  font-size: 1.35rem;
  color: var(--uh-forest-d);
  margin-bottom: 6px;
}
.uh-plan__price {
  font-family: var(--uh-serif);
  font-size: 2rem;
  color: var(--uh-forest);
  line-height: 1.1;
}
.uh-plan__price span {
  font-family: var(--uh-sans);
  font-size: 14px;
  color: var(--uh-muted);
  display: block;
}
.uh-plan__list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
}
.uh-plan__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 9px;
  font-size: 15.5px;
}
.uh-plan__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.45em;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--uh-moss);
  border-bottom: 2px solid var(--uh-moss);
  transform: rotate(-45deg);
}
.uh-plan .uh-btn {
  margin-top: auto;
  text-align: center;
}

.uh-split {
  display: grid;
  gap: 26px;
  align-items: center;
}
.uh-split__pic img {
  border-radius: var(--uh-radius);
}
.uh-split__body h2 {
  margin-bottom: 0.5em;
}
.uh-split--rev .uh-split__pic {
  order: -1;
}

.uh-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.uh-tabs__btn {
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: 999px;
  font: 500 14.5px/1 var(--uh-sans);
  color: var(--uh-muted);
  cursor: pointer;
}
.uh-tabs__btn--on {
  background: var(--uh-forest);
  border-color: var(--uh-forest);
  color: #fff;
}
.uh-tabs__panel[hidden] {
  display: none;
}

.uh-plant {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  padding: 20px;
}
.uh-plant__name {
  font-family: var(--uh-serif);
  font-size: 1.15rem;
  color: var(--uh-forest-d);
  margin-bottom: 2px;
}
.uh-plant__lat {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--uh-moss);
  margin-bottom: 12px;
}
.uh-plant__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  padding: 6px 0;
  border-top: 1px dotted var(--uh-line);
}
.uh-plant__row span:first-child {
  color: var(--uh-muted);
}
.uh-plant__price {
  margin-top: 14px;
  font-family: var(--uh-serif);
  font-size: 1.2rem;
  color: var(--uh-forest);
}

.uh-cases {
  display: grid;
  gap: 22px;
}
.uh-case {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.uh-case img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.uh-case__body {
  padding: 20px 22px 24px;
}
.uh-case__tag {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uh-clay);
}
.uh-case__body h3 {
  margin: 8px 0 0.4em;
  font-size: 1.2rem;
}
.uh-case__body p {
  margin-bottom: 0;
  font-size: 15.5px;
  color: var(--uh-muted);
}

.uh-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.uh-facts li {
  border-left: 3px solid var(--uh-moss);
  padding-left: 14px;
  font-size: 15px;
}
.uh-facts b {
  display: block;
  font-family: var(--uh-serif);
  font-size: 1.45rem;
  color: var(--uh-forest);
}

.uh-team {
  display: grid;
  gap: 22px;
}
.uh-person {
  text-align: left;
}
.uh-person img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--uh-radius);
  margin-bottom: 14px;
}
.uh-person__name {
  font-family: var(--uh-serif);
  font-size: 1.18rem;
  color: var(--uh-forest-d);
}
.uh-person__role {
  display: block;
  font-size: 13.5px;
  color: var(--uh-clay);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 2px 0 8px;
}
.uh-person p {
  font-size: 15px;
  color: var(--uh-muted);
  margin-bottom: 0;
}

.uh-reviews {
  display: grid;
  gap: 20px;
}
.uh-review {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  padding: 24px;
}
.uh-review__stars {
  color: var(--uh-clay);
  letter-spacing: 0.18em;
  font-size: 15px;
  margin-bottom: 10px;
}
.uh-review__text {
  font-size: 15.8px;
  margin-bottom: 16px;
}
.uh-review__who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.uh-review__ava {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--uh-sand);
  color: var(--uh-forest);
  font: 600 15px/42px var(--uh-sans);
  text-align: center;
}
.uh-review__name {
  font-weight: 600;
  font-size: 15px;
}
.uh-review__meta {
  display: block;
  font-size: 13px;
  color: var(--uh-muted);
}

.uh-faq {
  max-width: 46em;
}
.uh-faq__item {
  border-bottom: 1px solid var(--uh-line);
}
.uh-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  font: 600 16.5px/1.45 var(--uh-sans);
  color: var(--uh-forest-d);
  cursor: pointer;
}
.uh-faq__q::after {
  content: "+";
  font-family: var(--uh-serif);
  font-size: 24px;
  line-height: 1;
  color: var(--uh-moss);
}
.uh-faq__item--open .uh-faq__q::after {
  content: "–";
}
.uh-faq__a {
  display: none;
  padding: 0 0 20px;
  color: var(--uh-muted);
  font-size: 15.8px;
}
.uh-faq__item--open .uh-faq__a {
  display: block;
}
.uh-faq__a p:last-child {
  margin-bottom: 0;
}

.uh-band {
  background: var(--uh-forest-d);
  color: #eef3ec;
}
.uh-band__in {
  display: grid;
  gap: 20px;
  padding: 44px 0;
  align-items: center;
}
.uh-band h2 {
  color: #fff;
  margin-bottom: 0.4em;
}
.uh-band p {
  color: #cddccd;
  margin-bottom: 0;
}
.uh-band .uh-btn {
  background: var(--uh-clay);
  border-color: var(--uh-clay);
}
.uh-band .uh-btn:hover {
  background: #9d5433;
  border-color: #9d5433;
}

.uh-crumbs {
  font-size: 13.5px;
  color: var(--uh-muted);
  padding: 16px 0 0;
}
.uh-crumbs a {
  color: var(--uh-muted);
  text-decoration: none;
}
.uh-crumbs a:hover {
  color: var(--uh-forest);
}
.uh-crumbs span {
  margin: 0 7px;
  color: var(--uh-line);
}

.uh-page__head {
  padding: 26px 0 34px;
}
.uh-page__head h1 {
  margin-bottom: 0.35em;
}
.uh-page__lead {
  font-size: 18px;
  color: var(--uh-muted);
  max-width: 38em;
  margin-bottom: 0;
}

.uh-prose {
  max-width: 44em;
}
.uh-prose h2 {
  margin-top: 1.6em;
}
.uh-prose h3 {
  margin-top: 1.4em;
}
.uh-prose ul,
.uh-prose ol {
  margin: 0 0 1.2em;
  padding-left: 22px;
}
.uh-prose li {
  margin-bottom: 8px;
}
.uh-prose img {
  border-radius: var(--uh-radius);
  margin: 1.4em 0;
}
.uh-prose__note {
  background: var(--uh-sand);
  border-left: 3px solid var(--uh-moss);
  padding: 18px 20px;
  margin: 1.6em 0;
  font-size: 15.8px;
}
.uh-prose__note p:last-child {
  margin-bottom: 0;
}

.uh-notes {
  display: grid;
  gap: 20px;
}
.uh-note {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.uh-note img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.uh-note__body {
  padding: 18px 20px 22px;
}
.uh-note__date {
  font-size: 13px;
  color: var(--uh-moss);
  letter-spacing: 0.06em;
}
.uh-note__body h3 {
  margin: 6px 0 0.4em;
  font-size: 1.12rem;
}
.uh-note__body p {
  font-size: 15px;
  color: var(--uh-muted);
  margin-bottom: 0;
}

.uh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
}
.uh-table th,
.uh-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--uh-line);
}
.uh-table th {
  font-weight: 600;
  color: var(--uh-forest-d);
  background: var(--uh-sand);
}
.uh-table td:last-child {
  white-space: nowrap;
}

.uh-contact {
  display: grid;
  gap: 30px;
}
.uh-contact__box {
  background: #fff;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  padding: 26px 24px;
}
.uh-contact__row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--uh-line);
  font-size: 15.5px;
}
.uh-contact__row:last-child {
  border-bottom: 0;
}
.uh-contact__row b {
  flex: 0 0 116px;
  font-weight: 600;
  color: var(--uh-muted);
  font-size: 14px;
}
.uh-contact__row a {
  text-decoration: none;
}

.uh-form {
  display: grid;
  gap: 14px;
}
.uh-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--uh-muted);
  margin-bottom: 5px;
}
.uh-form input[type="text"],
.uh-form input[type="email"],
.uh-form input[type="tel"],
.uh-form select,
.uh-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--uh-line);
  border-radius: var(--uh-radius);
  background: #fff;
  font: 16px/1.4 var(--uh-sans);
  color: var(--uh-ink);
}
.uh-form textarea {
  min-height: 120px;
  resize: vertical;
}
.uh-form input:focus,
.uh-form select:focus,
.uh-form textarea:focus {
  outline: 2px solid var(--uh-moss);
  outline-offset: 1px;
}
.uh-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.uh-form__note {
  font-size: 13.5px;
  color: var(--uh-muted);
  margin: 0;
}
.uh-form__done {
  background: #eaf2e8;
  border: 1px solid var(--uh-moss);
  border-radius: var(--uh-radius);
  padding: 22px 24px;
}
.uh-form__done b {
  display: block;
  font-family: var(--uh-serif);
  font-size: 1.2rem;
  color: var(--uh-forest-d);
  margin-bottom: 6px;
}
.uh-form__done p {
  margin-bottom: 0;
  font-size: 15.5px;
  color: var(--uh-muted);
}

.uh-foot {
  background: var(--uh-forest-d);
  color: #cddccd;
  margin-top: 60px;
}
.uh-foot__grid {
  display: grid;
  gap: 30px;
  padding-top: 46px;
  padding-bottom: 34px;
}
.uh-foot__brand {
  font-family: var(--uh-serif);
  font-size: 1.35rem;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}
.uh-foot__text {
  font-size: 15px;
  margin-bottom: 12px;
}
.uh-foot__legal-name {
  font-size: 14px;
  color: #9fb7a2;
  margin-bottom: 0;
}
.uh-foot__head {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fb7a2;
  margin-bottom: 14px;
}
.uh-foot__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.uh-foot__list li {
  margin-bottom: 9px;
}
.uh-foot__list a,
.uh-foot__addr a {
  color: #dfe9de;
  text-decoration: none;
  font-size: 15px;
}
.uh-foot__list a:hover,
.uh-foot__addr a:hover {
  color: #fff;
  text-decoration: underline;
}
.uh-foot__addr {
  font-style: normal;
  display: grid;
  gap: 7px;
  font-size: 15px;
}
.uh-foot__phone {
  font-size: 17px !important;
  font-weight: 600;
}
.uh-foot__hours {
  color: #9fb7a2;
  font-size: 14px;
}
.uh-foot__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
}
.uh-foot__bottom-in {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 22px;
}
.uh-foot__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
}
.uh-foot__legal a {
  color: #9fb7a2;
  text-decoration: none;
}
.uh-foot__legal a:hover {
  color: #fff;
}

.uh-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid var(--uh-line);
  box-shadow: 0 -8px 26px rgba(28, 42, 34, 0.12);
}
.uh-cookie__in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  gap: 14px;
}
.uh-cookie__text {
  font-size: 14.5px;
  margin: 0;
  color: var(--uh-muted);
}
.uh-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 620px) {
  .uh-grid--3 {
    grid-template-columns: 1fr 1fr;
  }
  .uh-cases {
    grid-template-columns: 1fr 1fr;
  }
  .uh-notes {
    grid-template-columns: 1fr 1fr;
  }
  .uh-reviews {
    grid-template-columns: 1fr 1fr;
  }
  .uh-team {
    grid-template-columns: 1fr 1fr;
  }
  .uh-cookie__in {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .uh-foot__bottom-in {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 17px;
  }
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2rem;
  }
  .uh-top__hours {
    display: inline;
  }
  .uh-burger {
    display: none;
  }
  .uh-nav {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    width: auto;
  }
  .uh-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    border: 0;
  }
  .uh-nav__item {
    border: 0;
  }
  .uh-nav__link {
    padding: 8px 10px;
    font-size: 15px;
  }
  .uh-nav__link:hover {
    color: var(--uh-clay);
  }
  .uh-nav__toggle {
    display: none;
  }
  .uh-nav__sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 8px 0;
    background: #fff;
    border: 1px solid var(--uh-line);
    border-radius: var(--uh-radius);
    box-shadow: var(--uh-shadow);
  }
  .uh-nav__item--has-sub:hover .uh-nav__sub,
  .uh-nav__item--open .uh-nav__sub {
    display: block;
  }
  .uh-nav__sub a {
    padding: 9px 18px;
    font-size: 14.5px;
  }
  .uh-nav__sub a:hover {
    background: var(--uh-sand);
  }
  .uh-nav__cta {
    padding: 0;
  }
  .uh-hero__in {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 46px;
  }
  .uh-hero h1 {
    font-size: 2.9rem;
  }
  .uh-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
  .uh-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .uh-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .uh-svc {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .uh-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .uh-plans {
    grid-template-columns: repeat(3, 1fr);
  }
  .uh-split {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .uh-split--rev .uh-split__pic {
    order: 0;
  }
  .uh-cases {
    grid-template-columns: repeat(3, 1fr);
  }
  .uh-notes {
    grid-template-columns: repeat(3, 1fr);
  }
  .uh-team {
    grid-template-columns: repeat(3, 1fr);
  }
  .uh-facts {
    grid-template-columns: repeat(4, 1fr);
  }
  .uh-band__in {
    grid-template-columns: 1fr auto;
  }
  .uh-contact {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
  .uh-foot__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
  .uh-sec {
    padding: 68px 0;
  }
}

body { overflow-wrap: break-word; }

.uh-grid > *, .uh-svc > *, .uh-plans > *, .uh-cases > *, .uh-notes > *,
.uh-team > *, .uh-reviews > *, .uh-steps > *, .uh-split > *, .uh-contact > * { min-width: 0; }

.uh-table-scroll { width: 100%; overflow-x: auto; }

@media (max-width: 719px) {
  .uh-table { display: block; width: 100%; overflow-x: auto; }
  .uh-grid--4 { grid-template-columns: 1fr; }
  .uh-facts { grid-template-columns: 1fr; }
}

.uh-nav__cta .uh-btn { white-space: nowrap; }
