:root {
  --site-shell-green: #123f36;
  --site-shell-green-deep: #082e28;
  --site-shell-green-soft: #1f5a4d;
  --site-shell-mint: #dce9e4;
  --site-shell-cream: #f6f3eb;
  --site-shell-line: rgba(18, 63, 54, 0.14);
  --site-shell-shadow: 0 12px 36px rgba(18, 63, 54, 0.1);
}

/* Переход между разделами: короткое затухание вместо долгой прокрутки. */
html.site-shell-ready {
  scroll-behavior: auto !important;
}

html.site-shell-section-transition body > main {
  opacity: 1;
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

html.site-shell-section-transition.site-shell-section-fade-out body > main {
  opacity: 0.08;
}

.site-shell__container {
  box-sizing: border-box;
  width: min(100% - 40px, 1360px);
  margin-inline: auto;
}

.site-shell-header,
.site-shell-header *,
.site-shell-footer,
.site-shell-footer * {
  box-sizing: border-box;
}

.site-shell-header {
  position: sticky;
  top: 0;
  z-index: 1900;
  width: 100%;
  color: var(--site-shell-green);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--site-shell-line);
  box-shadow: 0 8px 24px rgba(18, 63, 54, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-family: inherit;
}

.site-shell-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-shell-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.site-shell-brand img {
  display: block;
  width: 185px;
  height: auto;
}

.site-shell-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.45vw, 24px);
  margin-left: auto;
}

.site-shell-nav a,
.site-shell-phone {
  position: relative;
  color: var(--site-shell-green);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.site-shell-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-shell-nav a:hover::after,
.site-shell-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-shell-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.site-shell-phone {
  letter-spacing: -0.01em;
}

.site-shell-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-shell-green);
  border-radius: 999px;
  color: #fff;
  background: var(--site-shell-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-shell-cta:hover {
  color: var(--site-shell-green);
  background: transparent;
  transform: translateY(-1px);
}

.site-shell-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--site-shell-line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.site-shell-menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--site-shell-green);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-shell-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

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

.site-shell-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-shell-mobile-nav {
  border-top: 1px solid var(--site-shell-line);
  background: #fff;
}

.site-shell-mobile-nav[hidden] {
  display: none !important;
}

.site-shell-mobile-nav .site-shell__container {
  display: grid;
  padding-block: 10px 18px;
}

.site-shell-mobile-nav a {
  display: flex;
  min-height: 47px;
  padding: 0 2px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--site-shell-line);
  color: var(--site-shell-green);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-shell-mobile-nav .site-shell-mobile-nav__cta {
  min-height: 44px;
  margin-top: 12px;
  padding-inline: 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--site-shell-green);
}

.site-shell-subnav {
  border-top: 1px solid rgba(18, 63, 54, 0.08);
  background: var(--site-shell-cream);
}

.site-shell-subnav__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-shell-subnav__inner::-webkit-scrollbar {
  display: none;
}

.site-shell-subnav__label,
.site-shell-subnav a {
  flex: 0 0 auto;
  color: var(--site-shell-green);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-shell-subnav__label {
  color: rgba(18, 63, 54, 0.58);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-shell-subnav a {
  font-weight: 650;
}

body.site-selector-open {
  overflow: hidden !important;
}

body.site-selector-open .cookie-consent,
body.site-selector-open .online-consult-popup,
body.site-selector-open .online-consult-sticker,
body.site-selector-open .a11y-toolbar {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-selector-overlay,
.site-selector-overlay * {
  box-sizing: border-box;
}

.site-selector-overlay {
  position: fixed;
  inset: 0;
  z-index: 24000;
  display: none;
  padding: 24px;
  place-items: center;
  overflow: auto;
  background: rgba(5, 24, 20, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-selector-overlay.is-open {
  display: grid;
  animation: site-selector-fade 180ms ease both;
}

.site-selector-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.45fr);
  width: min(960px, 100%);
  max-height: min(760px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  color: #18231f;
  background: #f8f6f0;
  box-shadow: 0 36px 100px rgba(3, 21, 17, 0.34);
  font-family: inherit;
  animation: site-selector-rise 260ms cubic-bezier(0.22, 0.8, 0.26, 1) both;
}

.site-selector-dialog h2,
.site-selector-dialog p,
.site-selector-dialog ol,
.site-selector-dialog ul,
.site-selector-dialog fieldset,
.site-selector-dialog legend {
  margin: 0;
}

.site-selector-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0 0 2px;
  place-items: center;
  border: 1px solid rgba(18, 63, 54, 0.13);
  border-radius: 50%;
  color: var(--site-shell-green);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.site-selector-close:hover {
  background: #fff;
  transform: rotate(5deg);
}

.site-selector-intro {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: 54px 42px 38px;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(139, 211, 193, 0.2), transparent 32%),
    linear-gradient(155deg, #184b40 0%, #082e28 76%);
}

.site-selector-intro::after {
  position: absolute;
  right: -110px;
  bottom: -92px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.035), 0 0 0 88px rgba(255, 255, 255, 0.018);
}

.site-selector-intro__kicker,
.site-selector-step__eyebrow,
.site-selector-result__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-selector-intro__kicker {
  color: #9ed8ca;
}

.site-selector-intro h2 {
  max-width: 260px;
  margin-top: 28px;
  color: #fff;
  font-family: var(--font-display-premium, Georgia, serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.site-selector-intro > p {
  max-width: 275px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.62;
}

.site-selector-intro ol {
  display: grid;
  gap: 12px;
  margin-top: 38px;
  padding: 0;
  list-style: none;
}

.site-selector-intro li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 650;
}

.site-selector-intro li span {
  color: #9ed8ca;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-selector-intro > small {
  position: relative;
  z-index: 1;
  max-width: 220px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.5;
}

.site-selector-workspace {
  min-width: 0;
  max-height: min(760px, calc(100dvh - 48px));
  padding: 38px 42px 34px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 63, 54, 0.25) transparent;
}

.site-selector-progress {
  display: flex;
  padding-right: 58px;
  align-items: center;
  gap: 18px;
}

.site-selector-progress__step {
  flex: 0 0 auto;
  color: rgba(18, 63, 54, 0.62);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-selector-progress__track {
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 63, 54, 0.1);
}

.site-selector-progress__track i {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b87b5c, #1f5a4d);
  transition: width 240ms ease;
}

.site-selector-form {
  margin-top: 44px;
}

.site-selector-step {
  min-width: 0;
  padding: 0;
  border: 0;
}

.site-selector-step[hidden],
.site-selector-result[hidden],
.site-selector-form[hidden] {
  display: none !important;
}

.site-selector-step__eyebrow,
.site-selector-result__eyebrow {
  color: #b06e4e;
}

.site-selector-step legend {
  display: block;
  width: 100%;
}

.site-selector-step legend:focus {
  outline: 0;
}

.site-selector-step legend > b,
.site-selector-result h2 {
  display: block;
  width: 100%;
  margin-top: 11px;
  color: #18231f;
  font-family: var(--font-display-premium, Georgia, serif);
  font-size: clamp(31px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.site-selector-step > p,
.site-selector-result__copy {
  max-width: 600px;
  margin-top: 13px;
  color: #66716c;
  font-size: 14px;
  line-height: 1.58;
}

.site-selector-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.site-selector-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.site-selector-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-selector-options label > span {
  display: flex;
  min-height: 92px;
  padding: 16px 17px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(18, 63, 54, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.site-selector-options label:hover > span {
  border-color: rgba(18, 63, 54, 0.34);
  background: #fff;
  transform: translateY(-1px);
}

.site-selector-options input:checked + span {
  border-color: rgba(18, 63, 54, 0.62);
  background: #e8f0ed;
  box-shadow: inset 3px 0 0 #1f5a4d;
}

.site-selector-options input:focus-visible + span {
  outline: 3px solid #79c9b7;
  outline-offset: 2px;
}

.site-selector-options b {
  color: #18231f;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.site-selector-options small {
  margin-top: 6px;
  color: #66716c;
  font-size: 11px;
  line-height: 1.42;
}

.site-selector-error {
  min-height: 20px;
  margin-top: 12px !important;
  color: #914438;
  font-size: 12px;
}

.site-selector-actions {
  display: flex;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.site-selector-back,
.site-selector-restart {
  padding: 10px 0;
  border: 0;
  color: #66716c;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.site-selector-back:disabled {
  opacity: 0.32;
  cursor: default;
}

.site-selector-next,
.site-selector-result__primary {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-shell-green);
  border-radius: 999px;
  color: #fff;
  background: var(--site-shell-green);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.site-selector-next:not(:disabled):hover,
.site-selector-result__primary:hover {
  background: #1f5a4d;
  transform: translateY(-1px);
}

.site-selector-next:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.site-selector-result {
  padding-top: 44px;
}

.site-selector-result h2:focus {
  outline: 0;
}

.site-selector-result__prepare {
  margin-top: 27px;
  padding: 20px 22px;
  border-top: 1px solid rgba(18, 63, 54, 0.18);
  border-bottom: 1px solid rgba(18, 63, 54, 0.18);
  background: rgba(255, 255, 255, 0.42);
}

.site-selector-result__prepare > span {
  color: rgba(18, 63, 54, 0.6);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-selector-result__prepare ul {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  padding: 0;
  color: #47534e;
  list-style: none;
  font-size: 13px;
}

.site-selector-result__prepare li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  content: "";
  background: #b87b5c;
  vertical-align: 1px;
}

.site-selector-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 27px;
  align-items: center;
}

.site-selector-result__phone {
  color: var(--site-shell-green);
  font-size: 13px;
  font-weight: 750;
  text-underline-offset: 5px;
}

.site-selector-restart {
  margin-top: 15px;
}

.site-selector-close:focus-visible,
.site-selector-back:focus-visible,
.site-selector-next:focus-visible,
.site-selector-restart:focus-visible,
.site-selector-result a:focus-visible {
  outline: 3px solid #79c9b7;
  outline-offset: 3px;
}

@keyframes site-selector-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes site-selector-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.site-shell-header a:focus-visible,
.site-shell-header button:focus-visible,
.site-shell-footer a:focus-visible,
.site-shell-footer summary:focus-visible {
  outline: 3px solid #79c9b7;
  outline-offset: 3px;
}

.site-shell-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 0%, rgba(121, 201, 183, 0.15), transparent 34%),
    linear-gradient(145deg, var(--site-shell-green) 0%, var(--site-shell-green-deep) 100%);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
}

.site-shell-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(130px, 0.65fr) minmax(180px, 0.8fr) minmax(310px, 1.45fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
}

.site-shell-footer h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-shell-footer p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.site-shell-footer strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.site-shell-footer a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.site-shell-footer a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

.site-shell-footer__brand > a {
  display: block;
  width: min(100%, 270px);
}

.site-shell-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-shell-footer__brand p {
  max-width: 270px;
  margin-top: 20px;
}

.site-shell-footer__column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-shell-footer__column p {
  margin-top: 8px;
}

.site-shell-footer__info {
  min-width: 0;
}

.site-shell-footer__license {
  display: inline-block;
  margin-bottom: 14px;
}

.site-shell-footer__metro {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 2px 0 14px;
}

.site-shell-footer__metro > span {
  display: inline-flex;
  padding: 5px 9px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1;
}

.site-shell-metro-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.site-shell-metro-dot--yellow {
  background: #ffcd1c;
}

.site-shell-metro-dot--aqua {
  background: #7bc9c5;
}

.site-shell-footer__details {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.site-shell-footer__details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.site-shell-footer__details summary::-webkit-details-marker {
  display: none;
}

.site-shell-footer__details summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 400;
}

.site-shell-footer__details[open] summary::after {
  content: "−";
}

.site-shell-footer__details > div {
  padding-top: 14px;
}

.site-shell-footer__documents {
  display: grid;
  gap: 8px;
}

.site-shell-footer__bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

@media (max-width: 1320px) {
  .site-shell-phone {
    display: none;
  }
}

@media (max-width: 1179px) {
  .site-shell-nav {
    display: none;
  }

  .site-shell-header__actions {
    margin-left: auto;
  }

  .site-shell-menu-toggle {
    display: block;
  }

  .site-shell-footer__grid {
    grid-template-columns: 1.1fr 0.75fr 0.9fr;
  }

  .site-shell-footer__info {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-shell__container {
    width: min(100% - 28px, 1360px);
  }

  .site-shell-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .site-shell-brand img {
    width: 154px;
  }

  .site-shell-header__actions {
    gap: 8px;
  }

  .site-shell-header__actions > .site-shell-cta {
    display: none;
  }

  .site-shell-subnav__inner {
    min-height: 40px;
    gap: 18px;
  }

  .site-shell-subnav__label {
    display: none;
  }

  .site-shell-footer {
    padding-top: 48px;
  }

  .site-shell-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .site-shell-footer__brand,
  .site-shell-footer__info {
    grid-column: 1 / -1;
  }

  .site-shell-footer__brand > a {
    width: min(100%, 250px);
  }

  .site-selector-overlay {
    padding: 10px;
    place-items: end center;
  }

  .site-selector-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 20px);
    border-radius: 22px;
  }

  .site-selector-close {
    top: 14px;
    right: 14px;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .site-selector-close:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  .site-selector-intro {
    min-height: 0;
    padding: 25px 64px 24px 22px;
  }

  .site-selector-intro::after,
  .site-selector-intro ol,
  .site-selector-intro > small {
    display: none;
  }

  .site-selector-intro h2 {
    max-width: 310px;
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.02;
  }

  .site-selector-intro > p {
    display: none;
  }

  .site-selector-workspace {
    max-height: calc(100dvh - 158px);
    padding: 23px 20px max(22px, env(safe-area-inset-bottom));
  }

  .site-selector-progress {
    padding-right: 0;
  }

  .site-selector-form,
  .site-selector-result {
    margin-top: 28px;
    padding-top: 0;
  }

  .site-selector-step legend > b,
  .site-selector-result h2 {
    font-size: 30px;
  }

  .site-selector-options {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .site-selector-options label > span {
    min-height: 76px;
    padding: 13px 15px;
  }

  .site-selector-actions {
    position: sticky;
    bottom: calc(-1 * max(22px, env(safe-area-inset-bottom)));
    z-index: 2;
    padding: 12px 0 max(10px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(248, 246, 240, 0), #f8f6f0 24%);
  }
}

@media (max-width: 460px) {
  .site-shell-brand img {
    width: 138px;
  }

  .site-shell-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-shell-footer__brand,
  .site-shell-footer__info {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.site-shell-section-transition body > main {
    opacity: 1 !important;
    transition: none !important;
  }

  .site-shell-header *,
  .site-shell-footer *,
  .site-selector-overlay,
  .site-selector-overlay * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
