*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  line-height: 1.15;
}
p {
  margin: 0 0 1em;
}
.site-name {
  font-size: 1.5rem;
  font-weight: 700;
}
.container {
  width: calc(100% -  48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.site-main {
  min-height: 60vh;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: 0.25s ease;
  cursor: pointer;
}
.button--primary {
  background: #f5b335;
  color: #111111;
  font-weight: 700;
}
body.menu-open {
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}
.site-header__inner {
  width: calc(100% -  48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  position: relative;
}
.site-header__brand {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__phone {
  font-weight: 600;
}
.custom-logo-link,
.site-logo {
  display: inline-flex;
  align-items: center;
}
.custom-logo {
  max-height: 72px;
  width: auto;
}
.site-nav {
  justify-self: center;
}
.primary-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-menu li {
  position: relative;
  list-style: none;
}
.primary-menu a {
  display: inline-block;
  padding: 12px 0;
}
.primary-menu .menu-item-has-children > a {
  padding-right: 16px;
}
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  margin: 0;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  list-style: none;
  z-index: 50;
}
.primary-menu .sub-menu li {
  display: block;
}
.primary-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.menu-toggle__line {
  display: block;
  width: 26px;
  height: 2px;
  background: #111111;
  margin: 3px 0;
  transition: 0.25s ease;
}
.menu-close {
  display: none !important;
}
@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-header__actions {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    background: #ffffff;
    z-index: 1103;
    padding: 88px 24px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    pointer-events: none;
    justify-self: unset;
  }
  .site-nav.is-resizing {
    transition: none !important;
  }
  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .site-nav .menu-close {
    display: block !important;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1106;
  }
  .site-nav .menu-close span {
    position: absolute;
    top: 19px;
    left: 8px;
    width: 24px;
    height: 2px;
    background: #111111;
  }
  .site-nav .menu-close span:first-child {
    transform: rotate(45deg);
  }
  .site-nav .menu-close span:last-child {
    transform: rotate(-45deg);
  }
  .primary-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .primary-menu li {
    width: 100%;
  }
  .primary-menu a {
    display: block;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #dddddd;
  }
  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 0 0 16px;
    margin: 0;
  }
}
.site-footer {
  background: #111111;
  color: #fff;
  padding: 64px 0 24px;
}
.site-footer a {
  color: inherit;
}
.site-footer__inner {
  width: calc(100% -  48px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer__title {
  margin-bottom: 16px;
}
.site-footer__text,
.site-footer__address {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer__bottom {
  padding-top: 20px;
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-menu {
  list-style: none;
}
.footer-menu li + li {
  margin-top: 10px;
}
@media (max-width: 900px) {
  .site-footer__main {
    grid-template-columns: 1fr;
  }
}
/* Entrance animations
 * Add `animate` plus one animation class to any block or element.
 * Elements remain visible when JavaScript is unavailable.
 */
.has-motion-js .animate,
.has-motion-js .animate-stagger > * {
  --animation-distance: 40px;
  --animation-duration: 700ms;
  --animation-delay: 0ms;
  --animation-easing: cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: var(--animation-duration);
  transition-timing-function: var(--animation-easing);
  transition-delay: var(--animation-delay);
  will-change: opacity, transform;
}
.has-motion-js .animate.fade-in {
  transform: none;
}
.has-motion-js .animate.fade-up,
.has-motion-js .animate-stagger > * {
  transform: translate3d(0, var(--animation-distance), 0);
}
.has-motion-js .animate.fade-down {
  transform: translate3d(0, calc(var(--animation-distance) * -1), 0);
}
.has-motion-js .animate.fade-left {
  transform: translate3d(var(--animation-distance), 0, 0);
}
.has-motion-js .animate.fade-right {
  transform: translate3d(calc(var(--animation-distance) * -1), 0, 0);
}
.has-motion-js .animate.zoom-in {
  transform: scale(0.92);
}
.has-motion-js .animate.zoom-out {
  transform: scale(1.08);
}
.has-motion-js .animate.is-visible,
.has-motion-js .animate-stagger.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}
/* Animation speeds */
.animate.duration-fast {
  --animation-duration: 400ms;
}
.animate.duration-normal {
  --animation-duration: 700ms;
}
.animate.duration-slow {
  --animation-duration: 1100ms;
}
/* Animation delays */
.animate.delay-100 {
  --animation-delay: 100ms;
}
.animate.delay-200 {
  --animation-delay: 200ms;
}
.animate.delay-300 {
  --animation-delay: 300ms;
}
.animate.delay-400 {
  --animation-delay: 400ms;
}
.animate.delay-500 {
  --animation-delay: 500ms;
}
.animate.delay-600 {
  --animation-delay: 600ms;
}
.animate.delay-700 {
  --animation-delay: 700ms;
}
.animate.delay-800 {
  --animation-delay: 800ms;
}
/* Animation distances */
.animate.distance-small {
  --animation-distance: 20px;
}
.animate.distance-normal {
  --animation-distance: 40px;
}
.animate.distance-large {
  --animation-distance: 80px;
}
/* Staggered animations */
.has-motion-js .animate-stagger > *:nth-child(2) {
  --animation-delay: 120ms;
}
.has-motion-js .animate-stagger > *:nth-child(3) {
  --animation-delay: 240ms;
}
.has-motion-js .animate-stagger > *:nth-child(4) {
  --animation-delay: 360ms;
}
.has-motion-js .animate-stagger > *:nth-child(5) {
  --animation-delay: 480ms;
}
.has-motion-js .animate-stagger > *:nth-child(6) {
  --animation-delay: 600ms;
}
.has-motion-js .animate-stagger > *:nth-child(n + 7) {
  --animation-delay: 720ms;
}
/* Respect reduced-motion accessibility preference */
@media (prefers-reduced-motion: reduce) {
  .has-motion-js .animate,
  .has-motion-js .animate-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}
