@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1A2A3A;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

h1,
.h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #1A2A3A;
}

h2,
.h2 {
  font-size: clamp(1.875rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #1A2A3A;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #1A2A3A;
}

h4,
.h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #1A2A3A;
}

h5,
.h5 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #1A2A3A;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #1A2A3A;
}

p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 40px;
  }
  h3,
  .h3 {
    font-size: 24px;
  }
}
.topbar {
  background-color: #1A2A3A;
  color: #ffffff;
  font-size: 16px;
  height: 44px;
  position: relative;
  z-index: 1030;
  overflow-x: clip;
}
.topbar__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .topbar__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.topbar__phone {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .topbar__phone {
    display: flex;
  }
}
.topbar__phone a {
  color: #ffffff;
  transition: color 0.25s ease;
}
.topbar__phone a:hover {
  color: #C97E3A;
}
.topbar__phone svg {
  width: 16px;
  height: 16px;
  fill: #C97E3A;
  flex-shrink: 0;
}
.topbar__ticker {
  flex: 1;
  overflow: hidden;
  height: 25.6px;
  min-width: 0;
  position: relative;
}
@media (min-width: 768px) {
  .topbar__ticker {
    position: absolute;
    left: 50%;
    top: 50%;
    flex: none;
    width: min(100%, 640px);
    max-width: calc(100% - 280px);
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
}
.topbar__ticker-track {
  display: flex;
  flex-direction: column;
  animation: topbar-slide-vertical 12s ease-in-out infinite;
}
.topbar__ticker-item {
  flex-shrink: 0;
  height: 25.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 8px;
}
.topbar__ticker-item strong {
  color: #C97E3A;
  font-weight: 600;
}
.topbar__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .topbar__social {
    display: flex;
  }
}
.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  transition: color 0.25s ease;
}
.topbar__social-link:hover {
  color: #C97E3A;
}
.topbar__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes topbar-slide-vertical {
  0%, 25% {
    transform: translateY(0);
  }
  33%, 58% {
    transform: translateY(-33.333%);
  }
  66%, 91% {
    transform: translateY(-66.666%);
  }
  100% {
    transform: translateY(0);
  }
}
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e0dc;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.site-header__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .site-header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
@media (min-width: 1200px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
}
.site-header__logo {
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .site-header__logo {
    justify-self: start;
  }
}
.site-header__logo a {
  display: flex;
  align-items: center;
}
.site-header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1A2A3A;
  letter-spacing: -0.02em;
  line-height: 1;
}
.site-header__logo-text span {
  color: #C97E3A;
}
.site-header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .site-header__nav {
    display: block;
    justify-self: center;
  }
}
.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.site-header__menu-item {
  position: relative;
}
.site-header__menu-item.is-open > .site-header__menu-link--has-dropdown svg, .site-header__menu-item:focus-within > .site-header__menu-link--has-dropdown svg {
  transform: rotate(180deg);
}
.site-header__menu-item.is-open > .site-header__menu-link--has-dropdown, .site-header__menu-item:focus-within > .site-header__menu-link--has-dropdown {
  color: #C97E3A;
}
.site-header__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: #1A2A3A;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}
.site-header__menu-link:hover {
  color: #C97E3A;
}
.site-header__menu-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .site-header__actions {
    justify-self: end;
  }
}
.site-header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-header__icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #1A2A3A;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.site-header__icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.site-header__icon-btn--search {
  background-color: #C97E3A;
  color: #ffffff;
}
.site-header__icon-btn--search:hover {
  background-color: #a8682e;
  color: #ffffff;
}
.site-header__icon-btn--chat {
  background-color: #1A2A3A;
  color: #ffffff;
}
.site-header__icon-btn--chat:hover {
  background-color: #243447;
  color: #ffffff;
}
.site-header__cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #C97E3A;
  border-radius: 6px;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .site-header__cta {
    display: inline-flex;
  }
}
.site-header__cta:hover {
  background-color: #a8682e;
  color: #ffffff;
}
.site-header__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #1A2A3A;
}
@media (min-width: 1200px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 14px;
  box-shadow: 0 20px 56px rgba(26, 42, 58, 0.14);
  z-index: 1040;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__menu-item.is-open > .mega-menu, .site-header__menu-item:focus-within > .mega-menu {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}
.mega-menu__inner {
  padding: 14px;
}
.mega-menu__cards {
  display: grid;
  gap: 8px;
}
.mega-menu__card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #f7f6f4;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.mega-menu__card:hover {
  background-color: #ffffff;
  border-color: rgba(201, 126, 58, 0.22);
  box-shadow: 0 8px 20px rgba(26, 42, 58, 0.08);
  transform: translateY(-1px);
}
.mega-menu__card:hover .mega-menu__card-name {
  color: #C97E3A;
}
.mega-menu__card:hover .mega-menu__card-arrow {
  color: #C97E3A;
  transform: translateX(2px);
}
.mega-menu__card-media {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
}
.mega-menu__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-menu__card-media--icon img {
  object-fit: contain;
  padding: 6px;
}
.mega-menu__card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(26, 42, 58, 0.35);
  background: linear-gradient(145deg, rgba(201, 126, 58, 0.08), rgba(26, 42, 58, 0.04));
}
.mega-menu__card-placeholder svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.mega-menu__card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.mega-menu__card-name {
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #1A2A3A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}
.mega-menu__card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: rgba(26, 42, 58, 0.45);
  background-color: rgba(26, 42, 58, 0.06);
  transition: color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}
.mega-menu__card-arrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.mega-menu--products {
  width: 920px;
  max-width: calc(100vw - 32px);
}
.mega-menu--products .mega-menu__cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 991px) {
  .mega-menu--products .mega-menu__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mega-menu--industries {
  width: 720px;
  max-width: calc(100vw - 32px);
}
.mega-menu--industries .mega-menu__cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.1);
  padding: 8px;
  z-index: 1040;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header__menu-item.is-open > .nav-dropdown, .site-header__menu-item:focus-within > .nav-dropdown {
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
}
.nav-dropdown__link {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #1A2A3A;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
  white-space: nowrap;
}
.nav-dropdown__link:hover {
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.06);
}

.search-popup {
  position: fixed;
  inset: 0;
  z-index: 1070;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  padding-top: 48px;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.35s, opacity 0.35s;
}
@media (min-width: 768px) {
  .search-popup {
    align-items: center;
    padding: 24px;
    padding-top: 24px;
    overflow-y: hidden;
  }
}
.search-popup.is-open {
  visibility: visible;
  opacity: 1;
}
.search-popup.is-open .search-popup__backdrop {
  opacity: 1;
}
.search-popup.is-open .search-popup__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search-popup__backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 42, 58, 0.75);
  opacity: 0;
  transition: opacity 0.35s;
}
.search-popup__card {
  position: relative;
  width: 100%;
  max-width: 680px;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 24px 16px;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  box-shadow: 0 24px 64px rgba(26, 42, 58, 0.2);
}
@media (min-width: 768px) {
  .search-popup__card {
    padding: 40px;
  }
}
.search-popup__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #5a6570;
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
@media (min-width: 768px) {
  .search-popup__close {
    top: 16px;
    right: 16px;
  }
}
.search-popup__close:hover {
  background-color: #f7f6f4;
  color: #1A2A3A;
}
.search-popup__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.search-popup__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 6px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .search-popup__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
}
.search-popup__icon svg {
  width: 24px;
  height: 24px;
  fill: #C97E3A;
}
@media (min-width: 768px) {
  .search-popup__icon svg {
    width: 28px;
    height: 28px;
  }
}
.search-popup__title {
  margin: 0 0 8px;
  line-height: 1.2;
  padding-right: 40px;
}
.search-popup__subtitle {
  font-size: 16px;
  color: #5a6570;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .search-popup__subtitle {
    margin-bottom: 28px;
  }
}
.search-popup__form {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 2px solid #e2e0dc;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-popup__form:focus-within {
  border-color: #C97E3A;
  box-shadow: 0 0 0 4px rgba(201, 126, 58, 0.12);
}
.search-popup__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  padding: 14px 12px;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
  color: #1A2A3A;
  outline: none;
  background: transparent;
}
@media (min-width: 768px) {
  .search-popup__input {
    padding: 18px 20px;
  }
}
.search-popup__input::placeholder {
  color: #5a6570;
}
.search-popup__submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 8px;
  width: 52px;
  padding: 0;
  background-color: #C97E3A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.25s ease;
}
@media (min-width: 768px) {
  .search-popup__submit {
    width: auto;
    padding: 0 28px;
  }
}
.search-popup__submit:hover {
  background-color: #a8682e;
}
.search-popup__submit svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .search-popup__submit svg {
    width: 18px;
    height: 18px;
  }
}
.search-popup__submit-text {
  display: none;
}
@media (min-width: 768px) {
  .search-popup__submit-text {
    display: inline;
  }
}
.search-popup__tags {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e0dc;
}
@media (min-width: 768px) {
  .search-popup__tags {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.search-popup__tags-label {
  font-size: 16px;
  font-weight: 500;
  color: #1A2A3A;
  margin: 0 0 12px;
}
.search-popup__tags-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-popup__tag {
  display: inline-flex;
  padding: 8px 16px;
  font-size: 16px;
  color: #1A2A3A;
  background-color: #f7f6f4;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}
.search-popup__tag:hover {
  border-color: #C97E3A;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 2.5vh, 2rem) 0;
  background: radial-gradient(36rem 28rem at 100% 0%, rgba(201, 126, 58, 0.14), transparent 62%), radial-gradient(30rem 26rem at 0% 100%, rgba(26, 42, 58, 0.06), transparent 58%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}
.hero__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .hero__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 36px;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
  }
}
@media (min-width: 992px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
  }
}
.hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .hero__content {
    max-width: 520px;
    padding-top: 8px;
  }
}
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
}
.hero__tagline svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(2.2rem, 3.8vw + 0.5rem, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #1A2A3A;
}
.hero__title-accent {
  color: #C97E3A;
}
.hero__text {
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
  max-width: 48ch;
  margin: 0 0 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.hero__btn--primary {
  color: #ffffff;
  background-color: #C97E3A;
  border: 2px solid #C97E3A;
}
.hero__btn--primary:hover {
  background-color: #a8682e;
  border-color: #a8682e;
  color: #ffffff;
  transform: translateY(-2px);
}
.hero__btn--outline {
  color: #1A2A3A;
  background-color: #ffffff;
  border: 2px solid rgba(26, 42, 58, 0.35);
}
.hero__btn--outline:hover {
  border-color: #1A2A3A;
  background-color: #1A2A3A;
  color: #ffffff;
  transform: translateY(-2px);
}
.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.hero__stats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1A2A3A;
  white-space: nowrap;
}
.hero__stats svg {
  width: 22px;
  height: 22px;
  fill: #1A2A3A;
  flex-shrink: 0;
}
.hero__showcase {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 48px;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .hero__showcase {
    margin-top: 56px;
    align-self: flex-end;
  }
}
@media (min-width: 992px) {
  .hero__showcase {
    margin-top: 72px;
  }
}
@media (max-width: 767.98px) {
  .hero__actions {
    width: 100%;
  }
  .hero__btn {
    flex: 1;
    min-width: 0;
    padding-inline: 18px;
  }
  .hero__stats {
    gap: 16px 20px;
  }
  .hero__stats li {
    white-space: normal;
    font-size: 13px;
  }
}
@media (max-width: 575.98px) {
  .hero__stats {
    flex-direction: column;
    gap: 14px;
  }
}

.hero-cards__swiper {
  overflow: hidden;
  padding: 12px 0 48px;
}
.hero-cards__slide {
  width: clamp(170px, 70vw, 220px);
  height: auto;
  padding-bottom: 12px;
  transition: opacity 0.35s ease;
}
@media (min-width: 768px) {
  .hero-cards__slide {
    width: clamp(180px, 28vw, 230px);
  }
}
@media (min-width: 992px) {
  .hero-cards__slide {
    width: clamp(190px, 18vw, 250px);
  }
}
.hero-cards__slide:not(.swiper-slide-active) {
  opacity: 0.55;
}
.hero-cards__card {
  position: relative;
  display: block;
  aspect-ratio: 3/4.2;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transform: scale(0.9);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  filter: brightness(0.72) saturate(0.85);
}
.hero-cards__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 42, 58, 0.05) 0%, rgba(26, 42, 58, 0.15) 45%, rgba(26, 42, 58, 0.82) 100%);
  pointer-events: none;
}
.hero-cards__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-cards__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 42, 58, 0.45);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.35s ease;
}
.hero-cards__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  z-index: 1;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero-cards__slide.swiper-slide-active .hero-cards__card {
  transform: scale(1);
  filter: none;
  box-shadow: 0 22px 48px rgba(26, 42, 58, 0.22);
}
.hero-cards__slide.swiper-slide-active .hero-cards__badge {
  background: #1A2A3A;
}
.hero-cards__pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.hero-cards__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  border-radius: 999px;
  background: rgba(26, 42, 58, 0.2);
  opacity: 1;
  flex-shrink: 0;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.hero-cards__pagination .swiper-pagination-bullet-active {
  width: 36px;
  background: #C97E3A;
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trust-bar {
  background-color: #f7f6f4;
  border-top: 1px solid #e2e0dc;
  border-bottom: 1px solid #e2e0dc;
  padding: 20px 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .trust-bar {
    padding: 24px 0;
  }
}
.trust-bar__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .trust-bar__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.trust-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@media (min-width: 992px) {
  .trust-bar__inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
.trust-bar__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .trust-bar__reviews {
    gap: 32px;
  }
}
@media (min-width: 992px) {
  .trust-bar__reviews {
    justify-content: flex-start;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #e2e0dc;
  }
}
.trust-bar__review-link {
  display: block;
  transition: opacity 0.25s ease;
}
.trust-bar__review-link:hover {
  opacity: 0.85;
}
.trust-bar__review-link img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .trust-bar__review-link img {
    height: 80px;
    max-width: 180px;
  }
}
.trust-bar__featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1 1 0;
}
@media (min-width: 768px) {
  .trust-bar__featured {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.trust-bar__featured-label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1A2A3A;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar__marquee {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow: hidden;
}
.trust-bar__marquee-track {
  display: flex;
  width: max-content;
  animation: trust-marquee 30s linear infinite;
}
.trust-bar__marquee-track:hover {
  animation-play-state: paused;
}
.trust-bar__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}
.trust-bar__logo {
  flex-shrink: 0;
}
.trust-bar__logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  transition: opacity 0.25s ease;
}
.trust-bar__logo a:hover {
  opacity: 0.75;
}
.trust-bar__logo img {
  display: block;
  max-height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .trust-bar__logo img {
    max-height: 38px;
    max-width: 150px;
  }
}

.top-picks {
  padding: 48px 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .top-picks {
    padding: 56px 0;
  }
}
.top-picks__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .top-picks__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.top-picks__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .top-picks__header {
    margin-bottom: 40px;
  }
}
.top-picks__header-content {
  flex: 1;
  min-width: min(100%, 560px);
}
.top-picks__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6570;
}
.top-picks__title {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  line-height: 1.15;
  color: #1A2A3A;
}
.top-picks__text {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}
.top-picks__header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #1A2A3A;
  border: 2px solid #1A2A3A;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.top-picks__header-cta:hover {
  background-color: #243447;
  border-color: #243447;
  color: #ffffff;
  transform: translateY(-2px);
}
.top-picks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .top-picks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 992px) {
  .top-picks__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
.top-picks__card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 148px;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.top-picks__card:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 10px 28px rgba(26, 42, 58, 0.08);
}
.top-picks__card:hover .top-picks__card-image img {
  transform: scale(1.04);
}
.top-picks__card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38%;
  max-width: 130px;
  padding: 14px 10px;
  background: rgba(201, 126, 58, 0.08);
}
.top-picks__card-image img {
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(26, 42, 58, 0.14));
  transition: transform 0.35s ease;
}
.top-picks__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 14px 14px 14px 10px;
}
.top-picks__card-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.top-picks__card-title a {
  color: #1A2A3A;
  transition: color 0.25s ease;
}
.top-picks__card-title a:hover {
  color: #C97E3A;
}
.top-picks__card-text {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #5a6570;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.top-picks__card-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
  transition: color 0.25s ease;
}
.top-picks__card-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.top-picks__card-link:hover {
  color: #a8682e;
}
.top-picks__card-link:hover svg {
  transform: translateX(3px);
}
@media (max-width: 575.98px) {
  .top-picks__header {
    align-items: stretch;
  }
  .top-picks__header-cta {
    width: 100%;
  }
  .top-picks__card-image {
    flex-basis: 34%;
    max-width: 110px;
    padding: 10px 8px;
  }
  .top-picks__card-body {
    padding: 12px 10px 12px 8px;
  }
}

.why-choose {
  padding: 48px 0;
  background-color: #f7f6f4;
}
@media (min-width: 992px) {
  .why-choose {
    padding: 56px 0;
  }
}
.why-choose__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .why-choose__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.why-choose__layout {
  display: grid;
  align-items: center;
  gap: 36px;
}
@media (min-width: 992px) {
  .why-choose__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
  }
}
.why-choose__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(26, 42, 58, 0.1);
}
.why-choose__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}
.why-choose__content {
  min-width: 0;
}
.why-choose__title {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.why-choose__title span {
  color: #C97E3A;
}
.why-choose__text {
  margin: 0 0 28px;
  max-width: 54ch;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}
.why-choose__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px 28px;
}
@media (min-width: 576px) {
  .why-choose__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.why-choose__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}
.why-choose__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.why-choose__feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.why-choose__feature-icon--sage {
  color: #3d7a5f;
  background: rgba(61, 122, 95, 0.12);
}
.why-choose__feature-icon--blue {
  color: #3b6ea8;
  background: rgba(59, 110, 168, 0.12);
}
.why-choose__feature-icon--teal {
  color: #2a8f8f;
  background: rgba(42, 143, 143, 0.12);
}
.why-choose__feature-icon--primary {
  color: #C97E3A;
  background: rgba(201, 126, 58, 0.14);
}
.why-choose__feature-icon--navy {
  color: #1A2A3A;
  background: rgba(26, 42, 58, 0.1);
}
.why-choose__feature-icon--amber {
  color: #a8682e;
  background: rgba(201, 126, 58, 0.18);
}
.why-choose__feature-body {
  min-width: 0;
  padding-top: 2px;
}
.why-choose__feature-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #1A2A3A;
}
.why-choose__feature-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
}

.process {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .process {
    padding: 72px 0;
  }
}
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(rgba(26, 42, 58, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 42, 58, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 15%, transparent 100%);
}
.process__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  color: rgba(201, 126, 58, 0.18);
}
.process__decor-box {
  position: absolute;
  width: clamp(120px, 14vw, 180px);
  height: auto;
}
.process__decor-box--tl {
  top: 8%;
  left: 2%;
  transform: rotate(-12deg);
  opacity: 0.55;
}
@media (min-width: 992px) {
  .process__decor-box--tl {
    top: 12%;
    left: 4%;
  }
}
.process__decor-box--br {
  right: 2%;
  bottom: 6%;
  transform: rotate(18deg) scale(0.85);
  opacity: 0.4;
  color: rgba(26, 42, 58, 0.14);
}
@media (min-width: 992px) {
  .process__decor-box--br {
    right: 5%;
    bottom: 10%;
  }
}
.process__decor-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(220px, 32vw, 360px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  color: rgba(201, 126, 58, 0.12);
}
.process__decor-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  width: 100%;
  height: 120px;
  opacity: 0.35;
  color: rgba(26, 42, 58, 0.12);
}
@media (min-width: 992px) {
  .process__decor-line {
    bottom: 22%;
  }
}
.process__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .process__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.process__inner {
  max-width: 1320px;
}
.process__header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .process__header {
    margin-bottom: 56px;
  }
}
.process__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 100px;
}
.process__title {
  margin-bottom: 12px;
}
.process__title span {
  color: #C97E3A;
}
.process__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}
.process__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 992px) {
  .process__body {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.process__steps {
  min-width: 0;
}
.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 24px;
}
@media (min-width: 576px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process__step {
  text-align: center;
}
.process__step:hover .process__icon {
  background-color: #C97E3A;
  transform: translateY(-4px);
}
.process__step:hover .process__icon svg {
  fill: #ffffff;
}
.process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 50%;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.process__icon svg {
  width: 30px;
  height: 30px;
  fill: #C97E3A;
  transition: fill 0.25s ease;
}
.process__step-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: #1A2A3A;
}
.process__step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6570;
}
.process__media {
  width: 100%;
  min-width: 0;
  display: flex;
}
.process__media-figure {
  position: relative;
  margin: 0;
  width: 100%;
  flex: 1;
  min-height: 280px;
}
.process__media-figure::before {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 72%;
  height: 72%;
  background-color: rgba(201, 126, 58, 0.12);
  border-radius: 6px;
  z-index: 0;
}
.process__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4/3;
  padding: 24px;
  text-align: center;
  background-color: #f7f6f4;
  border: 1px dashed #e2e0dc;
  border-radius: 6px;
  color: #5a6570;
  font-size: 15px;
  font-weight: 500;
}
.process__media-img, .process__media iframe, .process__media video {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 6px;
}
.process__media-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(26, 42, 58, 0.12);
}

.quote {
  padding: 48px 16px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .quote {
    padding: 56px 24px;
  }
}
.quote__band {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px;
  background: linear-gradient(135deg, #1A2A3A 0%, #243447 100%);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26, 42, 58, 0.22);
}
@media (min-width: 768px) {
  .quote__band {
    padding: 40px 36px;
  }
}
@media (min-width: 992px) {
  .quote__band {
    padding: 44px 48px;
  }
}
.quote__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 992px) {
  .quote__inner {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 40px;
    align-items: stretch;
  }
}
.quote__showcase {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  color: #ffffff;
}
.quote__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.quote__title span {
  color: #C97E3A;
}
.quote__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.quote__panel {
  flex: 1;
  margin-bottom: 14px;
  padding: 16px 16px 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.quote__panel-title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97E3A;
}
.quote__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.quote__list-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
}
.quote__list-item:not(:last-child) {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.quote__list-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}
.quote__list-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}
.quote__list-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  color: #C97E3A;
  background: rgba(201, 126, 58, 0.15);
  border-radius: 8px;
}
.quote__trust {
  margin-top: auto;
  margin-bottom: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}
.quote__trust-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.quote__trust-head {
  min-width: 0;
  text-align: left;
}
.quote__trust-head strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}
.quote__trust-head span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.quote__trust-guarantee {
  flex-shrink: 0;
  display: block;
  width: 72px;
  height: auto;
}
.quote__trust-cards {
  display: block;
  width: 100%;
  max-height: 30px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  background: #ffffff;
  padding: 5px 8px;
}
.quote__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
}
.quote__contact svg {
  width: 18px;
  height: 18px;
  fill: #C97E3A;
  flex-shrink: 0;
}
.quote__contact:hover {
  color: #ffffff;
}
.quote__form-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.quote__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 22px;
  background: #ffffff;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .quote__form {
    padding: 24px 28px 28px;
  }
}
.quote__form--compact .quote__form-grid {
  margin-bottom: 16px;
}
.quote__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
  flex: 1;
}
@media (min-width: 576px) {
  .quote__form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.quote__field {
  min-width: 0;
}
.quote__field--full {
  grid-column: 1/-1;
}
.quote__label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #1A2A3A;
}
.quote__label span {
  color: #C97E3A;
}
.quote__input {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  color: #1A2A3A;
  background: #f7f6f4;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.quote__input::placeholder {
  color: rgba(90, 101, 112, 0.75);
}
.quote__input:focus {
  outline: none;
  background: #ffffff;
  border-color: #C97E3A;
  box-shadow: 0 0 0 3px rgba(201, 126, 58, 0.12);
}
.quote__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a6570'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 34px;
  cursor: pointer;
}
.quote__textarea {
  min-height: 64px;
  resize: vertical;
  line-height: 1.5;
}
.quote__dims {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
}
@media (max-width: 479px) {
  .quote__dims {
    grid-template-columns: 1fr 1fr;
  }
  .quote__dims .quote__select {
    grid-column: 1/-1;
    max-width: none;
  }
}
.quote__dims .quote__select {
  min-width: 108px;
}
.quote__file {
  width: 100%;
  font-size: 15px;
  color: #5a6570;
}
.quote__file::file-selector-button {
  margin-right: 12px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #1A2A3A;
  background: #f7f6f4;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.quote__file::file-selector-button:hover {
  border-color: #C97E3A;
  background: rgba(201, 126, 58, 0.06);
}
.quote__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: auto;
}
.quote__submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: min(100%, 200px);
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #C97E3A;
  border: 2px solid #C97E3A;
  border-radius: 6px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.quote__submit:hover {
  background-color: #a8682e;
  border-color: #a8682e;
  transform: translateY(-1px);
}
.quote__submit:focus-visible {
  outline: 2px solid #C97E3A;
  outline-offset: 2px;
}
.quote__note {
  margin: 0;
  font-size: 12px;
  color: #5a6570;
  flex: 1;
  min-width: 180px;
}
.quote--archive-form {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #1A2A3A 0%, #243447 38%, #f7f6f4 38%);
}
@media (min-width: 992px) {
  .quote--archive-form {
    padding: 56px 0 64px;
  }
}
.quote--archive-form .quote__form-header {
  padding: 0 16px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .quote--archive-form .quote__form-header {
    padding: 0 24px;
  }
}
.quote--archive-form .quote__form-heading {
  color: #ffffff;
}
.quote--archive-form .quote__form-heading span {
  color: #C97E3A;
}
.quote--archive-form .quote__form-lead {
  color: rgba(255, 255, 255, 0.78);
}
.quote__inner--full {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
}
.quote__form-header {
  max-width: 520px;
  margin: 0 auto 24px;
  text-align: center;
}
@media (min-width: 992px) {
  .quote__form-header {
    margin-bottom: 28px;
  }
}
.quote__form-heading {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.2vw + 0.5rem, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.quote__form-heading span {
  color: #C97E3A;
}
.quote__form-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}
.quote__form-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 992px) {
  .quote__form-shell {
    padding: 0 24px;
  }
}
.quote__form-card {
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.14);
}
.quote__form--steps {
  padding: 20px 18px 22px;
  background: transparent;
  border-radius: 0;
}
@media (min-width: 768px) {
  .quote__form--steps {
    padding: 24px 24px 26px;
  }
}
.quote__form--steps .quote__input {
  padding: 9px 11px;
  font-size: 15px;
}
.quote__form--steps .quote__label {
  margin-bottom: 4px;
  font-size: 11px;
}
.quote__form--steps .quote__textarea--steps {
  min-height: 72px;
}
.quote__steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px;
}
.quote__steps-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
  text-align: center;
}
.quote__steps-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
  color: #5a6570;
  background: #f7f6f4;
  border: 2px solid #e2e0dc;
  border-radius: 50%;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.quote__steps-label {
  font-size: 11px;
  font-weight: 600;
  color: #5a6570;
  transition: color 0.25s ease;
}
.quote__steps-line {
  flex: 1;
  max-width: 48px;
  height: 2px;
  margin: 0 4px 14px;
  background: #e2e0dc;
  border-radius: 1px;
}
.quote__steps-nav-item.is-active .quote__steps-num {
  color: #ffffff;
  background: #C97E3A;
  border-color: #C97E3A;
}
.quote__steps-nav-item.is-active .quote__steps-label {
  color: #1A2A3A;
}
.quote__steps-nav-item.is-done .quote__steps-num {
  color: #C97E3A;
  background: rgba(201, 126, 58, 0.12);
  border-color: rgba(201, 126, 58, 0.35);
}
.quote__step[hidden] {
  display: none;
}
.quote__form-grid--steps {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .quote__form-grid--steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.quote__upload {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 1.5px dashed rgba(201, 126, 58, 0.45);
  border-radius: 12px;
  background: rgba(201, 126, 58, 0.04);
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.quote__upload:hover {
  border-color: #C97E3A;
  background: rgba(201, 126, 58, 0.07);
}
.quote__upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 126, 58, 0.12);
  color: #C97E3A;
}
.quote__upload-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.quote__upload-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}
.quote__upload-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #1A2A3A;
}
.quote__upload-text span {
  font-size: 12px;
  line-height: 1.45;
  color: #5a6570;
}
.quote__upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quote__upload--compact {
  padding: 14px 16px;
  gap: 12px;
}
.quote__upload--compact .quote__upload-icon {
  width: 40px;
  height: 40px;
}
.quote__upload--compact .quote__upload-icon svg {
  width: 20px;
  height: 20px;
}
.quote__upload--compact .quote__upload-text strong {
  font-size: 13px;
}
.quote__upload--compact .quote__upload-text span {
  font-size: 11px;
}
.quote__step-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.quote__step-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  flex: 1;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.quote__step-btn--back {
  color: #1A2A3A;
  background: #f7f6f4;
  border: 1px solid #e2e0dc;
}
.quote__step-btn--back:hover {
  border-color: rgba(26, 42, 58, 0.35);
}
.quote__step-btn--next, .quote__step-btn--submit {
  color: #ffffff;
  background: #C97E3A;
  border: 2px solid #C97E3A;
}
.quote__step-btn--next:hover, .quote__step-btn--submit:hover {
  background: #a8682e;
  border-color: #a8682e;
}
.quote__step-btn[hidden] {
  display: none;
}
.quote__step-btn:focus-visible {
  outline: 2px solid #C97E3A;
  outline-offset: 2px;
}
.quote__note--steps {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
  flex: none;
  min-width: 0;
}
.quote__inner--wide {
  max-width: 1080px;
  margin: 0 auto;
  display: block;
}
.quote__form--detailed {
  padding: 24px 20px 28px;
  background: transparent;
  border-radius: 0;
}
@media (min-width: 768px) {
  .quote__form--detailed {
    padding: 32px 32px 36px;
  }
}
@media (min-width: 992px) {
  .quote__form--detailed {
    padding: 36px 40px 40px;
  }
}
.quote__form-grid--detailed {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .quote__form-grid--detailed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .quote__form-grid--detailed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px 18px;
  }
}
.quote__textarea--detailed {
  min-height: 110px;
}
.quote__actions--detailed {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 0;
}
.quote__submit--wide {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  flex: none;
  padding: 15px 28px;
  font-size: 16px;
}

.popular-products {
  padding: 48px 0 56px;
  background-color: #f7f6f4;
}
@media (min-width: 992px) {
  .popular-products {
    padding: 64px 0 72px;
  }
}
.popular-products__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .popular-products__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.popular-products__inner {
  max-width: 1320px;
}
.popular-products__header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}
@media (min-width: 992px) {
  .popular-products__header {
    margin-bottom: 44px;
  }
}
.popular-products__title {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.8vw + 0.5rem, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.popular-products__title span {
  color: #C97E3A;
}
.popular-products__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}
.popular-products__stage {
  position: relative;
  padding: 0 48px;
}
@media (min-width: 768px) {
  .popular-products__stage {
    padding: 0 56px;
  }
}
.popular-products__swiper {
  overflow: hidden;
  padding: 8px 0 12px;
}
.popular-products__slide {
  width: clamp(180px, 42vw, 240px);
  height: auto;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .popular-products__slide {
    width: clamp(190px, 26vw, 250px);
  }
}
@media (min-width: 992px) {
  .popular-products__slide {
    width: clamp(200px, 16vw, 260px);
  }
}
.popular-products__nav {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #C97E3A;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(201, 126, 58, 0.3);
  transform: translateY(-50%);
  transition: background-color 0.25s ease, transform 0.15s ease;
}
.popular-products__nav svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.popular-products__nav:hover {
  background: #a8682e;
  transform: translateY(-50%) scale(1.05);
}
.popular-products__nav--prev {
  left: 0;
}
.popular-products__nav--next {
  right: 0;
}
.popular-products__nav:focus-visible {
  outline: 2px solid #C97E3A;
  outline-offset: 2px;
}
.popular-products__footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 992px) {
  .popular-products__footer {
    margin-top: 40px;
  }
}
.popular-products__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #1A2A3A;
  border: 2px solid #1A2A3A;
  border-radius: 6px;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.popular-products__cta:hover {
  background-color: #C97E3A;
  border-color: #C97E3A;
  color: #ffffff;
  transform: translateY(-2px);
}

.product-details {
  padding: 48px 0;
  background-color: #f7f6f4;
  border-top: 1px solid #e2e0dc;
}
@media (min-width: 992px) {
  .product-details {
    padding: 64px 0;
  }
}
.product-details__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .product-details__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.product-details__inner {
  max-width: 1320px;
}
.product-details__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 992px) {
  .product-details__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.35fr);
    gap: 40px;
  }
}
.product-details__content {
  min-width: 0;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .product-details__content {
    padding: 28px 32px;
  }
}
.product-details__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.product-details__title span {
  color: #C97E3A;
}
.product-details__intro {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.product-details__scroll {
  max-height: 380px;
  overflow-y: auto;
  padding: 20px 20px 8px 0;
  border-top: 1px solid #e2e0dc;
  scrollbar-width: thin;
  scrollbar-color: #C97E3A #e2e0dc;
}
.product-details__scroll h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #1A2A3A;
}
.product-details__scroll h3:not(:first-child) {
  margin-top: 22px;
}
.product-details__scroll ul {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.product-details__scroll ul li {
  margin-bottom: 8px;
}
.product-details__scroll ul li:last-child {
  margin-bottom: 0;
}
.product-details__scroll ul strong {
  color: #1A2A3A;
  font-weight: 600;
}
.product-details__scroll::-webkit-scrollbar {
  width: 5px;
}
.product-details__scroll::-webkit-scrollbar-track {
  background: #e2e0dc;
  border-radius: 100px;
}
.product-details__scroll::-webkit-scrollbar-thumb {
  background: #C97E3A;
  border-radius: 100px;
}
@media (min-width: 992px) {
  .product-details__scroll {
    max-height: 420px;
  }
}
.product-details__subtitle {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #1A2A3A;
}
.product-details__subtitle:not(:first-child) {
  margin-top: 22px;
}
.product-details__scroll p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6570;
}
.product-details__scroll p:last-child {
  margin-bottom: 0;
}
.product-details__list {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.product-details__list li {
  margin-bottom: 8px;
}
.product-details__list li:last-child {
  margin-bottom: 0;
}
.product-details__list strong {
  color: #1A2A3A;
  font-weight: 600;
}
.product-details__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media (min-width: 992px) {
  .product-details__aside {
    position: sticky;
    top: 100px;
  }
}
.product-details__visual {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  box-shadow: 0 10px 28px rgba(26, 42, 58, 0.06);
}
.product-details__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-details__visual figcaption {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  color: #5a6570;
  background: #ffffff;
  border-top: 1px solid #e2e0dc;
}
.product-details__panel {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 14px;
}
.product-details__panel--cta {
  background: #1A2A3A;
  border-color: #1A2A3A;
  color: #ffffff;
}
.product-details__cta-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.product-details__cta-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}
.product-details__cta-icon svg {
  width: 22px;
  height: 22px;
  fill: #C97E3A;
}
.product-details__cta-title {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.product-details__cta-head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}
.product-details__cta {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #1A2A3A;
  background: #ffffff;
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.product-details__cta:hover {
  background: #C97E3A;
  color: #ffffff;
}
.product-details__phone {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  transition: color 0.25s ease;
}
.product-details__phone:hover {
  color: #C97E3A;
}

.blog-posts--home {
  padding: 48px 0;
  background-color: #f7f6f4;
  border-top: none;
}
@media (min-width: 992px) {
  .blog-posts--home {
    padding: 56px 0 64px;
  }
}
.blog-posts--home .blog-posts__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.blog-posts--home .blog-posts__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  max-width: none;
  margin: 0 0 32px;
  text-align: left;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__header {
    margin-bottom: 40px;
  }
}
.blog-posts--home .blog-posts__header-content {
  flex: 1;
  min-width: min(100%, 560px);
}
.blog-posts--home .blog-posts__eyebrow {
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6570;
  background: none;
  border-radius: 0;
}
.blog-posts--home .blog-posts__title {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  line-height: 1.15;
  color: #1A2A3A;
}
.blog-posts--home .blog-posts__title span {
  color: #C97E3A;
}
.blog-posts--home .blog-posts__text {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}
.blog-posts--home .blog-posts__header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #1A2A3A;
  border: 2px solid #1A2A3A;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.blog-posts--home .blog-posts__header-cta:hover {
  background-color: #243447;
  border-color: #243447;
  color: #ffffff;
  transform: translateY(-2px);
}
.blog-posts--home .blog-posts__layout {
  display: grid;
  gap: 20px;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    align-items: stretch;
  }
}
.blog-posts--home .blog-posts__featured {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-posts--home .blog-posts__featured:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 16px 40px rgba(26, 42, 58, 0.08);
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__featured {
    flex-direction: row;
    min-height: 100%;
  }
}
.blog-posts--home .blog-posts__featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #e2e0dc;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__featured-media {
    flex: 0 0 52%;
    aspect-ratio: auto;
    min-height: 320px;
  }
}
.blog-posts--home .blog-posts__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-posts__featured:hover .blog-posts--home .blog-posts__featured-media img {
  transform: scale(1.04);
}
.blog-posts--home .blog-posts__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(26, 42, 58, 0.88);
  border-radius: 4px;
}
.blog-posts--home .blog-posts__featured-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__featured-body {
    flex: 1;
    padding: 28px 28px 32px;
  }
}
.blog-posts--home .blog-posts__date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #C97E3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-posts--home .blog-posts__featured-title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: #1A2A3A;
}
.blog-posts--home .blog-posts__featured-title a {
  color: inherit;
  transition: color 0.25s ease;
}
.blog-posts--home .blog-posts__featured-title a:hover {
  color: #C97E3A;
}
.blog-posts--home .blog-posts__featured-excerpt {
  margin: 0 0 20px;
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.blog-posts--home .blog-posts__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
  transition: color 0.25s ease, gap 0.25s ease;
}
.blog-posts--home .blog-posts__read svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.blog-posts--home .blog-posts__read:hover {
  color: #a8682e;
}
.blog-posts--home .blog-posts__read:hover svg {
  transform: translateX(3px);
}
.blog-posts--home .blog-posts__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 992px) {
  .blog-posts--home .blog-posts__side {
    gap: 16px;
  }
}
.blog-posts--home .blog-posts__side-item {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-posts--home .blog-posts__side-item:hover {
  border-color: rgba(201, 126, 58, 0.3);
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.06);
}
@media (min-width: 576px) {
  .blog-posts--home .blog-posts__side-item {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 16px;
  }
}
.blog-posts--home .blog-posts__side-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background-color: #e2e0dc;
}
.blog-posts--home .blog-posts__side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-posts__side-item:hover .blog-posts--home .blog-posts__side-thumb img {
  transform: scale(1.05);
}
.blog-posts--home .blog-posts__side-body {
  min-width: 0;
}
.blog-posts--home .blog-posts__side-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C97E3A;
}
.blog-posts--home .blog-posts__side-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #1A2A3A;
}
.blog-posts--home .blog-posts__side-title a {
  color: inherit;
  transition: color 0.25s ease;
}
.blog-posts--home .blog-posts__side-title a:hover {
  color: #C97E3A;
}
.blog-posts--home .blog-posts__side-date {
  display: block;
  font-size: 12px;
  color: #5a6570;
}

.blog-posts--archive {
  padding: 40px 0 56px;
  background-color: #f7f6f4;
  border-top: none;
}
@media (min-width: 992px) {
  .blog-posts--archive {
    padding: 48px 0 64px;
  }
}
.blog-posts--archive .blog-posts__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-posts__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.blog-posts--archive .blog-posts__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 15px;
  color: #5a6570;
}
.blog-posts--archive .blog-posts__breadcrumb a {
  color: inherit;
  transition: color 0.25s ease;
}
.blog-posts--archive .blog-posts__breadcrumb a:hover {
  color: #C97E3A;
}
.blog-posts--archive .blog-posts__header {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}
.blog-posts--archive .blog-posts__eyebrow {
  margin: 0 0 10px;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a6570;
  background: none;
  border-radius: 0;
}
.blog-posts--archive .blog-posts__title {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.35rem);
  line-height: 1.15;
  color: #1A2A3A;
}
.blog-posts--archive .blog-posts__title span {
  color: #C97E3A;
}
.blog-posts--archive .blog-posts__text {
  margin: 0;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}
.blog-posts--archive .blog-archive__toolbar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-archive__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }
}
.blog-posts--archive .blog-archive__label {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #1A2A3A;
}
.blog-posts--archive .blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-posts--archive .blog-filters__btn {
  padding: 8px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #5a6570;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.blog-posts--archive .blog-filters__btn:hover, .blog-posts--archive .blog-filters__btn.is-active {
  color: #ffffff;
  background: #C97E3A;
  border-color: #C97E3A;
}
.blog-posts--archive .blog-posts__featured {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-posts--archive .blog-posts__featured:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 16px 40px rgba(26, 42, 58, 0.08);
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-posts__featured {
    flex-direction: row;
  }
}
.blog-posts--archive .blog-posts__featured-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #e2e0dc;
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-posts__featured-media {
    flex: 0 0 50%;
    aspect-ratio: auto;
    min-height: 280px;
  }
}
.blog-posts--archive .blog-posts__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-posts__featured:hover .blog-posts--archive .blog-posts__featured-media img {
  transform: scale(1.04);
}
.blog-posts--archive .blog-posts__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(26, 42, 58, 0.88);
  border-radius: 4px;
}
.blog-posts--archive .blog-posts__featured-body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-posts__featured-body {
    flex: 1;
    padding: 28px 32px;
  }
}
.blog-posts--archive .blog-posts__date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #C97E3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-posts--archive .blog-posts__featured-title {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 1.5vw + 0.75rem, 1.45rem);
  font-weight: 600;
  line-height: 1.3;
  color: #1A2A3A;
}
.blog-posts--archive .blog-posts__featured-title a {
  color: inherit;
  transition: color 0.25s ease;
}
.blog-posts--archive .blog-posts__featured-title a:hover {
  color: #C97E3A;
}
.blog-posts--archive .blog-posts__featured-excerpt {
  margin: 0 0 18px;
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.blog-posts--archive .blog-posts__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
}
.blog-posts--archive .blog-posts__read svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.blog-posts--archive .blog-posts__read:hover svg {
  transform: translateX(3px);
}
.blog-posts--archive .blog-posts__archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .blog-posts--archive .blog-posts__archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 992px) {
  .blog-posts--archive .blog-posts__archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
.blog-posts--archive .blog-posts__side-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-posts--archive .blog-posts__side-item:hover {
  border-color: rgba(201, 126, 58, 0.3);
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.06);
}
.blog-posts--archive .blog-posts__side-item[hidden] {
  display: none;
}
.blog-posts--archive .blog-posts__side-thumb {
  aspect-ratio: 16/10;
  border-radius: 0;
}
.blog-posts--archive .blog-posts__side-thumb img {
  transition: transform 0.4s ease;
}
.blog-posts__side-item:hover .blog-posts--archive .blog-posts__side-thumb img {
  transform: scale(1.05);
}
.blog-posts--archive .blog-posts__side-body {
  padding: 16px 16px 18px;
}
.blog-posts--archive .blog-posts__side-tag {
  margin-bottom: 8px;
}
.blog-posts--archive .blog-posts__side-title {
  margin-bottom: 8px;
  font-size: 16px;
}
.blog-posts--archive .blog-posts__side-date {
  font-size: 12px;
}
.blog-posts--archive .blog-posts__featured[hidden] {
  display: none;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 18px 42px rgba(26, 42, 58, 0.1);
}
.blog-card[hidden] {
  display: none;
}
.blog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #e2e0dc;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}
.blog-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(26, 42, 58, 0.88);
  border-radius: 100px;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.blog-card__date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c97e3a;
}
.blog-card__title {
  margin: 0 0 10px;
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.32;
  color: #1a2a3a;
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
.blog-card__title a:hover {
  color: #c97e3a;
}
.blog-card__excerpt {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5a6570;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #c97e3a;
}
.blog-card__read svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.blog-card__read:hover svg {
  transform: translateX(3px);
}

.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 16px;
}
@media (min-width: 768px) {
  .product-card__grid {
    gap: 24px 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .product-card__grid {
    gap: 28px 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-card__inner {
  padding: 14px;
  border-radius: 20px;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.product-card__media {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1/1;
  background-color: #e2e0dc;
}
.product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__title {
  margin: 10px 0 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.35;
  color: #1A2A3A;
}
.product-card:hover, .product-card:focus-visible {
  outline: none;
}
.product-card:hover .product-card__inner, .product-card:focus-visible .product-card__inner {
  background-color: #ffffff;
  box-shadow: 0 14px 36px rgba(26, 42, 58, 0.1);
}
.product-card:focus-visible {
  outline: 2px solid #C97E3A;
  outline-offset: 2px;
}

.popular-products__slide .product-card {
  height: 100%;
}
.popular-products__slide .product-card .product-card__inner {
  padding: 10px;
}

.archive-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.25rem, 5vh, 4rem) 0;
  background: radial-gradient(38rem 30rem at 92% -12%, rgba(201, 126, 58, 0.2), transparent 62%), radial-gradient(34rem 30rem at -6% 112%, rgba(26, 42, 58, 0.08), transparent 58%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}
.archive-banner__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.archive-banner__decor-box {
  position: absolute;
  color: rgba(201, 126, 58, 0.14);
  width: 120px;
  height: 120px;
}
.archive-banner__decor-box--1 {
  top: 8%;
  right: 6%;
  transform: rotate(12deg);
}
.archive-banner__decor-box--2 {
  bottom: 10%;
  left: 4%;
  width: 90px;
  height: 90px;
  transform: rotate(-18deg);
  color: rgba(26, 42, 58, 0.1);
}
.archive-banner__decor-ring {
  position: absolute;
  top: 18%;
  right: 28%;
  width: 140px;
  height: 140px;
  border: 2px dashed rgba(201, 126, 58, 0.22);
  border-radius: 50%;
}
.archive-banner__decor-dots {
  position: absolute;
  bottom: 14%;
  right: 12%;
  width: 72px;
  height: 72px;
  opacity: 0.35;
  background-image: radial-gradient(#C97E3A 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}
.archive-banner__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .archive-banner__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.archive-banner__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  .archive-banner__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.archive-banner__content {
  min-width: 0;
}
.archive-banner__title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.archive-banner__title span {
  color: #C97E3A;
}
.archive-banner__accent {
  display: block;
  width: 72px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #C97E3A 0%, rgba(201, 126, 58, 0.25) 100%);
}
.archive-banner__text {
  margin: 0 0 28px;
  max-width: 34rem;
}
.archive-banner__text p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}
.archive-banner__text p:last-child {
  margin-bottom: 0;
}
.archive-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.archive-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: #C97E3A;
  box-shadow: 0 8px 24px rgba(201, 126, 58, 0.28);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.archive-banner__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.archive-banner__btn:hover {
  background-color: #a8682e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 126, 58, 0.34);
}
.archive-banner__btn:hover svg {
  transform: translateX(3px);
}
.archive-banner__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-banner__perks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: #1A2A3A;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26, 42, 58, 0.06);
}
.archive-banner__perks svg {
  width: 14px;
  height: 14px;
  fill: #C97E3A;
  flex-shrink: 0;
}
.archive-banner__visual {
  position: relative;
  min-width: 0;
}
.archive-banner__media {
  margin: 0;
}
.archive-banner__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.archive-banner__badge {
  position: absolute;
  z-index: 2;
  right: -4px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 12px 14px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(201, 126, 58, 0.25);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.12);
}
.archive-banner__badge strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #C97E3A;
}
.archive-banner__badge span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #1A2A3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 991px) {
  .archive-banner__decor-ring, .archive-banner__decor-box--2 {
    display: none;
  }
  .archive-banner__badge {
    right: 8px;
    bottom: 8px;
  }
}

.archive-products {
  padding-top: 40px;
}
@media (min-width: 992px) {
  .archive-products {
    padding-top: 48px;
  }
}
.archive-products .popular-products__header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}
@media (min-width: 992px) {
  .archive-products .popular-products__header {
    margin-bottom: 44px;
  }
}
.archive-products .popular-products__inner {
  max-width: 1320px;
}

.archive-category-content {
  padding: 48px 0 64px;
  background-color: #f7f6f4;
  border-top: 1px solid #e2e0dc;
}
@media (min-width: 992px) {
  .archive-category-content {
    padding: 64px 0 80px;
  }
}
.archive-category-content__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .archive-category-content__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.archive-category-content__inner {
  max-width: 920px;
}
.archive-category-content__body {
  padding: 28px 32px;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 16px;
}
.archive-category-content__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #1A2A3A;
}
.archive-category-content__body h3:not(:first-child) {
  margin-top: 24px;
}
.archive-category-content__body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6570;
}
.archive-category-content__body p:last-child {
  margin-bottom: 0;
}
.archive-category-content__body ul {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.archive-category-content__body ul li {
  margin-bottom: 8px;
}
.archive-category-content__body ul li:last-child {
  margin-bottom: 0;
}
.archive-category-content__body ul strong {
  color: #1A2A3A;
  font-weight: 600;
}

.capabilities {
  min-width: 0;
}
.capabilities__title {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
  color: #1A2A3A;
}
.capabilities__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}
.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 992px) {
  .capabilities__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }
}
.capabilities__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  padding: 14px 8px;
  text-align: center;
  background-color: #eceae7;
  border-radius: 12px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.capabilities__item:hover {
  background-color: #ffffff;
  box-shadow: 0 6px 20px rgba(26, 42, 58, 0.07);
}
.capabilities__item:hover .capabilities__icon {
  color: #a8682e;
}
.capabilities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: #C97E3A;
  transition: color 0.25s ease;
}
.capabilities__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.capabilities__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: #1A2A3A;
}

@media (min-width: 992px) {
  .faq--capabilities .faq__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
  }
}
.faq--capabilities .faq__content {
  min-width: 0;
}
.faq--capabilities .faq__title {
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
  color: #1A2A3A;
}
.faq--capabilities .faq__title span {
  color: inherit;
}
.faq--capabilities .faq__item {
  background-color: #ffffff;
  border-color: #e2e0dc;
  box-shadow: none;
}
.faq--capabilities .faq__item.is-open {
  border-color: #C97E3A;
  box-shadow: none;
}
.faq--capabilities .faq__question {
  font-weight: 600;
  color: #1A2A3A;
}
.faq--capabilities .faq__item.is-open .faq__question {
  color: #C97E3A;
}
.faq--capabilities .faq__icon {
  fill: #C97E3A;
}

.offcanvas-menu {
  --bs-offcanvas-width: 320px;
}
.offcanvas-menu .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #e2e0dc;
}
.offcanvas-menu .offcanvas-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A2A3A;
}
.offcanvas-menu .offcanvas-title span {
  color: #C97E3A;
}
.offcanvas-menu .offcanvas-body {
  padding: 0;
}
.offcanvas-menu__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.offcanvas-menu__item {
  border-bottom: 1px solid #e2e0dc;
}
.offcanvas-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #1A2A3A;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.offcanvas-menu__link:hover {
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.04);
}
.offcanvas-menu__link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.25s ease;
}
.offcanvas-menu__link.is-open svg {
  transform: rotate(180deg);
}
.offcanvas-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  background-color: #f7f6f4;
  padding: 8px 0;
}
.offcanvas-menu__submenu.is-open {
  display: block;
}
.offcanvas-menu__sublink {
  display: block;
  padding: 12px 20px 12px 32px;
  font-size: 16px;
  color: #1A2A3A;
  transition: color 0.25s ease;
}
.offcanvas-menu__sublink:hover {
  color: #C97E3A;
}
.offcanvas-menu__footer {
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid #e2e0dc;
}
.offcanvas-menu__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #1A2A3A;
}
.offcanvas-menu__phone svg {
  width: 16px;
  height: 16px;
  fill: #C97E3A;
}
.offcanvas-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #C97E3A;
  border-radius: 6px;
  transition: background-color 0.25s ease;
}
.offcanvas-menu__cta:hover {
  background-color: #a8682e;
  color: #ffffff;
}

/* Packaging CTA */
.pack-cta {
  padding: 48px 0 64px;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .pack-cta {
    padding: 56px 0 80px;
  }
}
.pack-cta__wrap {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .pack-cta__wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.pack-cta__card {
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 40px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1A2A3A 0%, #243447 55%, #1e3348 100%);
  -webkit-box-shadow: 0 24px 64px rgba(26, 42, 58, 0.22);
  box-shadow: 0 24px 64px rgba(26, 42, 58, 0.22);
}

@media (min-width: 992px) {
  .pack-cta__card {
    -ms-grid-columns: 1.05fr 0.95fr;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 56px 56px 56px 60px;
  }
}
.pack-cta__card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 126, 58, 0.45) 0%, rgba(201, 126, 58, 0) 68%);
  pointer-events: none;
}

.pack-cta__card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 126, 58, 0.15) 0%, rgba(201, 126, 58, 0) 70%);
  pointer-events: none;
}

.pack-cta__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pack-cta__decor-box {
  position: absolute;
  color: rgba(255, 255, 255, 0.07);
}

.pack-cta__decor-box--1 {
  top: 12%;
  left: 4%;
  width: 90px;
  -webkit-transform: rotate(-14deg);
  transform: rotate(-14deg);
}

.pack-cta__decor-box--2 {
  bottom: 8%;
  right: 38%;
  width: 70px;
  -webkit-transform: rotate(22deg);
  transform: rotate(22deg);
  opacity: 0.6;
}

.pack-cta__decor-ring {
  position: absolute;
  top: 50%;
  right: 42%;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(201, 126, 58, 0.25);
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .pack-cta__decor-ring {
    display: none;
  }
}
.pack-cta__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.pack-cta__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.18);
  border: 1px solid rgba(201, 126, 58, 0.35);
  border-radius: 100px;
}

.pack-cta__title {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 2.8vw + 0.6rem, 2.375rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.pack-cta__title span {
  color: #C97E3A;
}

.pack-cta__text {
  margin: 0 0 24px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.pack-cta__perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.pack-cta__perks li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.pack-cta__perks svg {
  width: 18px;
  height: 18px;
  fill: #C97E3A;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.pack-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.pack-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.pack-cta__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.pack-cta__btn--primary {
  color: #ffffff;
  background-color: #C97E3A;
  border-color: #C97E3A;
}

.pack-cta__btn--primary:hover {
  background-color: #a8682e;
  border-color: #a8682e;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.pack-cta__btn--ghost {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.pack-cta__btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.pack-cta__visual {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 260px;
}

@media (min-width: 992px) {
  .pack-cta__visual {
    min-height: 320px;
  }
}
.pack-cta__stack {
  position: relative;
  width: min(100%, 340px);
  height: 280px;
}

@media (min-width: 992px) {
  .pack-cta__stack {
    width: 360px;
    height: 300px;
  }
}
.pack-cta__photo {
  position: absolute;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.12);
  -webkit-box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.pack-cta__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.pack-cta__photo--back {
  width: 58%;
  top: 8%;
  left: 0;
  -webkit-transform: rotate(-8deg);
  transform: rotate(-8deg);
  z-index: 1;
}

.pack-cta__photo--mid {
  width: 62%;
  top: 18%;
  right: 4%;
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
  z-index: 2;
}

.pack-cta__photo--front {
  width: 68%;
  bottom: 0;
  left: 18%;
  -webkit-transform: rotate(-2deg);
  transform: rotate(-2deg);
  z-index: 3;
}

.pack-cta__card:hover .pack-cta__photo--back {
  -webkit-transform: rotate(-12deg) translateX(-6px);
  transform: rotate(-12deg) translateX(-6px);
}

.pack-cta__card:hover .pack-cta__photo--mid {
  -webkit-transform: rotate(10deg) translateX(6px);
  transform: rotate(10deg) translateX(6px);
}

.pack-cta__card:hover .pack-cta__photo--front {
  -webkit-transform: rotate(-2deg) translateY(-6px);
  transform: rotate(-2deg) translateY(-6px);
}

.pack-cta__badge {
  position: absolute;
  bottom: 12%;
  right: 0;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 18px;
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  line-height: 1.2;
}

.pack-cta__badge strong {
  font-size: 22px;
  font-weight: 700;
  color: #C97E3A;
}

.pack-cta__badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a6570;
}

@media (max-width: 575.98px) {
  .pack-cta__card {
    padding: 32px 20px;
  }
  .pack-cta__visual {
    min-height: 220px;
  }
  .pack-cta__stack {
    height: 220px;
  }
  .pack-cta__badge {
    right: 4%;
    padding: 10px 14px;
  }
  .pack-cta__badge strong {
    font-size: 18px;
  }
}
/* Reviews */
.reviews {
  padding: 56px 0 72px;
  background-color: #ffffff;
  border-top: 1px solid #e8e6e3;
}

@media (min-width: 992px) {
  .reviews {
    padding: 72px 0 88px;
  }
}
.reviews__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .reviews__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.reviews__top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media (min-width: 992px) {
  .reviews__top {
    -ms-grid-columns: 1fr 360px;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    margin-bottom: 48px;
  }
}
.reviews__header {
  max-width: none;
  margin: 0;
  text-align: left;
}

.reviews__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 100px;
}

.reviews__title {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw + 0.6rem, 2.375rem);
  line-height: 1.2;
}

.reviews__title span {
  color: #C97E3A;
}

.reviews__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.reviews__rating-box {
  width: 100%;
  max-width: 360px;
  margin: 0;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C97E3A 0%, #e8b07a 50%, #1A2A3A 100%);
  -webkit-box-shadow: 0 10px 32px rgba(201, 126, 58, 0.15);
  box-shadow: 0 10px 32px rgba(201, 126, 58, 0.15);
}

@media (min-width: 992px) {
  .reviews__rating-box {
    margin-left: auto;
  }
}
@media (max-width: 991.98px) {
  .reviews__rating-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.reviews__rating-box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background-color: #ffffff;
}

.reviews__rating-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.reviews__rating-score {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1A2A3A;
}

.reviews__rating-meta {
  text-align: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.reviews__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  margin-bottom: 4px;
}

.reviews__stars svg {
  width: 18px;
  height: 18px;
  fill: #C97E3A;
}

.reviews__rating-label {
  margin: 0;
  font-size: 13px;
  color: #5a6570;
  line-height: 1.3;
}

.reviews__rating-label strong {
  color: #1A2A3A;
  font-weight: 700;
}

.reviews__rating-platforms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid #eceae7;
}

.reviews__platform {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  opacity: 0.9;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.reviews__platform:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.reviews__platform img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 52px;
  -o-object-fit: contain;
  object-fit: contain;
}

.reviews__slider {
  position: relative;
}

.reviews__swiper-wrap {
  width: 100%;
  min-width: 0;
}

.reviews__nav--prev {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.reviews__nav--next {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.reviews__pagination {
  position: relative;
  margin-top: 28px;
  text-align: center;
}

.reviews__swiper {
  overflow: hidden;
}

.reviews__swiper .swiper-slide {
  height: auto;
  display: flex;
}

.reviews__swiper .swiper-slide .reviews__card {
  width: 100%;
}

.reviews__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .reviews__grid {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .reviews__grid {
    -ms-grid-columns: 1fr [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.reviews__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 28px 24px 24px;
  background-color: #f7f6f4;
  border: 1px solid #eceae7;
  border-radius: 14px;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.reviews__card:hover {
  border-color: rgba(201, 126, 58, 0.35);
  -webkit-box-shadow: 0 12px 36px rgba(26, 42, 58, 0.08);
  box-shadow: 0 12px 36px rgba(26, 42, 58, 0.08);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.reviews__quote {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  fill: rgba(201, 126, 58, 0.12);
  pointer-events: none;
}

.reviews__card-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.reviews__card-stars svg {
  width: 16px;
  height: 16px;
  fill: #C97E3A;
}

.reviews__text {
  margin: 0 0 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
  font-style: normal;
}

.reviews__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e8e6e3;
}

.reviews__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #C97E3A, #a8682e);
  border-radius: 50%;
}

.reviews__author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.reviews__name {
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
  color: #1A2A3A;
}

.reviews__role {
  font-size: 13px;
  color: #5a6570;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviews__nav {
  position: absolute;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid #e8e6e3;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1A2A3A;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 16px rgba(26, 42, 58, 0.1);
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.1);
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.reviews__nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.reviews__nav:hover:not(.swiper-button-disabled) {
  background-color: #C97E3A;
  border-color: #C97E3A;
  color: #ffffff;
}

.reviews__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d4d0cb;
  opacity: 1;
  -webkit-transition: background-color 0.25s ease, width 0.25s ease;
  transition: background-color 0.25s ease, width 0.25s ease;
}

.reviews__pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 100px;
  background-color: #C97E3A;
}

@media (max-width: 767.98px) {
  .reviews__nav {
    display: none;
  }
}
/* FAQ */
.faq {
  padding: 56px 0 72px;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .faq {
    padding: 72px 0 88px;
  }
}
.faq__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .faq__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.faq__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media (min-width: 992px) {
  .faq__layout {
    -ms-grid-columns: 0.9fr 1.1fr;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
  }
}
.faq__intro {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.faq__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 100px;
}

.faq__title {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.5vw + 0.6rem, 2.25rem);
  line-height: 1.2;
}

.faq__title span {
  color: #C97E3A;
}

.faq__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.faq__highlights {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 12px;
}

.faq__highlights li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #1A2A3A;
}

.faq__highlights svg {
  width: 20px;
  height: 20px;
  fill: #C97E3A;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #C97E3A;
  border-radius: 8px;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.faq__cta:hover {
  background-color: #a8682e;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.faq__list {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.faq__item {
  background-color: #ffffff;
  border: 1px solid #eceae7;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.faq__item.is-open {
  border-color: rgba(201, 126, 58, 0.4);
  -webkit-box-shadow: 0 8px 28px rgba(26, 42, 58, 0.06);
  box-shadow: 0 8px 28px rgba(26, 42, 58, 0.06);
}

.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #1A2A3A;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.faq__question span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.faq__item.is-open .faq__question {
  color: #C97E3A;
}

.faq__icon {
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: #C97E3A;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__icon-v {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

.faq__item.is-open .faq__icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__item.is-open .faq__icon-v {
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.faq__answer {
  overflow: hidden;
}

.faq__answer[hidden] {
  display: block;
  height: 0;
  visibility: hidden;
}

.faq__item.is-open .faq__answer {
  height: auto;
  visibility: visible;
}

.faq__answer p {
  margin: 0;
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #5a6570;
}

@media (max-width: 991.98px) {
  .faq__intro {
    position: static;
  }
}
/* Blog posts */
.blog-posts {
  padding: 56px 0 72px;
  background-color: #ffffff;
  border-top: 1px solid #e8e6e3;
}

@media (min-width: 992px) {
  .blog-posts {
    padding: 72px 0 88px;
  }
}
.blog-posts__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .blog-posts__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.blog-posts__header {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .blog-posts__header {
    margin-bottom: 48px;
  }
}
.blog-posts__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97E3A;
  background-color: rgba(201, 126, 58, 0.1);
  border-radius: 100px;
}

.blog-posts__title {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.5vw + 0.6rem, 2.25rem);
  line-height: 1.2;
}

.blog-posts__title span {
  color: #C97E3A;
}

.blog-posts__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.blog-posts__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .blog-posts__grid {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-posts__grid {
    -ms-grid-columns: 1fr [4];
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.blog-posts__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  background-color: #f7f6f4;
  border: 1px solid #eceae7;
  border-radius: 14px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}

.blog-posts__card:hover {
  border-color: rgba(201, 126, 58, 0.35);
  -webkit-box-shadow: 0 12px 36px rgba(26, 42, 58, 0.08);
  box-shadow: 0 12px 36px rgba(26, 42, 58, 0.08);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

.blog-posts__card:hover .blog-posts__image img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.blog-posts__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/2;
  background-color: #e8e6e3;
}

.blog-posts__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.blog-posts__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(26, 42, 58, 0.82);
  border-radius: 4px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.blog-posts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 18px 18px 20px;
}

.blog-posts__date {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #C97E3A;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-posts__card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-posts__card-title a {
  color: #1A2A3A;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.blog-posts__card-title a:hover {
  color: #C97E3A;
}

.blog-posts__excerpt {
  margin: 0 0 16px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6570;
}

.blog-posts__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
  -webkit-transition: color 0.25s ease, gap 0.25s ease;
  transition: color 0.25s ease, gap 0.25s ease;
}

.blog-posts__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.blog-posts__link:hover {
  color: #a8682e;
}

.blog-posts__link:hover svg {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

.blog-posts__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .blog-posts__footer {
    margin-top: 48px;
  }
}
.blog-posts__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #C97E3A;
  border: 2px solid #C97E3A;
  border-radius: 8px;
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.blog-posts__cta:hover {
  background-color: #a8682e;
  border-color: #a8682e;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* Site footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background: linear-gradient(165deg, #0c1219 0%, #1A2A3A 45%, #152232 100%);
  color: rgba(255, 255, 255, 0.88);
}

@media (min-width: 992px) {
  .site-footer {
    padding-top: 72px;
  }
}
.site-footer__glow {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 126, 58, 0.22) 0%, rgba(201, 126, 58, 0) 68%);
  pointer-events: none;
}

.site-footer__glow::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -300px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 126, 58, 0.1) 0%, rgba(201, 126, 58, 0) 70%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .site-footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.site-footer__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 36px 32px;
  padding-bottom: 48px;
}

@media (min-width: 576px) {
  .site-footer__main {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .site-footer__main {
    -ms-grid-columns: 1.4fr 1fr 1fr 1fr 1.25fr;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.25fr;
    gap: 32px;
    padding-bottom: 56px;
  }
}
.site-footer__brand {
  -ms-grid-column: 1;
  grid-column: 1;
}

@media (min-width: 576px) {
  .site-footer__brand {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/-1;
  }
}
@media (min-width: 992px) {
  .site-footer__brand {
    -ms-grid-column: auto;
    -ms-grid-column-span: 1;
    grid-column: auto;
  }
}
.site-footer__logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.site-footer__logo span {
  color: #C97E3A;
}

.site-footer__logo:hover {
  color: #ffffff;
}

.site-footer__tagline {
  margin: 0 0 24px;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.site-footer__social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  -webkit-transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.site-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__social-link:hover {
  background-color: #C97E3A;
  border-color: #C97E3A;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.site-footer__newsletter {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 340px;
}

.site-footer__newsletter-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.site-footer__newsletter-text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 480px) {
  .site-footer__newsletter-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.site-footer__newsletter-input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.site-footer__newsletter-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__newsletter-input:focus {
  outline: none;
  border-color: #C97E3A;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 0 0 3px rgba(201, 126, 58, 0.2);
  box-shadow: 0 0 0 3px rgba(201, 126, 58, 0.2);
}

.site-footer__newsletter-btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 12px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #1A2A3A;
  background-color: #C97E3A;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.site-footer__newsletter-btn:hover {
  background-color: #e09450;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.site-footer__heading {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-footer__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background-color: #C97E3A;
  border-radius: 2px;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}

.site-footer__links a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
  -webkit-transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, -webkit-transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease;
  transition: color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.site-footer__links a:hover {
  color: #C97E3A;
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.site-footer__contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.site-footer__contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.site-footer__contact-list svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  fill: #C97E3A;
}

.site-footer__contact-label {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__contact-list a {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.site-footer__contact-list a:hover {
  color: #C97E3A;
}

.site-footer__contact-list span:not(.site-footer__contact-label) {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__divider {
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(201, 126, 58, 0.5)), color-stop(50%, rgba(255, 255, 255, 0.08)), to(rgba(201, 126, 58, 0.2)));
  background: linear-gradient(90deg, rgba(201, 126, 58, 0.5) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(201, 126, 58, 0.2) 100%);
}

.site-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 28px 0 32px;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 0 36px;
  }
}
.site-footer__copy {
  margin: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__payments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .site-footer__payments {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    margin-left: auto;
  }
}
.site-footer__payments-label {
  display: block;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.site-footer__payments-list {
  list-style: none;
  margin: 0;
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.site-footer__payments-list img {
  height: 28px;
  width: auto;
  max-width: 52px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
  opacity: 0.92;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.site-footer__payments-list li:hover img {
  opacity: 1;
}

/* Archive page — product grid title (banner styles in components/archive) */
.archive-products {
  padding-top: 48px;
}

@media (min-width: 992px) {
  .archive-products {
    padding-top: 56px;
  }
}
.archive-products .popular-products__inner {
  max-width: 1320px;
}

.archive-products__header {
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .archive-products__header {
    margin-bottom: 40px;
  }
}
.archive-products__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.8vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a2a3a;
}
.archive-products__title span {
  color: #c97e3a;
}

.archive-products__text {
  margin: 0;
  max-width: 52rem;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

/* Design options (archive) */
.design-options {
  padding: 48px 0;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .design-options {
    padding: 72px 0;
  }
}
.design-options__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 992px) {
  .design-options__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.design-options__header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

@media (min-width: 992px) {
  .design-options__header {
    margin-bottom: 40px;
  }
}
.design-options__title {
  margin: 0 0 14px;
  color: #1a2a3a;
}

.design-options__title span {
  color: #c97e3a;
}

.design-options__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.design-options__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.design-options__tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .design-options__tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    overflow-x: visible;
  }
}
.design-options__tab {
  flex-shrink: 0;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #5a6570;
  background-color: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .design-options__tab {
    padding: 11px 22px;
  }
}
.design-options__tab:hover {
  color: #1a2a3a;
  border-color: rgba(201, 126, 58, 0.35);
}

.design-options__tab.is-active {
  color: #ffffff;
  background-color: #1a2a3a;
  border-color: #1a2a3a;
  box-shadow: 0 4px 14px rgba(26, 42, 58, 0.2);
}

.design-options__tab:focus-visible {
  outline: 2px solid #c97e3a;
  outline-offset: 2px;
}

.design-options__panel {
  display: none;
}

.design-options__panel.is-active {
  display: block;
  animation: popular-products-fade 0.3s ease;
}

.design-options__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .design-options__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (min-width: 992px) {
  .design-options__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.design-options__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.design-options__card:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.08);
  transform: translateY(-2px);
}

.design-options__card-image {
  aspect-ratio: 800/462;
  overflow: hidden;
  background-color: #f0eeeb;
}

.design-options__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-options__card-title {
  margin: 0;
  padding: 16px 16px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2a3a;
}

.design-options__card-text {
  margin: 0;
  padding: 0 16px 18px;
  flex: 1;
  font-size: 16px;
  line-height: 1.55;
  color: #5a6570;
}

/* Legal pages */
.legal-page {
  background-color: #ffffff;
}

.legal-plain {
  padding: 40px 0 64px;
}

@media (min-width: 992px) {
  .legal-plain {
    padding: 56px 0 80px;
  }
}
.legal-plain__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .legal-plain__inner {
    padding: 0 24px;
  }
}
.legal-plain__layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 992px) {
  .legal-plain__layout {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 40px;
  }
}
.legal-sidebar {
  display: grid;
  gap: 16px;
}

@media (min-width: 992px) {
  .legal-sidebar {
    position: sticky;
    top: 96px;
  }
}
.legal-sidebar__box {
  padding: 20px;
  background-color: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 12px;
}

.legal-sidebar__title {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #1a2a3a;
}

.legal-sidebar__toc,
.legal-sidebar__policies {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-sidebar__toc li + li,
.legal-sidebar__policies li + li {
  margin-top: 6px;
}

.legal-sidebar__toc-link,
.legal-sidebar__policy-link {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  color: #5a6570;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.legal-sidebar__toc-link:hover,
.legal-sidebar__policy-link:hover {
  background-color: #ffffff;
  color: #1a2a3a;
}

.legal-sidebar__policy-link.is-current {
  background-color: rgba(201, 126, 58, 0.12);
  color: #9a5b28;
  font-weight: 600;
}

.legal-plain__main {
  min-width: 0;
}

.legal-plain__block {
  scroll-margin-top: 110px;
}

.legal-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 16px;
  color: #5a6570;
}

.legal-breadcrumb a {
  color: #1a2a3a;
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: #c97e3a;
}

.legal-plain__header {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e6e3;
}

.legal-plain__title {
  margin: 0 0 10px;
  color: #1a2a3a;
}

.legal-plain__updated {
  margin: 0 0 16px;
  font-size: 16px;
  color: #7a8490;
}

.legal-plain__intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5a6570;
}

.legal-plain__content {
  display: grid;
  gap: 28px;
}

.legal-plain__block h2 {
  margin: 0 0 12px;
  font-size: 1.375rem;
  color: #1a2a3a;
}

.legal-plain__block p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.legal-plain__block p:last-child {
  margin-bottom: 0;
}

.legal-plain__block ul {
  margin: 0 0 14px;
  padding-left: 1.25rem;
}

.legal-plain__block li {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.legal-plain__block li + li {
  margin-top: 8px;
}

.legal-plain__block a {
  color: #c97e3a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-plain__block a:hover {
  color: #9a5b28;
}

.legal-plain__block strong {
  color: #1a2a3a;
}

.legal-contact {
  margin-top: 48px;
  padding: 28px 24px;
  background-color: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 12px;
}

.legal-contact__title {
  margin: 0 0 10px;
  font-size: 1.375rem;
  color: #1a2a3a;
}

.legal-contact__text {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.legal-contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

@media (min-width: 576px) {
  .legal-contact__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
}
.legal-contact__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-contact__label {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a3a;
}

.legal-contact__list a,
.legal-contact__list span {
  font-size: 16px;
  line-height: 1.5;
  color: #4a5568;
  text-decoration: none;
}

.legal-contact__list a:hover {
  color: #c97e3a;
}

/* About page */
.about-hero {
  padding: clamp(2rem, 4vh, 3.5rem) 0;
  background: radial-gradient(38rem 30rem at 92% -12%, rgba(201, 126, 58, 0.18), transparent 62%), radial-gradient(34rem 30rem at -6% 112%, rgba(26, 42, 58, 0.08), transparent 58%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

.about-hero__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-hero__inner {
    padding: 0 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.about-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #5a6570;
}

.about-hero__breadcrumb a {
  color: #1a2a3a;
  text-decoration: none;
}

.about-hero__breadcrumb a:hover {
  color: #c97e3a;
}

.about-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  line-height: 1.12;
  color: #1a2a3a;
}

.about-hero__title span {
  color: #c97e3a;
}

.about-hero__text {
  margin: 0 0 22px;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5a6570;
}

.about-hero__points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-hero__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #1a2a3a;
}

.about-hero__points svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: #c97e3a;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.about-hero__btn--primary {
  color: #ffffff;
  background-color: #c97e3a;
  box-shadow: 0 8px 24px rgba(201, 126, 58, 0.28);
}

.about-hero__btn--primary:hover {
  background-color: #b36d2f;
  color: #ffffff;
  transform: translateY(-2px);
}

.about-hero__btn--outline {
  color: #1a2a3a;
  border: 1px solid #d8d5d0;
  background: #ffffff;
}

.about-hero__btn--outline:hover {
  border-color: #c97e3a;
  color: #c97e3a;
}

.about-hero__collage {
  position: relative;
  min-height: 360px;
}

.about-hero__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.12);
}

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

.about-hero__photo--main {
  width: 78%;
  aspect-ratio: 5/4;
}

.about-hero__photo--small {
  position: absolute;
  width: 42%;
  aspect-ratio: 6/5;
  border: 4px solid #ffffff;
}

.about-hero__photo--top {
  top: 0;
  right: 0;
}

.about-hero__photo--bottom {
  bottom: 0;
  right: 12%;
}

.about-work {
  padding: 48px 16px;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .about-work {
    padding: 64px 24px;
  }
}
.about-work__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.about-work__header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-work__title {
  margin: 0 0 16px;
  color: #1a2a3a;
}

.about-work__title span {
  color: #c97e3a;
}

.about-work__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.about-work__services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .about-work__services {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .about-work__services {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-work__service {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.05);
}

.about-work__service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  background: rgba(201, 126, 58, 0.1);
  border-radius: 12px;
}

.about-work__service-icon svg {
  width: 24px;
  height: 24px;
  fill: #c97e3a;
}

.about-work__service-title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a3a;
}

.about-work__service-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}

.about-work__industries-title {
  margin: 0 0 24px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  color: #1a2a3a;
}

.about-work__industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .about-work__industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .about-work__industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.about-work__industry {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.about-work__industry:hover {
  border-color: #c97e3a;
  box-shadow: 0 14px 36px rgba(26, 42, 58, 0.08);
  transform: translateY(-2px);
}

.about-work__industry img {
  width: 80px;
  height: 80px;
  margin-bottom: 14px;
  object-fit: contain;
  border-radius: 8px;
}

.about-work__industry-name {
  display: block;
  margin-bottom: 6px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a2a3a;
}

.about-work__industry-text {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
}

.about-story {
  padding: 48px 0;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .about-story {
    padding: 72px 0;
  }
}
.about-story__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-story__inner {
    padding: 0 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.about-story__title {
  margin: 0 0 20px;
  color: #1a2a3a;
}

.about-story__title span {
  color: #c97e3a;
}

.about-story__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.about-story__text:last-child {
  margin-bottom: 0;
}

.about-story__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.1);
}

.about-story__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.about-values {
  padding: 48px 0;
  background-color: #ffffff;
}

@media (min-width: 992px) {
  .about-values {
    padding: 72px 0;
  }
}
.about-values__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .about-values__inner {
    padding: 0 24px;
  }
}
.about-values__header {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.about-values__title {
  margin: 0 0 12px;
  color: #1a2a3a;
}

.about-values__title span {
  color: #c97e3a;
}

.about-values__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.about-values__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.about-values__card {
  padding: 28px 24px;
  background: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-values__card:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.08);
  transform: translateY(-3px);
}

.about-values__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(201, 126, 58, 0.12);
  color: #c97e3a;
}

.about-values__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.about-values__card-title {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #1a2a3a;
}

.about-values__card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.about-difference {
  padding: 48px 0;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .about-difference {
    padding: 72px 0;
  }
}
.about-difference__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-difference__inner {
    padding: 0 24px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.about-difference__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.1);
  order: 2;
}

@media (min-width: 992px) {
  .about-difference__media {
    order: 0;
  }
}
.about-difference__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.about-difference__title {
  margin: 0 0 24px;
  color: #1a2a3a;
}

.about-difference__title span {
  color: #c97e3a;
}

.about-difference__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-difference__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #4a5568;
}

.about-difference__list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  fill: #c97e3a;
}

.about-difference__list strong {
  color: #1a2a3a;
}

.about-difference__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #c97e3a;
  text-decoration: none;
}

.about-difference__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.25s ease;
}

.about-difference__link:hover {
  color: #9a5b28;
}

.about-difference__link:hover svg {
  transform: translateX(3px);
}

/* Contact page */
.contact-hero {
  padding: clamp(2.5rem, 6vh, 4rem) 16px clamp(1.5rem, 4vh, 2.5rem);
  text-align: center;
  background: radial-gradient(36rem 28rem at 50% -20%, rgba(201, 126, 58, 0.14), transparent 62%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

.contact-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #5a6570;
}

.contact-hero__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.contact-hero__breadcrumb a:hover {
  color: #c97e3a;
}

.contact-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  color: #1a2a3a;
}

.contact-hero__title span {
  color: #c97e3a;
}

.contact-hero__text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #4a5568;
}

.contact-cards {
  padding: 0 16px 48px;
  margin-top: -8px;
}

@media (min-width: 992px) {
  .contact-cards {
    padding: 0 24px 56px;
  }
}
.contact-cards__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .contact-cards__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-cards__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.contact-card:hover {
  border-color: #c97e3a;
  box-shadow: 0 14px 36px rgba(26, 42, 58, 0.08);
  transform: translateY(-2px);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: rgba(201, 126, 58, 0.1);
  border-radius: 14px;
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
  fill: #c97e3a;
}

.contact-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c97e3a;
}

.contact-card__value {
  display: block;
  margin-bottom: 4px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a2a3a;
}

a.contact-card .contact-card__value {
  color: #1a2a3a;
}

.contact-card__hint {
  font-size: 15px;
  color: #5a6570;
}

.contact-main {
  padding: 48px 16px 64px;
  background-color: #f7f6f4;
}

@media (min-width: 992px) {
  .contact-main {
    padding: 64px 24px 80px;
  }
}
.contact-main__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 1100px) {
  .contact-main__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }
}
.contact-main__form-header {
  margin-bottom: 24px;
}

.contact-main__form-title {
  margin: 0 0 10px;
  color: #1a2a3a;
}

.contact-main__form-title span {
  color: #c97e3a;
}

.contact-main__form-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.contact-form.quote__form {
  box-shadow: 0 16px 48px rgba(26, 42, 58, 0.08);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-aside__card {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.05);
}

.contact-aside__card--accent {
  background: linear-gradient(135deg, #1a2a3a 0%, #243447 100%);
  border-color: transparent;
}

.contact-aside__card--accent .contact-aside__title,
.contact-aside__card--accent .contact-aside__text {
  color: #ffffff;
}

.contact-aside__card--accent .contact-aside__text {
  color: rgba(255, 255, 255, 0.72);
}

.contact-aside__title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a3a;
}

.contact-aside__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}

.contact-aside__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #1a2a3a;
  background: #ffffff;
  transition: background 0.2s, transform 0.2s;
}

.contact-aside__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s;
}

.contact-aside__btn:hover {
  background: #f7f6f4;
  transform: translateY(-1px);
}

.contact-aside__btn:hover svg {
  transform: translateX(3px);
}

.contact-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-aside__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
}

.contact-aside__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c97e3a;
}

.contact-aside__card--visual {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.contact-aside__card--visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.contact-aside__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 14px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.12);
}

.contact-aside__badge strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #c97e3a;
}

.contact-aside__badge span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  color: #5a6570;
}

.contact-map {
  padding: 64px 16px;
  background-color: #1a2a3a;
}

@media (min-width: 992px) {
  .contact-map {
    padding: 80px 24px;
  }
}
.contact-map__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 992px) {
  .contact-map__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.contact-map__title {
  margin: 0 0 16px;
  color: #ffffff;
}

.contact-map__title span {
  color: #c97e3a;
}

.contact-map__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.contact-map__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-map__perks li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-map__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c97e3a;
  font-weight: 700;
}

.contact-map__frame {
  position: relative;
  min-height: 280px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .contact-map__frame {
    min-height: 360px;
  }
}
.contact-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

@media (min-width: 992px) {
  .contact-map__iframe {
    min-height: 360px;
  }
}
/* Request quote page */
.quote-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vh, 3.5rem) 0;
  background: radial-gradient(38rem 30rem at 92% -12%, rgba(201, 126, 58, 0.18), transparent 62%), radial-gradient(34rem 30rem at -6% 112%, rgba(26, 42, 58, 0.08), transparent 58%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

.quote-page-hero__inner {
  display: grid;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .quote-page-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    padding: 0 24px;
  }
}
.quote-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #5a6570;
}

.quote-page-hero__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.quote-page-hero__breadcrumb a:hover {
  color: #c97e3a;
}

.quote-page-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c97e3a;
  background: rgba(201, 126, 58, 0.12);
  border-radius: 100px;
}

.quote-page-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  color: #1a2a3a;
}

.quote-page-hero__title span {
  color: #c97e3a;
}

.quote-page-hero__text {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #4a5568;
}

.quote-page-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: #c97e3a;
  box-shadow: 0 8px 24px rgba(201, 126, 58, 0.28);
  transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.quote-page-hero__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.25s;
}

.quote-page-hero__btn:hover {
  background-color: #b36d2f;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 126, 58, 0.34);
}

.quote-page-hero__btn:hover svg {
  transform: translateX(3px);
}

.quote-page-hero__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.12);
}

.quote-page-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.quote-page-hero__float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 16px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.15);
}

.quote-page-hero__float-score {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #c97e3a;
}

.quote-page-hero__float-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #5a6570;
}

.quote-steps {
  padding: 48px 16px;
  background-color: #ffffff;
}

@media (min-width: 992px) {
  .quote-steps {
    padding: 56px 24px;
  }
}
.quote-steps__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.quote-steps__header {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
}

.quote-steps__title {
  margin: 0 0 12px;
  color: #1a2a3a;
}

.quote-steps__title span {
  color: #c97e3a;
}

.quote-steps__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.quote-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

@media (min-width: 768px) {
  .quote-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.quote-step {
  position: relative;
  padding: 32px 24px 28px;
  background: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-step:hover {
  border-color: rgba(201, 126, 58, 0.35);
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.06);
}

.quote-step__num {
  display: block;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 126, 58, 0.35);
}

.quote-step__title {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2a3a;
}

.quote-step__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}

.quote--page {
  scroll-margin-top: 100px;
}

/* Request quote page — form-first layout */
.rq-page {
  padding: 24px 16px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

@media (min-width: 992px) {
  .rq-page {
    padding: 32px 24px 56px;
  }
}
.rq-page__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.rq-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #5a6570;
}

.rq-page__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.rq-page__breadcrumb a:hover {
  color: #c97e3a;
}

.rq-page__title-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .rq-page__title-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }
}
.rq-page__title {
  margin: 0 0 8px;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  color: #1a2a3a;
}

.rq-page__title span {
  color: #c97e3a;
}

.rq-page__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}

.rq-page__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rq-page__pills li {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 100px;
  white-space: nowrap;
}

.rq-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

@media (min-width: 1100px) {
  .rq-page__layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 28px;
  }
}
.rq-form.quote__form {
  box-shadow: 0 16px 48px rgba(26, 42, 58, 0.1);
  border: 1px solid #e8e6e3;
}

.rq-form__submit {
  width: 100%;
}

@media (min-width: 576px) {
  .rq-form__submit {
    width: auto;
    min-width: 220px;
  }
}
.rq-page__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1100px) {
  .rq-page__aside {
    position: sticky;
    top: 100px;
  }
}
.rq-aside__card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.04);
}

.rq-aside__card--phone {
  background: linear-gradient(135deg, #1a2a3a 0%, #243447 100%);
  border-color: transparent;
}

.rq-aside__card--phone .rq-aside__card-title,
.rq-aside__card--phone .rq-aside__card-text {
  color: #ffffff;
}

.rq-aside__card--phone .rq-aside__card-text {
  color: rgba(255, 255, 255, 0.72);
}

.rq-aside__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.rq-aside__card-icon svg {
  width: 22px;
  height: 22px;
  fill: #c97e3a;
}

.rq-aside__card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a3a;
}

.rq-aside__card-text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
}

.rq-aside__phone,
.rq-aside__email {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.rq-aside__email {
  margin-top: 4px;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.rq-aside__phone:hover,
.rq-aside__email:hover {
  color: #c97e3a;
}

.rq-aside__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.rq-aside__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
}

.rq-aside__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c97e3a;
}

.rq-aside__card--rating {
  text-align: center;
}

.rq-aside__rating-score {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #c97e3a;
}

.rq-aside__rating-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 8px 0 6px;
}

.rq-aside__rating-stars svg {
  width: 18px;
  height: 18px;
  fill: #c97e3a;
}

.rq-aside__rating-label {
  font-size: 13px;
  color: #5a6570;
}

.quote-steps--compact {
  padding-top: 0;
  background-color: #f7f6f4;
}

.quote-steps--compact .quote-steps__header {
  margin-bottom: 28px;
}

.quote-steps--compact .quote-step {
  background: #ffffff;
}

/* Blog archive page */
.blog-hero {
  padding: clamp(2.5rem, 6vh, 4rem) 16px clamp(2.5rem, 5vh, 3.5rem);
  text-align: center;
  background: radial-gradient(36rem 28rem at 50% -20%, rgba(201, 126, 58, 0.14), transparent 62%), linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

.blog-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #5a6570;
}

.blog-hero__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.blog-hero__breadcrumb a:hover {
  color: #c97e3a;
}

.blog-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c97e3a;
  background: rgba(201, 126, 58, 0.12);
  border-radius: 100px;
}

.blog-hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  color: #1a2a3a;
}

.blog-hero__title span {
  color: #c97e3a;
}

.blog-hero__text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #4a5568;
}

.blog-featured {
  padding: 32px 16px 56px;
}

@media (min-width: 992px) {
  .blog-featured {
    padding: 40px 24px 64px;
  }
}
.blog-featured__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.blog-featured__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(26, 42, 58, 0.08);
}

@media (min-width: 992px) {
  .blog-featured__card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}
.blog-featured__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 240px;
}

.blog-featured__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-featured__card:hover .blog-featured__media img {
  transform: scale(1.04);
}

.blog-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: #c97e3a;
  border-radius: 100px;
}

.blog-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}

@media (min-width: 992px) {
  .blog-featured__content {
    padding: 40px 44px;
  }
}
.blog-featured__tag {
  display: inline-block;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c97e3a;
  background: rgba(201, 126, 58, 0.1);
  border-radius: 100px;
}

.blog-featured__title {
  margin: 0 0 14px;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.25;
}

.blog-featured__title a {
  color: #1a2a3a;
  text-decoration: none;
}

.blog-featured__title a:hover {
  color: #c97e3a;
}

.blog-featured__excerpt {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.blog-featured__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #5a6570;
}

.blog-featured__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: #c97e3a;
  box-shadow: 0 8px 20px rgba(201, 126, 58, 0.28);
  transition: background 0.2s, transform 0.2s;
}

.blog-featured__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.blog-featured__btn:hover {
  background: #b36d2f;
  color: #ffffff;
  transform: translateY(-2px);
}

.blog-posts--archive {
  padding-top: 48px;
  padding-bottom: 72px;
  border-top: 1px solid #e8e6e3;
  background: #f7f6f4;
}

@media (min-width: 992px) {
  .blog-posts--archive {
    padding-top: 56px;
    padding-bottom: 88px;
  }
}
.blog-archive__toolbar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .blog-archive__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.blog-archive__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #1a2a3a;
}

.blog-archive__title span {
  color: #c97e3a;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filters__btn {
  padding: 8px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #5a6570;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.blog-filters__btn:hover,
.blog-filters__btn.is-active {
  color: #ffffff;
  background: #c97e3a;
  border-color: #c97e3a;
}

.blog-posts__grid--archive {
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 576px) {
  .blog-posts__grid--archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .blog-posts__grid--archive {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog-posts__card[hidden] {
  display: none;
}

/* Single blog post */
.blog-single-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

.blog-single-hero__grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 16px 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .blog-single-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    padding: 48px 24px 56px;
  }
}
.blog-single-hero__content {
  text-align: left;
}

.blog-single-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #5a6570;
}

.blog-single-hero__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.blog-single-hero__breadcrumb a:hover {
  color: #c97e3a;
}

.blog-single-hero__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c97e3a;
  background: rgba(201, 126, 58, 0.12);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s;
}

.blog-single-hero__tag:hover {
  background: rgba(201, 126, 58, 0.2);
  color: #c97e3a;
}

.blog-single-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.2;
  color: #1a2a3a;
}

.blog-single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 15px;
  color: #5a6570;
}

.blog-single-hero__image {
  margin: 0;
  padding: 0;
}

.blog-single-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.12);
}

.blog-single__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 16px 64px;
}

@media (min-width: 992px) {
  .blog-single__inner {
    padding: 48px 24px 80px;
  }
}
.blog-single__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 1100px) {
  .blog-single__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 56px;
  }
}
.blog-article {
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.04);
}

@media (min-width: 768px) {
  .blog-article {
    padding: 40px 48px;
  }
}
.blog-article__lead {
  margin: 0 0 28px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #1a2a3a;
  font-weight: 500;
}

.blog-article h2 {
  margin: 32px 0 14px;
  font-size: 1.375rem;
  color: #1a2a3a;
  scroll-margin-top: 120px;
}

.blog-article h2:first-of-type {
  margin-top: 0;
}

.blog-article p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
}

.blog-article ul {
  margin: 0 0 20px;
  padding-left: 1.25rem;
}

.blog-article li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5568;
}

.blog-article__quote {
  margin: 28px 0;
  padding: 24px 28px;
  background: #f7f6f4;
  border-left: 4px solid #c97e3a;
  border-radius: 0 12px 12px 0;
}

.blog-article__quote p {
  margin: 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: #1a2a3a;
}

.blog-article__cta {
  margin-top: 36px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(135deg, #1a2a3a 0%, #243447 100%);
  border-radius: 14px;
}

.blog-article__cta h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  color: #ffffff;
}

.blog-article__cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.blog-article__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #1a2a3a;
  background: #ffffff;
  transition: transform 0.2s;
}

.blog-article__cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.blog-article__cta-btn:hover {
  transform: translateY(-2px);
  color: #1a2a3a;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: start;
}

@media (min-width: 1100px) {
  .blog-sidebar {
    position: sticky;
    top: 96px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
}
.blog-sidebar__card {
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.04);
}

.blog-sidebar__card--accent {
  background: linear-gradient(135deg, #1a2a3a 0%, #243447 100%);
  border-color: transparent;
}

.blog-sidebar__card--accent .blog-sidebar__title,
.blog-sidebar__card--accent .blog-sidebar__text {
  color: #ffffff;
}

.blog-sidebar__card--accent .blog-sidebar__text {
  color: rgba(255, 255, 255, 0.72);
}

.blog-sidebar__title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a3a;
}

.blog-sidebar__toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-sidebar__toc a {
  font-size: 15px;
  line-height: 1.45;
  color: #5a6570;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid #f0eeeb;
  transition: color 0.2s;
}

.blog-sidebar__toc a:hover {
  color: #c97e3a;
}

.blog-sidebar__text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #5a6570;
}

.blog-sidebar__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #1a2a3a;
  background: #ffffff;
  transition: transform 0.2s;
}

.blog-sidebar__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.blog-sidebar__btn:hover {
  transform: translateY(-1px);
}

.blog-sidebar__link {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #c97e3a;
}

.blog-sidebar__link + .blog-sidebar__link {
  margin-top: 6px;
  font-weight: 500;
  color: #5a6570;
}

.blog-related {
  padding: 56px 16px 72px;
  background: #f7f6f4;
  border-top: 1px solid #e8e6e3;
}

@media (min-width: 992px) {
  .blog-related {
    padding: 64px 24px 80px;
  }
}
.blog-related__inner {
  max-width: 1320px;
  margin: 0 auto;
}

.blog-related__title {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #1a2a3a;
}

.blog-related__title span {
  color: #c97e3a;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .blog-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
.blog-posts__empty {
  margin: 32px 0;
  padding: 40px 24px;
  text-align: center;
  font-size: 16px;
  color: #5a6570;
  background: #ffffff;
  border: 1px dashed #d8d4cf;
  border-radius: 14px;
}

.blog-posts__pagination {
  margin-top: 48px;
}

.blog-posts__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-posts__pagination .page-numbers li {
  margin: 0;
}

.blog-posts__pagination .page-numbers a,
.blog-posts__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #1a2a3a;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.blog-posts__pagination .page-numbers a:hover {
  color: #c97e3a;
  border-color: #c97e3a;
}

.blog-posts__pagination .page-numbers .current {
  color: #ffffff;
  background: #c97e3a;
  border-color: #c97e3a;
}

/* Single product page */
.product-page {
  padding: 32px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}

@media (min-width: 992px) {
  .product-page {
    padding: 40px 0 80px;
  }
}
.product-page__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .product-page__inner {
    padding: 0 24px;
  }
}
.product-page__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .product-page__hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    margin-bottom: 56px;
  }
}
.product-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #5a6570;
}

.product-page__breadcrumb a {
  color: #5a6570;
  text-decoration: none;
}

.product-page__breadcrumb a:hover {
  color: #c97e3a;
}

.product-page__title {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: #1a2a3a;
}

.product-page__title span {
  color: #c97e3a;
}

.product-page__desc {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.product-page__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.product-page__stars {
  display: flex;
  gap: 2px;
}

.product-page__stars svg {
  width: 18px;
  height: 18px;
  fill: #c97e3a;
}

.product-page__rating-text {
  font-size: 15px;
  color: #5a6570;
}

.product-page__price {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(26, 42, 58, 0.05);
}

.product-page__price-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5a6570;
}

.product-page__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.product-page__price-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: #c97e3a;
}

.product-page__price-note {
  font-size: 15px;
  color: #5a6570;
}

.product-page__price-total {
  margin: 0;
  font-size: 15px;
  color: #1a2a3a;
}

.product-page__price-total strong {
  color: #1a2a3a;
}

.product-page__form {
  margin-bottom: 20px;
}

.product-page__form .product-page__btn--primary {
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 576px) {
  .product-page__form .product-page__btn--primary {
    width: auto;
    min-width: 200px;
  }
}
.product-page__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 576px) {
  .product-page__form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-page__field {
  display: flex;
  flex-direction: column;
}

.product-page__field--full {
  grid-column: 1/-1;
}

.product-page__label {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1a2a3a;
}

.product-page__label span {
  color: #c97e3a;
}

.product-page__input {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  color: #1a2a3a;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-page__input:focus {
  outline: none;
  border-color: #c97e3a;
  box-shadow: 0 0 0 3px rgba(201, 126, 58, 0.15);
}

.product-page__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6570' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.product-page__textarea {
  resize: vertical;
  min-height: 72px;
}

.product-page__dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 8px;
}

@media (max-width: 575px) {
  .product-page__dims {
    grid-template-columns: 1fr 1fr;
  }
  .product-page__dims select {
    grid-column: 1/-1;
  }
}
.product-page__file {
  width: 100%;
  font-size: 15px;
  color: #5a6570;
}

.product-page__file::file-selector-button {
  margin-right: 12px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  background: #f7f6f4;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  cursor: pointer;
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.product-page__btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-page__btn--primary {
  color: #ffffff;
  background: #c97e3a;
  box-shadow: 0 8px 20px rgba(201, 126, 58, 0.28);
}

.product-page__btn--primary:hover {
  background: #b36d2f;
  transform: translateY(-1px);
}

.product-page__btn--secondary {
  color: #1a2a3a;
  background: #ffffff;
  border: 2px solid #1a2a3a;
}

.product-page__btn--secondary:hover {
  background: #f7f6f4;
  transform: translateY(-1px);
}

.product-page__perks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.product-page__perks li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #5a6570;
}

.product-page__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c97e3a;
  font-weight: 700;
}

.product-page__gallery-wrap {
  min-width: 0;
}

.product-page__gallery-main {
  margin: 0 0 12px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  box-shadow: 0 12px 36px rgba(26, 42, 58, 0.08);
}

.product-page__gallery-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.product-page__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-page__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-page__thumb.is-active {
  border-color: #c97e3a;
  box-shadow: 0 4px 12px rgba(201, 126, 58, 0.2);
}

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

.product-purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 16px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(26, 42, 58, 0.05);
}

.product-purchase__pricing {
  display: contents;
}

.product-purchase__price-block {
  flex: 1 1 140px;
  min-width: 0;
}

.product-purchase__label {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  color: #5a6570;
}

.product-purchase__price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.product-purchase__price {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  color: #1a2a3a;
}

.product-purchase__compare {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #9aa3ad;
  text-decoration: line-through;
}

.product-purchase__info-wrap {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.product-purchase__info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #f0eeeb;
  color: #5a6570;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.product-purchase__info svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.product-purchase__info:hover,
.product-purchase__info-wrap:focus-within .product-purchase__info {
  background: #e8e6e3;
  color: #1a2a3a;
}

.product-purchase__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  width: max-content;
  max-width: 280px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff;
  text-align: left;
  background: #1a2a3a;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(26, 42, 58, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.product-purchase__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: #1a2a3a;
}

.product-purchase__info-wrap:hover .product-purchase__tooltip,
.product-purchase__info-wrap:focus-within .product-purchase__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 575.98px) {
  .product-purchase__tooltip {
    left: auto;
    right: -8px;
    transform: translateY(4px);
  }
  .product-purchase__info-wrap:hover .product-purchase__tooltip,
  .product-purchase__info-wrap:focus-within .product-purchase__tooltip {
    transform: translateY(0);
  }
  .product-purchase__tooltip::after {
    left: auto;
    right: 14px;
    margin-left: 0;
  }
}
.product-purchase__unit {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #5a6570;
}

.product-purchase__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.product-purchase__qty-label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a3a;
  white-space: nowrap;
}

.product-purchase__qty-input {
  width: 72px;
  max-width: none;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #1a2a3a;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-purchase__qty-input:focus {
  outline: none;
  border-color: #c97e3a;
  box-shadow: 0 0 0 3px rgba(201, 126, 58, 0.15);
}

.product-purchase__actions {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

@media (max-width: 575.98px) {
  .product-purchase__actions {
    flex: 1 1 100%;
    justify-content: stretch;
  }
  .product-purchase__btn {
    flex: 1;
  }
}
.product-purchase__btn {
  padding: 10px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-purchase__btn--cart {
  color: #1a2a3a;
  background: #f7f6f4;
  border: 2px solid #e8e6e3;
}

.product-purchase__btn--cart:hover {
  background: #ffffff;
  border-color: #c97e3a;
  transform: translateY(-1px);
}

.product-purchase__btn--buy {
  color: #ffffff;
  background: #c97e3a;
  box-shadow: 0 8px 20px rgba(201, 126, 58, 0.3);
}

.product-purchase__btn--buy:hover {
  background: #b36d2f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 126, 58, 0.35);
}

.product-page__tabs {
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(26, 42, 58, 0.05);
}

.product-page__tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid #e8e6e3;
  background: #f7f6f4;
}

.product-page__tab {
  flex: 1;
  min-width: fit-content;
  padding: 16px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #5a6570;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.product-page__tab:hover {
  color: #1a2a3a;
}

.product-page__tab.is-active {
  color: #ffffff;
  background: #c97e3a;
  border-bottom-color: #c97e3a;
}

.product-page__tab.is-active:hover {
  color: #ffffff;
}

.product-page__tab-count {
  font-weight: 500;
  font-size: 13px;
}

.product-page__panels {
  padding: 0;
}

.product-page__panel {
  display: none;
}

.product-page__panel.is-active {
  display: block;
}

.product-page__panel-inner {
  padding: 28px 24px 32px;
}

@media (min-width: 768px) {
  .product-page__panel-inner {
    padding: 36px 40px 44px;
  }
}
.product-page__panel-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  color: #1a2a3a;
}

.product-page__panel-inner h4 {
  margin: 24px 0 10px;
  font-size: 1rem;
  color: #1a2a3a;
}

.product-page__panel-inner p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.7;
  color: #5a6570;
}

.product-page__panel-inner ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.product-page__panel-inner li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.product-page__panel-scroll {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #c97e3a #f0eeeb;
}

.product-page__panel-scroll::-webkit-scrollbar {
  width: 6px;
}

.product-page__panel-scroll::-webkit-scrollbar-track {
  background: #f0eeeb;
  border-radius: 3px;
}

.product-page__panel-scroll::-webkit-scrollbar-thumb {
  background: #c97e3a;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .product-page__panel-scroll {
    max-height: 380px;
  }
}
.product-page__spec-table {
  width: 100%;
  border-collapse: collapse;
}

.product-page__spec-table th,
.product-page__spec-table td {
  padding: 14px 16px;
  font-size: 15px;
  text-align: left;
  border-bottom: 1px solid #e8e6e3;
}

.product-page__spec-table th {
  width: 38%;
  font-weight: 600;
  color: #1a2a3a;
  background: #f7f6f4;
}

.product-page__spec-table td {
  color: #5a6570;
}

.product-page__panel-inner--reviews {
  padding-top: 28px;
}

.product-reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .product-reviews-layout {
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
  }
}
.product-reviews__col--list {
  min-width: 0;
}

.product-reviews__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}

.product-reviews__score {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #1a2a3a;
}

.product-reviews__summary-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-reviews__stars {
  display: flex;
  gap: 2px;
}

.product-reviews__stars svg {
  width: 20px;
  height: 20px;
  fill: #c97e3a;
}

.product-reviews__count {
  font-size: 15px;
  color: #5a6570;
}

.product-reviews__list {
  display: grid;
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: #c97e3a #f0eeeb;
}

.product-reviews__list::-webkit-scrollbar {
  width: 6px;
}

.product-reviews__list::-webkit-scrollbar-track {
  background: #f0eeeb;
  border-radius: 3px;
}

.product-reviews__list::-webkit-scrollbar-thumb {
  background: #c97e3a;
  border-radius: 3px;
}

.product-review {
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
}

.product-review__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-review__author-block {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.product-review__avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 15px;
  font-weight: 700;
  color: #5a6570;
  background: #e8e6e3;
  border-radius: 50%;
}

.product-review__author-block > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-review__author {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a2a3a;
}

.product-review__date {
  display: block;
  font-size: 13px;
  color: #5a6570;
}

.product-review__date::before {
  content: none;
}

.product-review__stars {
  display: flex;
  flex-shrink: 0;
  gap: 1px;
}

.product-review__stars svg {
  width: 16px;
  height: 16px;
  fill: #c97e3a;
}

.product-review__stars svg.is-empty {
  fill: #d4d0cb;
}

.product-review__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #5a6570;
}

.product-review__text strong {
  color: #1a2a3a;
}

.product-reviews__col--form {
  position: relative;
}

@media (min-width: 900px) {
  .product-reviews__col--form {
    position: sticky;
    top: 24px;
  }
}
.product-reviews__form {
  margin-bottom: 0;
  padding: 24px;
  background: #f7f6f4;
  border-radius: 16px;
  border: 1px solid #e8e6e3;
}

.product-reviews__form-title {
  margin: 0 0 20px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a2a3a;
}

.product-reviews__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 480px) {
  .product-reviews__form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.product-reviews__form .product-page__field--full {
  margin-bottom: 14px;
}

.product-reviews__form .product-page__label span {
  color: #c97e3a;
}

.product-reviews__rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.product-reviews__rating-input input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-reviews__rating-input label {
  font-size: 28px;
  color: #d4d0cb;
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}

.product-reviews__rating-input label:hover,
.product-reviews__rating-input label:hover ~ label,
.product-reviews__rating-input input:checked ~ label {
  color: #c97e3a;
}

.product-reviews__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #1a2a3a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.product-reviews__submit:hover {
  background: #243a4f;
  transform: translateY(-1px);
}

.product-reviews__submit svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-reviews__note {
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
  color: #5a6570;
}

.product-page__toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #1a2a3a;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.product-page__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product page — ordering process */
.product-ordering {
  padding: 48px 0;
  background: #ffffff;
}

@media (min-width: 992px) {
  .product-ordering {
    padding: 64px 0;
  }
}
.product-ordering__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .product-ordering__inner {
    padding: 0 24px;
  }
}
.product-ordering__header {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.product-ordering__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2a3a;
}

.product-ordering__title span {
  color: #c97e3a;
}

.product-ordering__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.product-ordering__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .product-ordering__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .product-ordering__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.product-ordering__step {
  padding: 28px 22px;
  background: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-ordering__step:hover {
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.08);
  transform: translateY(-2px);
}

.product-ordering__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: #c97e3a;
  background: rgba(201, 126, 58, 0.1);
  border-radius: 50%;
}

.product-ordering__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.product-ordering__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  background: #c97e3a;
  border-radius: 50%;
  border: 2px solid #f7f6f4;
}

.product-ordering__step-title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
}

.product-ordering__step-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6570;
}

/* Product page — printing options */
.product-printing {
  padding: 48px 0;
  background: #f7f6f4;
}

@media (min-width: 992px) {
  .product-printing {
    padding: 64px 0;
  }
}
.product-printing__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .product-printing__inner {
    padding: 0 24px;
  }
}
.product-printing__header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.product-printing__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2a3a;
}

.product-printing__title span {
  color: #c97e3a;
}

.product-printing__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5a6570;
}

.product-printing__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.product-printing__tab {
  padding: 10px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #5a6570;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.product-printing__tab:hover {
  color: #1a2a3a;
  border-color: #c97e3a;
}

.product-printing__tab.is-active {
  color: #ffffff;
  background: #c97e3a;
  border-color: #c97e3a;
}

.product-printing__panel {
  display: none;
}

.product-printing__panel.is-active {
  display: block;
}

.product-printing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 576px) {
  .product-printing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .product-printing__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.product-printing__card {
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-printing__card:hover {
  box-shadow: 0 12px 28px rgba(26, 42, 58, 0.08);
  transform: translateY(-2px);
}

.product-printing__card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8e6e3;
}

.product-printing__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-printing__card-title {
  margin: 16px 18px 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
}

.product-printing__card-text {
  margin: 0 18px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6570;
}

/* Product page — related products slider */
.product-related {
  padding: 48px 0 64px;
  background: #ffffff;
}

@media (min-width: 992px) {
  .product-related {
    padding: 64px 0 80px;
  }
}
.product-related__inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 992px) {
  .product-related__inner {
    padding: 0 24px;
  }
}
.product-related__header {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}

.product-related__title {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2a3a;
}

.product-related__title span {
  color: #c97e3a;
}

.product-related__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a6570;
}

.product-related__slider {
  position: relative;
  padding: 0 44px;
}

@media (min-width: 768px) {
  .product-related__slider {
    padding: 0 52px;
  }
}
.product-related__swiper {
  overflow: hidden;
}

.product-related__swiper .swiper-slide {
  height: auto;
}

.product-related__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  color: #1a2a3a;
  background: #ffffff;
  border: 1px solid #e8e6e3;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 42, 58, 0.08);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.product-related__nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.product-related__nav:hover:not(.swiper-button-disabled) {
  color: #ffffff;
  background: #c97e3a;
  border-color: #c97e3a;
}

.product-related__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.product-related__nav--prev {
  left: 0;
}

.product-related__nav--next {
  right: 0;
}

.product-related__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f7f6f4;
  border: 1px solid #e8e6e3;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.product-related__card:hover {
  box-shadow: 0 14px 36px rgba(26, 42, 58, 0.1);
  transform: translateY(-3px);
}

.product-related__card-image {
  display: block;
  aspect-ratio: 600/517;
  overflow: hidden;
  background: #e8e6e3;
}

.product-related__card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.product-related__card:hover .product-related__card-image img {
  transform: scale(1.04);
}

.product-related__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.product-related__card-title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

.product-related__card-title a {
  color: #1a2a3a;
  text-decoration: none;
}

.product-related__card-title a:hover {
  color: #c97e3a;
}

.product-related__card-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #5a6570;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.product-related__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #c97e3a;
  text-decoration: none;
  transition: gap 0.2s;
}

.product-related__card-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-related__card-link:hover {
  gap: 10px;
}

.faq--product {
  background: #ffffff;
}

/* Custom cursor — dot + ring (desktop only) */
@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: none !important;
  }
}
.site-cursor {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor__dot,
.site-cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  will-change: transform;
  pointer-events: none;
}

.site-cursor__dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: #1a2a3a;
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease, background 0.2s ease;
}

.site-cursor__ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid #c97e3a;
  border-radius: 50%;
  background: transparent;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.site-cursor.is-hover .site-cursor__dot {
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  background: #c97e3a;
}

.site-cursor.is-hover .site-cursor__ring {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-color: #c97e3a;
  background: rgba(201, 126, 58, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .site-cursor {
    display: none;
  }
}

/* Thank you, 404, search results */
.utility-page {
  padding: clamp(2.5rem, 6vh, 4.5rem) 16px clamp(3rem, 8vh, 5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f4 100%);
}
@media (min-width: 992px) {
  .utility-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.utility-page__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .utility-page__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.utility-page__inner {
  max-width: 880px;
  text-align: center;
}
.utility-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(201, 126, 58, 0.12);
  color: #C97E3A;
}
.utility-page__icon svg {
  width: 44px;
  height: 44px;
  fill: currentColor;
}
.utility-page__icon--muted {
  background: rgba(26, 42, 58, 0.08);
  color: #1A2A3A;
}
.utility-page__icon--search {
  background: rgba(201, 126, 58, 0.1);
}
.utility-page__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C97E3A;
}
.utility-page__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1A2A3A;
}
.utility-page__title span {
  color: #C97E3A;
}
.utility-page__text {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5a6570;
}
.utility-page__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: left;
}
.utility-page__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #1A2A3A;
}
.utility-page__steps strong {
  display: block;
  margin-bottom: 2px;
  color: #1A2A3A;
}
.utility-page__step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 126, 58, 0.12);
  color: #C97E3A;
  font-size: 13px;
  font-weight: 700;
}
.utility-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.utility-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.utility-page__btn--primary {
  color: #ffffff;
  background: #C97E3A;
  border: 2px solid #C97E3A;
}
.utility-page__btn--primary:hover {
  background: #a8682e;
  border-color: #a8682e;
  color: #ffffff;
  transform: translateY(-2px);
}
.utility-page__btn--outline {
  color: #1A2A3A;
  background: #ffffff;
  border: 2px solid rgba(26, 42, 58, 0.2);
}
.utility-page__btn--outline:hover {
  border-color: #C97E3A;
  color: #C97E3A;
}
.utility-page__contact {
  margin: 0;
  font-size: 15px;
  color: #5a6570;
}
.utility-page__contact a {
  color: #C97E3A;
  font-weight: 600;
}
.utility-page__contact a:hover {
  text-decoration: underline;
}
.utility-page__search-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto 32px;
  gap: 8px;
}
.utility-page__search-form input[type=search] {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #e2e0dc;
  border-radius: 6px;
  background: #ffffff;
}
.utility-page__search-form input[type=search]:focus {
  outline: 2px solid rgba(201, 126, 58, 0.35);
  border-color: #C97E3A;
}
.utility-page__search-form button {
  flex-shrink: 0;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #C97E3A;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.utility-page__search-form button:hover {
  background: #a8682e;
}

.search-results {
  padding: 0 16px clamp(3rem, 8vh, 5rem);
}
@media (min-width: 992px) {
  .search-results {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.search-results__inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .search-results__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.search-results__section {
  margin-bottom: 40px;
}
.search-results__section:last-child {
  margin-bottom: 0;
}
.search-results__heading {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A2A3A;
}
.search-results__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .search-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.search-results__empty {
  margin: 0;
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  border: 1px dashed #e2e0dc;
  border-radius: 16px;
  color: #5a6570;
}
.search-results__empty .utility-page__actions {
  margin-top: 24px;
}
.search-results__tips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin: 24px auto 0;
  text-align: left;
  font-size: 15px;
  color: #5a6570;
}
.search-results__tips li {
  padding-left: 18px;
  position: relative;
}
.search-results__tips li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #C97E3A;
}

.search-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e2e0dc;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.search-card:hover {
  box-shadow: 0 12px 32px rgba(26, 42, 58, 0.1);
  transform: translateY(-2px);
}
.search-card__media {
  display: block;
  aspect-ratio: 4/3;
  background: #f7f6f4;
  overflow: hidden;
}
.search-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(26, 42, 58, 0.25);
}
.search-card__placeholder svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}
.search-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}
.search-card__type {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C97E3A;
}
.search-card__title {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}
.search-card__title a {
  color: #1A2A3A;
  text-decoration: none;
}
.search-card__title a:hover {
  color: #C97E3A;
}
.search-card__excerpt {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #5a6570;
  flex: 1;
}
.search-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #C97E3A;
  text-decoration: none;
}
.search-card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.search-card__link:hover {
  text-decoration: underline;
}

h2:not(.visually-hidden):not(.blog-card__title) {
  font-size: clamp(1.875rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p,
blockquote,
.entry-content p,
.entry-content li,
[class*=__subtitle],
[class*=__intro],
[class*=__excerpt],
[class*=__lead],
[class*=__text],
[class*=__copy],
[class*=__description],
[class*=__note]:not([class*=form]),
.utility-page__contact,
.rq-aside__card-text,
.contact-aside__text,
.legal-contact__text,
.legal-plain__content,
.faq__answer,
.product-tab-panel,
.blog-article__body {
  font-size: max(15px, 1em);
}

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

/*# sourceMappingURL=style.css.map */
