/* reset */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}
html,
body {
  height: 100%;
  line-height: 1;
}
textarea,
button,
input {
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}
button {
  cursor: pointer;
  background-color: inherit;
}

/* fonts: woff2; Inter 700 only min-width 701px */
@font-face {
  font-family: 'Baloo 2';
  src: url('../Fonts/Baloo_2/static/Baloo2-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/static/Inter24pt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Fonts/Inter/static/Inter24pt-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@media (min-width: 701px) {
  @font-face {
    font-family: 'Inter';
    src: url('../Fonts/Inter/static/Inter24pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
}

:root {
  --color-primary: #3A3D20;
  --color-accent: #FF7F00;
  --color-bg-light: #F9F7F0;
  --color-text-dark: #2B2B00;
  --color-text-light: #FFF8E5;
}

/* COMMON */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 150%;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  color: #fff;
  background-color: var(--color-primary);
  font-size: 1rem;
  line-height: 110%;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(58, 61, 32, 0.2);
}

.button:hover, .button:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58, 61, 32, 0.3);
  background-color: #2d2f1a;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page > *:not(.page__main) {
  padding-top: 5.75rem;
}

.page > .testimonial {
  padding-top: 0 !important;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s, min-height 0.3s;
}

.header--scrolled {
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 7.5rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
  transition: min-height 0.3s;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__logo img {
  height: 11rem;
  padding: 1.5rem 0;
  width: auto;
  display: block;
  transition: height 0.3s, padding 0.3s;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #fff;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--color-text-light);
  background-color: var(--color-primary);
}

.menu__item--call-mobile {
  display: none;
}

.menu__link, .actions-header__button {
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
  transition: color 0.3s;
}

.menu__link:hover,
.menu__link:focus,
.menu__link:visited:hover,
.menu__link:visited:focus,
.actions-header__button:hover,
.actions-header__button:focus {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.menu__link:visited {
  color: var(--color-text-light);
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.menu__link {
  color: var(--color-text-light);
}

.menu__link--active,
.menu__link.menu__link--active,
.menu__item .menu__link.menu__link--active,
.menu__link.menu__link--active:visited,
.menu__item .menu__link.menu__link--active:visited {
  color: var(--color-accent) !important;
  text-decoration: none;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
  color: #fff;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-text-light);
  border-radius: 0.75rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
  background-color: transparent;
  text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}

.main {
  background: none;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.2) 22%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 1) 87%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 1;
}

/* hero bg */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.main__hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  contain: layout paint;
}

.main__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 88%;
  object-fit: cover;
  object-position: center 97%;
  z-index: 1;
  pointer-events: none;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
  padding-bottom: clamp(1.25rem, 4vh, 2.5rem);
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.title--main,
.main__text {
  position: relative;
  top: -0.5rem;
}

.main__text,
.about__text,
.item-services__text {
  font-size: 1.1rem !important;
  margin-bottom: 2.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--color-text-dark) !important;
}

.main__button {
  background: linear-gradient(90deg, #E06000 0%, var(--color-accent) 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.02em;
  font-size: 1.125rem;
  line-height: 110%;
  box-shadow: 0 4px 12px rgba(240, 128, 25, 0.3);
}

.main__button:hover, .main__button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 128, 25, 0.4);
  background: linear-gradient(90deg, #D55A00 0%, #E67300 100%);
}

.main__cta-group {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.main__trust-badges {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.main__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.main__trust-icon {
  display: inline-flex;
  width: 1.125rem;
  height: 1.125rem;
  color: #fff;
}

.main__trust-icon svg {
  width: 100%;
  height: 100%;
}

.main__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  padding: 0.75rem 1.25rem;
  box-sizing: border-box;
  background: rgba(32, 33, 36, 0.9);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  transition: background 0.2s;
  text-align: left;
}

.main__google-badge:hover,
.main__google-badge:focus {
  background: rgba(48, 49, 52, 0.95);
}

.main__google-badge:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.main__google-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.main__google-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.main__google-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main__google-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.main__google-logo svg {
  display: block;
}

/* ABOUT */

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
}

.about__image {
  position: relative;
  max-width: 34.5rem;
  height: 32.125rem;
  overflow: hidden;
  border-radius: 1rem;
}

.about__image img {
  max-width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: top;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
  color: var(--color-text-dark);
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.about {
  background-color: #fff;
}

.about__button.button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(240, 128, 25, 0.3);
}

.about__button.button:hover, .about__button.button:focus {
  transform: translateY(-1px);
  background: #E67300;
  box-shadow: 0 8px 24px rgba(240, 128, 25, 0.4);
}

/* SERVICES */

.services {
  background-color: var(--color-bg-light);
}

.pricing {
  background-color: var(--color-bg-light);
}

.services__container {
  padding-top: 0.75rem;
  padding-bottom: 2.75rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
}

.item-services__image {
  margin: 0 auto 2rem auto;
  width: 100%;
  height: 26.3125rem;
  overflow: hidden;
  border-radius: 16px;
}

.item-services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

/* FOOTER */

.footer {
  line-height: 150%;
  background: var(--color-primary);
  color: var(--color-text-light);
}

.footer a,
.footer__policy,
.footer__copyright {
  color: var(--color-text-light);
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
}

.footer__links {
  display: flex;
  gap: 0.75rem;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  justify-self: center;
}

.footer__logo img {
  height: 5rem;
  width: auto;
  display: block;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
}

/* PRICING */
.pricing__container {
  padding-top: 1.75rem;
  padding-bottom: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__text {
  font-size: 18px;
  letter-spacing: 2%;
  margin-bottom: 5.5rem;
}

.pricing__row {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.pricing__column {
  flex: 1 1 0;
  max-width: 350px;
  min-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  border: 2px solid #e1e4eb;
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0,0,0,0.04);
  border-top: 3px solid #d1d5db;
  transition: all 0.3s ease;
}

.pricing__column.best-offer {
  background: #fff8e5;
  border: 2px solid #e1e4eb;
  box-shadow: 0 8px 32px rgba(255, 127, 0, 0.15), 0 2px 8px rgba(0,0,0,0.06);
  border-top: 4px solid #E06000;
  transform: scale(1.05);
}

.pricing__column.best-offer:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 40px rgba(255, 127, 0, 0.2), 0 4px 12px rgba(0,0,0,0.08);
}

.pricing__item {
  padding: 30px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: stretch;
}

.item-pricing__info {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 1rem;
  min-height: 7.5rem;
}

.item-pricing__label {
  font-size: 2rem !important;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 0.1rem;
  text-align: left;
  letter-spacing: 0.01em;
}

.item-pricing__cost {
  font-size: 3.5rem !important;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  text-align: left;
  letter-spacing: 0.01em;
}

.item-pricing__list {
  margin-bottom: 1.5rem;
  min-height: 11.25rem;
}

.item-pricing__item {
  display: block !important;
  text-align: left !important;
}

.item-pricing__item::before {
  content: "";
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 0.75rem;
}

.item-pricing__button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 110%;
  box-shadow: 0 2px 8px rgba(255, 127, 0, 0.3);
  width: auto;
  align-self: center;
  transition: all 0.3s;
}

.item-pricing__button:hover, .item-pricing__button:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.4);
  background: #E67300;
}

.item-pricing__per {
  font-size: 2rem !important;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 0 rem;
  text-align: left;
  letter-spacing: 0.01em;
}

/* mobile: Inter 600 statt 700 */
@media (max-width: 700px) {
  .item-pricing__cost {
    font-weight: 600;
  }
  .logo {
    font-weight: 600;
  }
  b,
  strong {
    font-weight: 600;
  }
}

/* ADAPTIVE */

@media (max-width: 62.5rem) { /* 1000px */
  .footer__container,
  .footer__links,
  .footer__policy,
  .footer__copyright,
  .footer__logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 1rem;
    margin-bottom: 1rem;
  }
  .footer__copyright {
    margin-top: 1rem;
  }
  .resources__container {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__paggination {
    gap: 1.6875rem;
  }
  .gallery__row,
  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.875rem;
  }
  .director__container {
    flex-direction: column;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
    gap: 0.625rem;
    text-align: center;
  }
  .item-pricing {
    padding: 1.25rem;
    padding-bottom: 1.875rem;
  }
  .pricing__text {
    margin-bottom: 1.5625rem;
  }
  .item-pricing__button {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 48rem) { /* 768px */
  .header__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 5.75rem;
    position: relative;
  }
  .header__logo img {
    margin-left: 0;
    margin-right: 0;
    display: block;
    padding: 0.5rem 0;
    height: 4.25rem;
  }
  .header__navigation {
    margin-left: auto;
    gap: 0.5rem;
  }
  .header__actions {
    position: static;
    transform: none;
    margin-left: auto;
    align-items: center;
  }
  .item-services__image {
    height: auto;
    max-width: 100%;
    aspect-ratio: 360/421;
  }
  .item-services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 360/421;
  }
  .item-pricing__item {
    text-align: left;
    justify-content: flex-start;
  }
  .pricing__container {
    text-align: center;
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
  .pricing__row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .item-pricing__button {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
  .reviews__container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .actions-header__button {
    display: none;
  }
  .menu__item--call-mobile {
    display: block;
  }
  .icon-menu {
    display: block;
    position: relative;
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-text-light) !important;
  }
  .icon-menu::before { top: 0; }
  .icon-menu::after { bottom: 0; }
  .icon-menu span { top: calc(50% - 0.0625rem); }
  .menu-open .icon-menu span { width: 0; }
  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    transform: rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    transform: rotate(45deg);
  }
  .menu__body {
    background-color: var(--color-primary);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 9.375rem 0.938rem 1.875rem 0.938rem;
    overflow: auto;
    flex-direction: column;
    row-gap: 5rem;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    min-height: 5.75rem;
    background-color: var(--color-primary);
    border-bottom: none;
    z-index: 2;
  }
  .menu-open .menu__body { left: 0; }
  .menu-open .menu__body::before { left: 0; }
  .menu__item { text-align: center; }
  .menu__item:not(:last-child) { margin-bottom: 1.563rem; }
  .menu__link { font-size: 2rem; }
  .actions-header__button { padding: 0.75rem; }
  .main__container {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: clamp(7rem, 14vh, 9.5rem);
    padding-bottom: 1.25rem;
  }
  .main__trust-badges {
    margin-top: 0;
    gap: 0.2rem;
  }
  .main__trust-badge {
    font-size: 0.9rem;
    padding: 0.22rem 0.34rem;
    gap: 0.28rem;
    letter-spacing: 0;
  }
  .main__trust-icon {
    width: 1rem;
    height: 1rem;
  }
  .about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about__container {
    flex-direction: column;
    padding-top: 0.75rem;
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .about__text {
    margin-bottom: 1.25rem;
  }
  .about__title-mobile {
    margin-bottom: 1rem;
  }
  .services__container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .services__row {
    gap: 1rem;
  }
  .logo { font-size: 1rem; }
  .about__title-mobile,
  .about__title {
    text-align: center !important;
    align-self: center !important;
  }
  .services__container {
    padding-top: 0.25rem;
  }
}

@media (max-width: 36rem) { /* 576px */
  .reviews__row,
  .team__row,
  .gallery__row,
  .resources__container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 1rem;
  }
}

@media (max-width: 62.6875rem) {
  .item-pricing__button {
    font-size: 1rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 693px) {
  .menu__body {
    background-color: transparent !important;
  }
  .menu__body::before {
    background-color: transparent !important;
    border-bottom: none;
  }
}

/* body-text */
.body-text {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 150%;
  letter-spacing: 0.02em;
}

.main__text,
.about__text,
.item-services__text,
.pricing__text,
.contact-section__value {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
}

.about__text {
  max-width: 30rem;
  margin-bottom: 3.5rem;
}

.item-services__text {
  max-width: 21.5rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing__text {
  margin-bottom: 5.5rem;
}

.contact-section__value {
  margin: 0;
}

.text-white {
  color: #fff !important;
}

@media (max-width: 900px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .footer__links {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .footer__copyright {
    margin-top: 1rem;
  }
}

html {
  scroll-behavior: smooth;
}

/* testimonial gallery */
.testimonial-gallery__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.testimonial-gallery__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

.testimonial-gallery__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}

.testimonial-gallery__slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 350px;
}

.testimonial-gallery__slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.testimonial-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-gallery__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  background: transparent !important;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0;
}

.testimonial-gallery__text {
  padding: 2rem 2rem 1.5rem 2rem;
  font-size: 18px;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  background: #3a3d20b4;
  color: #fff;
}

.testimonial-gallery__author {
  margin-top: 1rem;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  font-size: 1rem;
}

.testimonial-gallery__arrow {
  background: rgba(48,58,77,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0.85;
}
.testimonial-gallery__arrow:hover,
.testimonial-gallery__arrow:focus {
  background: #FF7F00;
  color: #fff;
  opacity: 1;
}
.testimonial-gallery__arrow--left {
  left: 16px !important;
}
.testimonial-gallery__arrow--right {
  right: 32px !important;
}

@media (max-width: 700px) {
  .testimonial-gallery__container {
    max-width: 98vw;
    padding: 2rem 0;
  }
  .testimonial-gallery__viewport {
    max-width: 95vw;
  }
  .testimonial-gallery__slide {
    height: 220px;
  }
  .testimonial-gallery__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    left: auto !important;
    right: auto !important;
  }
}

/* testimonial full */
.testimonial {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #fff !important;
  background-color: #fff !important;
  padding: 0;
  margin: 0;
  min-height: 80vh;
  width: 100vw;
}

.testimonial-gallery__container--full {
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-gallery__viewport {
  width: 100vw;
  height: 80vh;
  max-width: 100vw;
  max-height: 80vh;
  border-radius: 0;
  box-shadow: none;
}

.testimonial-gallery__track {
  height: 80vh;
}

.testimonial-gallery__slide {
  height: 80vh;
  min-width: 100vw;
}

.testimonial-gallery__slide img {
  border-radius: 0;
}

.testimonial-gallery__overlay {
  border-radius: 0;
}

.testimonial-gallery__arrow {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

@media (max-width: 700px) {
  .testimonial-gallery__container--full,
  .testimonial-gallery__viewport {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
  }
  .testimonial-gallery__slide {
    height: 100vh;
    min-width: 100vw;
  }
}

.testimonial-gallery__container,
.testimonial-gallery__container--full {
  padding: 0 !important;
  margin: 0 !important;
  height: 80vh !important;
  min-height: 80vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  box-sizing: border-box !important;
}

@media (max-width: 700px) {
  .testimonial-gallery__container,
  .testimonial-gallery__container--full {
    padding: 0 !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
  }
}

.testimonial-gallery__slide--ollie img {
  object-position: left center !important;
}

.testimonial-gallery__slide--monty img {
  object-position: left center !important;
}

@media (max-width: 700px) {
  .testimonial-gallery__arrow--left {
    left: 16px !important;
    right: auto !important;
  }
  .testimonial-gallery__arrow--right {
    right: 16px !important;
    left: auto !important;
    margin-right: 12px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 700px) {
  .services__row {
    grid-template-columns: 1fr;
  }
}

.about__container .title {
  text-align: left;
}

/* contact */
.contact-section {
  background: #fff;
  margin: 0;
  padding: 6rem 1.25rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-section__container {
  max-width: 71.25rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  min-height: 40vh;
  gap: 0;
}

.contact-section__form {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 55%;
  display: flex;
  justify-content: center;
}

.contact-section__form-inner {
  background: #fff8e5;
  border-radius: 1.25rem;
  border-top: 4px solid #E06000;
  box-shadow: 0 8px 32px rgba(255, 127, 0, 0.15), 0 2px 8px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  box-shadow: 0 0.125rem 0.75rem rgba(30,41,59,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 37.5rem;
  min-width: 25rem;
}

.contact-section__input,
.contact-section__textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.1875rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-section__input:focus,
.contact-section__textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  border-width: 2px;
}

.contact-section__button {
  background: linear-gradient(90deg, #E06000 0%, var(--color-accent) 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(255, 127, 0, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  line-height: 110%;
}

.contact-section__button:hover, .contact-section__button:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 127, 0, 0.4);
  background: linear-gradient(90deg, #D55A00 0%, #E67300 100%);
}

.contact-section__call {
  margin-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-section__button--secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: none;
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}

.contact-section__button--secondary:hover,
.contact-section__button--secondary:focus {
  background: rgba(255, 127, 0, 0.08);
  box-shadow: none;
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .contact-section__container {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-section__form {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .contact-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .contact-section__container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
  .contact-section__form,
  .contact-section__form-inner {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .contact-section {
    padding-top: 1rem !important;
  }
}

/* FAQ */
.faq {
  margin-top: 4rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  width: calc(100% + 2.5rem);
  padding: 4rem 1.25rem 4rem;
  background: var(--color-bg-light);
  box-sizing: border-box;
}

.faq__title {
  margin-bottom: 2rem;
  max-width: 72.624rem;
  margin-left: auto;
  margin-right: auto;
}

.spollers-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 72.624rem;
  margin: 0 auto;
}

.faq .spollers-faq__item {
  background: #fff !important;
  border: 2px solid #e1e4eb !important;
  border-radius: 1.25rem !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0,0,0,0.04) !important;
  border-top: 3px solid #d1d5db !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .spollers-faq__item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0,0,0,0.08) !important;
}

.faq .spollers-faq__item.active {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0,0,0,0.08) !important;
}

.spollers-faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-dark);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.spollers-faq__button:hover,
.spollers-faq__button:focus {
  color: var(--color-accent);
  outline: none;
}

.spollers-faq__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform 0.3s ease;
}

.spollers-faq__item.active .spollers-faq__arrow {
  transform: rotate(180deg);
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem;
  margin: 0;
}

.spollers-faq__text.body-text {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 0;
}

.spollers-faq__item.active .spollers-faq__text {
  padding-bottom: 1.25rem;
}

@media (max-width: 700px) {
  .faq {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 2.5rem;
  }
  .spollers-faq {
    gap: 0.75rem;
  }
  .spollers-faq__button {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
  .spollers-faq__text,
  .spollers-faq__text.body-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .spollers-faq__item.active .spollers-faq__text {
    padding-bottom: 1rem;
  }
}

/* headings */
h1 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-align: center;
}

h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem !important;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  text-align: left;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 2.25rem;
    margin-bottom: 1.2rem;
  }
  h3 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
  }
}

.header--scrolled .header__container {
  min-height: 3.5rem;
  transition: min-height 0.3s;
}

.header--scrolled .header__logo img {
  height: 4.5rem;
  padding: 0.25rem 0;
  transition: height 0.3s, padding 0.3s;
}

@media (max-width: 612px) {
  .header--scrolled .header__container {
    min-height: 2.5rem;
  }
  .header--scrolled .header__logo img {
    height: 3rem;
    padding: 0.15rem 0;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: var(--color-accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: bold;
  text-align: center;
  transition: left 0.2s;
}
.skip-link:focus {
  left: 50%;
  top: 0;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.testimonial > .title {
  margin-top: 2rem;
}

.about__title {
  order: 0;
  flex: 1 1 100%;
  text-align: left;
  margin-bottom: 0;
  display: block;
}

.about__title-mobile {
  display: none;
}

.about__title-desktop {
  display: block;
}

@media (max-width: 768px) {
  .about__title-mobile {
    display: block;
    text-align: center;
    margin-bottom: 0.15rem;
    order: 0;
  }
  .about__title-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .about__container {
    flex-direction: column;
    align-items: stretch;
  }
  .about__title {
    order: 0;
    margin-bottom: 0rem;
    text-align: center;
  }
  .about__image {
    order: 1;
  }
  .about__content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .pricing__row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .pricing__column {
    max-width: 100% !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 0 1.5rem 0;
  }
}

/* imprint */
.imprint-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary);
  z-index: 100;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0.75rem 0 0.75rem 2rem;
}
@media (max-width: 700px) {
  .imprint-header {
    padding: 0.5rem 0 0.5rem 1rem;
  }
}
.imprint-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 80vh;
  background-color: var(--color-primary);
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}
.imprint-main::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3rem;
  height: 3rem;
  background: var(--color-primary);
  z-index: 1;
}
.imprint-logo {
  margin: 0 !important;
}
.imprint-logo img {
  height: 7rem;
  width: auto;
  display: block;
  margin: 0 !important;
}
@media (max-width: 700px) {
  .imprint-logo img {
    height: 4.5rem;
  }
}
.imprint-title {
  margin: 0 0 0 0;
  color: var(--color-text-light);
}
.imprint-content {
  max-width: 700px;
  margin: 0 auto 0.5rem auto;
  color: var(--color-text-light);
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 700px) {
  .imprint-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.back-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-text-light);
  border: 1.5px solid var(--color-text-light);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: none;
}
.back-nav-btn:hover, .back-nav-btn:focus {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.back-nav-btn svg {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

@media (max-width: 700px) {
  .testimonial,
  .testimonial-gallery__container,
  .testimonial-gallery__container--full {
    min-height: unset !important;
    height: auto !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .testimonial > .title {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .testimonial-gallery__slide {
    height: auto !important;
    min-width: 100vw;
  }
  .testimonial-gallery__viewport {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
  }
  .pricing {
    margin-top: 0 !important;
    padding-top: 0rem !important;
  }
}

.pricing__item,
.pricing__column,
.pricing__container {
  text-align: unset !important;
}
.item-pricing__list,
.item-pricing__list *,
.item-pricing__item,
.item-pricing__item *,
.item-pricing__list .body-text,
.item-pricing__item .body-text {
  text-align: left !important;
}

/* about mobile overrides */
@media (max-width: 48rem) {
  .about__text {
    margin-bottom: 1.25rem !important;
  }
  .about__container {
    padding-bottom: 2.5rem !important;
  }
  .about__content {
    padding-bottom: 0.25rem;
  }
  .about__button.button {
    margin-bottom: 1.25rem;
  }
  section.page__about.about {
    padding-bottom: 1rem;
  }
}

/* LCP: content-visibility below fold */
.page > .about,
.page > .services,
.page > .testimonial,
.page > .pricing {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
}
