@font-face {
  font-family: "Oxygen Cubs";
  src: url("../fonts/oxygen-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Oxygen Cubs";
  src: url("../fonts/oxygen-light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Oxygen Cubs";
  src: url("../fonts/oxygen-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Cubs";
  src: url("../fonts/titillium-thin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

:root {
  --cubs-burgundy: #5b293b;
  --cubs-burgundy-light: #814a61;
  --cubs-link-muted: #a66982;
  --cubs-text: #2f2f2f;
  --cubs-dark: #262626;
  --cubs-darker: #171717;
  --cubs-light: #f3f3f3;
  --cubs-container: 1170px;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--cubs-text);
  font-family: "Oxygen Cubs", Tahoma, Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 3px;
  background: silver;
}

body::-webkit-scrollbar-thumb {
  background: #282828;
}

::selection {
  background: var(--cubs-burgundy-light);
  color: #fff;
}

a {
  color: var(--cubs-burgundy);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

a:hover,
a:focus-visible {
  color: var(--cubs-burgundy-light);
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: #fff;
  color: var(--cubs-burgundy);
  font-weight: 700;
}

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

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 124px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: height 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header__inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 40px 0 55px;
}

.site-logo {
  flex: 0 0 auto;
  margin-top: 34px;
}

.site-logo img {
  width: 185px;
  height: 52px;
  transition: width 0.25s ease, height 0.25s ease;
}

.site-nav {
  margin-left: auto;
}

.site-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu > li {
  position: relative;
  height: 124px;
  padding: 40px 0 31px;
  border-bottom: 11px solid transparent;
  transition: border-color 0.4s ease;
}

.site-menu > li:hover,
.site-menu > li.current-menu-item,
.site-menu > li.current_page_item,
.site-menu > li.current-menu-ancestor,
.site-menu > li.current-page-ancestor {
  border-bottom-color: var(--cubs-burgundy);
}

.site-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 34px;
  padding: 7px 9px;
  border: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

.site-header.is-sticky {
  position: fixed;
  height: 60px;
  background: var(--cubs-dark);
  border-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

body.admin-bar .site-header.is-sticky {
  top: 32px;
}

.site-header.is-sticky .site-header__inner {
  padding-right: 55px;
}

.site-header.is-sticky .site-logo {
  margin-top: 10px;
}

.site-header.is-sticky .site-logo img {
  width: 120px;
  height: auto;
}

.site-header.is-sticky .site-menu > li {
  height: 60px;
  padding: 0;
  border-bottom: 0;
}

.site-header.is-sticky .site-menu a {
  height: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.site-header.is-sticky .site-menu > li.current-menu-item a,
.site-header.is-sticky .site-menu > li.current_page_item a,
.site-header.is-sticky .site-menu > li.current-menu-ancestor a,
.site-header.is-sticky .site-menu > li.current-page-ancestor a,
.site-header.is-sticky .site-menu a:hover {
  color: var(--cubs-link-muted);
}

/* Home */
.home-stage {
  position: relative;
  min-height: 1270px;
  overflow: hidden;
  background: #fff;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 733px;
}

.hero-slide {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide--1 { background-image: url("../images/slide1.jpg"); }

.home-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 246px;
  text-align: center;
  color: #fff;
  animation: cubs-fade-down 0.8s both;
}

.home-hero-copy h1 {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 3.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
  text-transform: none;
}

.home-hero-copy p {
  margin: 3px 0 15px;
  font-family: "Titillium Cubs", Tahoma, Arial, sans-serif;
  font-size: 36px;
  font-weight: 200;
  line-height: 1.35;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 50px;
  margin-top: 4px;
  background: var(--cubs-burgundy);
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.hero-button:hover,
.hero-button:focus-visible {
  background: #fff;
  color: var(--cubs-burgundy);
}

.carousel-dots {
  position: absolute;
  z-index: 4;
  top: 588px;
  left: 50%;
  display: flex;
  gap: 3px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 25px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: rgba(255, 255, 255, 0.65);
}

.services-grid {
  position: absolute;
  z-index: 5;
  top: 638px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--cubs-container), calc(100% - 30px));
  transform: translateX(-50%);
}

.service-tile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 188px;
  overflow: hidden;
  color: var(--cubs-text);
}

.service-image,
.service-name {
  min-width: 0;
  height: 188px;
}

.service-image {
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(100%) contrast(70%);
  transform: scale(1.001);
  transition: filter 1s ease, transform 1s ease;
}

.service-name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
  color: var(--cubs-text);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  text-align: center;
}

.service-tile:hover .service-image,
.service-tile:focus-visible .service-image {
  filter: grayscale(0) contrast(100%);
  transform: scale(1.2);
}

.service-tile:hover .service-name,
.service-tile:focus-visible .service-name {
  background: var(--cubs-burgundy);
  color: #fff;
}

.service-tile--1 .service-image { background-image: url("../images/panel1.jpg"); }
.service-tile--2 .service-image { background-image: url("../images/panel2.jpg"); }
.service-tile--3 .service-image { background-image: url("../images/panel3.jpg"); order: 2; }
.service-tile--3 .service-name { order: 1; }
.service-tile--4 .service-image { background-image: url("../images/panel4.jpg"); order: 2; }
.service-tile--4 .service-name { order: 1; }
.service-tile--5 .service-image { background-image: url("../images/panel5.jpg"); }
.service-tile--6 .service-image { background-image: url("../images/panel6.jpg"); }

.home-seo-copy {
  padding: 72px 15px;
  background: #fff;
}

.home-seo-copy__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 80px;
  width: min(var(--cubs-container), 100%);
  margin: 0 auto;
}

.home-seo-copy h2 {
  margin: 0 0 18px;
  color: var(--cubs-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.home-seo-copy p {
  margin: 0 0 16px;
  line-height: 1.9;
}

.home-seo-copy__services ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.home-seo-copy__services li {
  border-bottom: 1px solid #e7e1e3;
}

.home-seo-copy__services li:first-child {
  border-top: 1px solid #e7e1e3;
}

.home-seo-copy__services li a {
  display: block;
  padding: 9px 0;
}

.home-seo-copy__cta,
.service-cta a,
.pricing-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 24px;
  background: var(--cubs-burgundy);
  color: #fff;
}

.home-seo-copy__cta:hover,
.home-seo-copy__cta:focus-visible,
.service-cta a:hover,
.service-cta a:focus-visible,
.pricing-cta a:hover,
.pricing-cta a:focus-visible {
  background: var(--cubs-burgundy-light);
  color: #fff;
}

/* Shared subpages */
.subpage-stage {
  min-height: 620px;
  padding-top: 205px;
  background-color: #fff;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 408px;
}

.subpage-stage--offer { background-image: url("../images/sub1.jpg"); }
.subpage-stage--about { background-image: url("../images/sub2.jpg"); }
.subpage-stage--news { background-image: url("../images/sub3.jpg"); }
.subpage-stage--promotion { background-image: url("../images/sub4.jpg"); }
.subpage-stage--pricing,
.subpage-stage--default { background-image: url("../images/sub5.jpg"); }
.subpage-stage--contact { background-image: url("../images/sub6.jpg"); }

.subpage-title {
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-align: center;
  text-transform: none;
}

.subpage-card {
  width: min(var(--cubs-container), calc(100% - 30px));
  min-height: 150px;
  padding: 65px 80px;
  margin: 125px auto 70px;
  background: #fff;
  color: var(--cubs-text);
}

.entry-content {
  color: var(--cubs-text);
  font-family: "Oxygen Cubs", Tahoma, Arial, Verdana, sans-serif;
  font-size: 14px;
  line-height: 2;
}

.entry-content::after {
  display: block;
  clear: both;
  content: "";
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.news-card h2,
.news-detail__title {
  padding: 0;
  margin: 0 0 20px;
  color: var(--cubs-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

.entry-content li {
  margin: 0;
  line-height: 2.5;
}

.entry-content iframe,
.entry-content video {
  max-width: 100%;
}

.privacy-policy-card {
  max-width: 970px;
}

.privacy-policy-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
}

.privacy-policy-content h2 {
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.35;
}

.privacy-policy-content h2:first-child {
  margin-top: 0;
}

.privacy-policy-content li {
  margin-bottom: 8px;
}

.error-card {
  font-size: 14px;
}

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.about-photo {
  width: 350px;
}

.about-copy {
  padding-top: 10px;
  text-align: justify;
}

.about-signature {
  width: 142px;
  margin: 24px 0 0 auto;
}

/* Offer */
.offer-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 50px;
}

.offer-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.offer-nav li {
  border-bottom: 1px solid #e1e1e1;
}

.offer-nav li:last-child {
  border-bottom: 0;
}

.offer-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 89px;
  padding: 18px 24px;
  color: var(--cubs-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.offer-nav li.is-current a,
.offer-nav a:hover,
.offer-nav a:focus-visible {
  background: var(--cubs-burgundy);
  color: #fff;
}

.offer-content {
  padding-top: 14px;
}

.service-cta {
  padding: 24px;
  margin-top: 34px;
  border-left: 4px solid var(--cubs-burgundy);
  background: #f7f1f3;
}

.service-cta h2 {
  margin-bottom: 10px;
}

.service-cta p {
  margin-bottom: 16px;
}

/* News */
.news-list {
  display: grid;
  gap: 40px;
}

.news-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.news-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.news-card__image {
  display: block;
  width: 230px;
  height: 140px;
  overflow: hidden;
  background: #eee;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(70%);
  transition: filter 1s ease, transform 1s ease;
}

.news-card__image:hover img,
.news-card__image:focus-visible img {
  filter: grayscale(0) contrast(100%);
  transform: scale(1.04);
}

.news-card h2 {
  margin-bottom: 5px;
}

.news-card h2 a {
  color: var(--cubs-text);
}

.news-card__content p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 24px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-more {
  display: inline-block;
  margin-top: 9px;
  color: var(--cubs-burgundy);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-more:hover,
.news-more:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 55px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border: 1px solid #ddd;
  color: var(--cubs-text);
  font-size: 18px;
}

.pagination a.is-current,
.pagination a:hover,
.pagination a:focus-visible {
  border-color: var(--cubs-burgundy);
  background: var(--cubs-burgundy);
  color: #fff;
}

.news-detail__image {
  float: left;
  width: 260px;
  height: 160px;
  margin: 0 24px 15px 0;
  object-fit: cover;
}

.news-detail__title {
  margin-bottom: 18px;
}

.archive-notice {
  padding: 12px 16px;
  margin: 0 0 20px !important;
  border-left: 4px solid var(--cubs-burgundy);
  background: #f7f1f3;
  color: #4d3941;
}

.news-detail .entry-content,
.news-detail .entry-content *:not(a) {
  font-family: "Oxygen Cubs", Tahoma, Arial, Verdana, sans-serif !important;
}

.news-detail .entry-content p,
.news-detail .entry-content span,
.news-detail .entry-content font {
  font-size: 14px !important;
  line-height: 2 !important;
}

/* Prices */
.price-list {
  display: grid;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 173px;
  gap: 25px;
  min-height: 125px;
  align-items: center;
}

.price-row h2 {
  margin-bottom: 10px;
}

.price-row__description p {
  margin-bottom: 0;
}

.price-row__price {
  color: var(--cubs-burgundy);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.pricing-cta {
  padding: 45px 30px 0;
  text-align: center;
}

.pricing-cta p {
  margin: 0 0 18px;
  font-size: 18px;
}

/* Contact */
.contact-card {
  padding: 65px 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 1040px;
  min-height: 347px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 347px;
  padding: 34px 55px;
  background: var(--cubs-light);
  color: var(--cubs-text);
  font-size: 14px;
  line-height: 1.9;
}

.contact-info h2 {
  margin: 0 0 18px;
  color: var(--cubs-burgundy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.06;
  text-transform: uppercase;
}

.contact-info p {
  margin: 0 0 14px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info a {
  color: var(--cubs-text);
  font-weight: 700;
  text-decoration: underline;
}

.contact-map,
.contact-map iframe {
  width: 100%;
  min-height: 347px;
  border: 0;
}

.contact-map {
  position: relative;
  background: var(--cubs-light);
}

.contact-map iframe {
  display: block;
  filter: grayscale(100%);
}

.contact-map__external-link {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  max-width: calc(100% - 32px);
  min-height: 38px;
  padding: 7px 12px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--cubs-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-decoration: underline;
}

.contact-map__external-link:hover,
.contact-map__external-link:focus-visible {
  background: #fff;
  color: var(--cubs-burgundy);
}

.contact-form-section {
  padding: 0 15px 70px;
  background: #fff;
}

.contact-form-inner {
  width: min(var(--cubs-container), 100%);
  padding: 20px 60px 0;
  margin: 0 auto;
}

.contact-form-inner > h2 {
  margin: 0 0 52px;
  color: var(--cubs-text);
  font-size: 24px;
  font-weight: 400;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: var(--cubs-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  height: 46px;
  padding: 10px 16px;
}

.contact-form textarea {
  min-height: 194px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cubs-burgundy);
  box-shadow: 0 0 0 2px rgba(91, 41, 59, 0.12);
}

.contact-form button {
  width: 100%;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: var(--cubs-burgundy);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--cubs-burgundy-light);
}

.contact-form__privacy {
  margin: 0;
  color: #555;
  font-size: 12px;
  line-height: 1.65;
}

.contact-form__privacy a {
  font-weight: 700;
  text-decoration: underline;
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-notice {
  padding: 13px 16px;
  margin: -30px 0 24px;
  border-left: 4px solid var(--cubs-burgundy);
  background: #f7f1f3;
}

.form-notice--success {
  border-color: #287a46;
  background: #eff8f2;
}

/* Footer */
.contact-strip {
  min-height: 279px;
  background: var(--cubs-dark) url("../images/footer.gif") center top / auto 277px no-repeat;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}

.contact-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: min(975px, calc(100% - 30px));
  min-height: 279px;
  margin: 0 auto;
}

.contact-strip__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 43px;
  text-align: center;
}

.contact-strip__column--address {
  background: url("../images/line.png") center right no-repeat;
}

.contact-strip h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.9;
}

.contact-strip p {
  margin: 0;
}

.contact-strip a,
.site-footer a {
  color: #fff;
}

.contact-strip a:hover,
.site-footer a:hover {
  color: var(--cubs-link-muted);
}

.site-footer {
  min-height: 80px;
  background: var(--cubs-darker);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: min(975px, calc(100% - 30px));
  min-height: 80px;
  margin: 0 auto;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer__credit {
  display: inline-block;
  white-space: nowrap;
}

.facebook-link {
  display: inline-flex;
  justify-self: center;
  width: 58px;
  height: 58px;
}

.facebook-link svg {
  width: 58px;
  height: 58px;
  fill: currentColor;
}

.scroll-top {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 50px;
  display: none;
  width: 41px;
  height: 41px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--cubs-burgundy) url("../images/to-top.png") center center no-repeat;
  cursor: pointer;
}

.scroll-top.is-visible {
  display: block;
}

.scroll-top:hover {
  background-position: center 10px;
}

@keyframes cubs-fade-down {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1320px) {
  .site-menu a {
    padding-right: 17px;
    padding-left: 17px;
  }
}

@media (max-width: 990px) {
  .site-header__inner {
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 40px 0 55px;
  }

  .site-logo img {
    width: 130px;
    height: auto;
  }

  .site-logo {
    margin-top: 41px;
  }

  .menu-toggle {
    display: block;
    margin-top: 42px;
  }

  .site-nav {
    position: absolute;
    top: 123px;
    right: 40px;
    left: 55px;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--cubs-burgundy);
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 520px;
    visibility: visible;
    opacity: 1;
  }

  .site-menu {
    display: block;
  }

  .site-menu > li,
  .site-header.is-sticky .site-menu > li {
    height: 71px;
    padding: 0;
    border: 0;
  }

  .site-menu a,
  .site-header.is-sticky .site-menu a {
    justify-content: center;
    width: 100%;
    height: 71px;
    padding: 0 15px;
    color: #fff;
  }

  .site-menu > li.current-menu-item a,
  .site-menu > li.current_page_item a,
  .site-menu > li.current-menu-ancestor a,
  .site-menu > li.current-page-ancestor a,
  .site-menu a:hover,
  .site-menu a:focus-visible,
  .site-header.is-sticky .site-menu > li.current-menu-item a,
  .site-header.is-sticky .site-menu > li.current-menu-ancestor a,
  .site-header.is-sticky .site-menu > li.current-page-ancestor a,
  .site-header.is-sticky .site-menu a:hover {
    background: var(--cubs-burgundy-light);
    color: #fff;
  }

  .site-header.is-sticky .site-header__inner {
    padding: 0 20px;
  }

  .site-header.is-sticky .site-logo {
    margin-top: 11px;
  }

  .site-header.is-sticky .menu-toggle {
    margin-top: 13px;
  }

  .site-header.is-sticky .site-nav {
    top: 60px;
    right: 20px;
    left: 20px;
  }

  .about-layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .offer-layout {
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 35px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header.is-sticky {
    top: 46px;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    padding: 0 55px;
  }

  .home-stage {
    min-height: 1700px;
  }

  .hero-slides,
  .hero-slide {
    height: 733px;
  }

  .home-hero-copy {
    padding: 177px 18px 0;
  }

  .home-hero-copy h1 {
    font-size: 44px;
    line-height: 1.08;
  }

  .home-hero-copy p {
    margin-top: 12px;
    font-size: 27px;
    line-height: 1.25;
  }

  .hero-button {
    margin-top: 15px;
  }

  .carousel-dots {
    top: 465px;
  }

  .services-grid {
    top: 500px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-tile--3 .service-image,
  .service-tile--4 .service-image {
    order: 1;
  }

  .service-tile--3 .service-name,
  .service-tile--4 .service-name {
    order: 2;
  }

  .home-seo-copy {
    padding: 55px 30px;
  }

  .home-seo-copy__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .subpage-stage {
    padding-top: 205px;
    background-size: auto 408px;
  }

  .subpage-title {
    font-size: 50px;
    line-height: 1.1;
  }

  .subpage-card {
    padding: 65px 30px;
    margin-top: 150px;
    margin-bottom: 70px;
  }

  .about-layout,
  .offer-layout {
    display: block;
  }

  .about-photo {
    display: none;
  }

  .about-copy {
    padding-top: 0;
  }

  .offer-nav {
    margin: -20px 0 55px;
  }

  .offer-content {
    padding-top: 0;
  }

  .entry-content li {
    margin-bottom: 8px;
    line-height: 2;
  }

  .news-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .news-card__image {
    width: 230px;
    max-width: 100%;
  }

  .news-detail__image {
    float: none;
    width: 100%;
    height: auto;
    max-height: 320px;
    margin: 0 0 24px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 235px;
    align-content: center;
    text-align: center;
  }

  .price-row__price {
    padding-bottom: 24px;
  }

  .contact-card {
    padding: 65px 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 327px;
  }

  .contact-info {
    padding: 34px 42px;
  }

  .contact-form-inner {
    padding: 20px 0 0;
  }

  .contact-form-inner > h2 {
    font-size: 22px;
  }

  .contact-strip {
    min-height: 450px;
    background-size: auto 450px;
  }

  .contact-strip__inner {
    grid-template-columns: 1fr;
    min-height: 450px;
  }

  .contact-strip__column {
    min-height: 225px;
    padding-top: 28px;
  }

  .contact-strip__column--address {
    background: none;
  }

  .contact-strip h2 {
    font-size: 34px;
    line-height: 1.65;
  }

  .site-footer,
  .site-footer__inner {
    min-height: 150px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 12px;
  }

  .scroll-top {
    display: none !important;
  }

}

@media (max-width: 480px) {
  .site-header__inner {
    padding: 0 40px 0 55px;
  }

  .site-nav {
    right: 40px;
    left: 55px;
  }

  .home-hero-copy h1 {
    font-size: 38px;
  }

  .home-hero-copy p {
    font-size: 24px;
  }

  .home-hero-copy {
    padding-top: 160px;
  }

  .carousel-dots {
    top: 485px;
  }

  .services-grid {
    top: 520px;
  }

  .service-name {
    padding: 12px;
    font-size: 15px;
  }

  .subpage-title {
    padding: 0 15px;
    font-size: 48px;
  }

  .subpage-stage--privacy .subpage-title {
    font-size: 36px;
  }

  .privacy-policy-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .news-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 23 / 14;
  }
}

@media (max-width: 340px) {
  .home-hero-copy {
    padding: 150px 12px 0;
  }

  .home-hero-copy h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .home-hero-copy p {
    margin-top: 9px;
    font-size: 21px;
    line-height: 1.18;
  }

  .hero-button {
    height: 46px;
    margin-top: 10px;
  }

  .carousel-dots {
    top: 473px;
  }

  .services-grid {
    top: 508px;
  }
}

@media (min-width: 1681px) {
  .subpage-stage {
    background-size: 100% 408px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
