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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  font-size: 93.75%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f7f6f2;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
select,
textarea {
  font-size: max(1rem, 16px);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
.h1,
h2,
.h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

p,
a,
li,
span {
  font-size: 1rem;
}

.text-lead {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #5c4f51;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  clip: auto;
  overflow: visible;
  background: #93032e;
  color: #ffffff;
  border-radius: 0.625rem;
  font-weight: 600;
}

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

@keyframes sr-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sr-fade-left {
  from {
    opacity: 0;
    transform: translate3d(-1.75rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sr-fade-right {
  from {
    opacity: 0;
    transform: translate3d(1.75rem, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sr-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.scroll-reveal {
  opacity: 0;
  will-change: opacity, transform;
}
.scroll-reveal.is-visible {
  animation-duration: 0.7s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-delay: var(--reveal-delay, 0ms);
  animation-fill-mode: forwards;
}
.scroll-reveal--up.is-visible {
  animation-name: sr-fade-up;
}
.scroll-reveal--in.is-visible {
  animation-name: sr-fade-in;
}
.scroll-reveal--left.is-visible {
  animation-name: sr-fade-left;
}
.scroll-reveal--right.is-visible {
  animation-name: sr-fade-right;
}
.scroll-reveal--scale.is-visible {
  animation-name: sr-scale-in;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
  .scroll-reveal.is-visible {
    animation: none;
  }
}
.top-bar {
  position: relative;
  z-index: 100;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.top-bar__inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
}
.top-bar__group {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}
.top-bar__group--left {
  flex: 1;
  overflow: hidden;
}
.top-bar__group--right {
  flex-shrink: 0;
}
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.top-bar__item:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.top-bar__item:hover {
  color: #ffffff;
}
.top-bar__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.top-bar__item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #ffffff;
}
.top-bar__item--hide-sm {
  display: none;
}
@media (min-width: 62rem) {
  .top-bar__item--hide-sm {
    display: inline-flex;
  }
}
.top-bar__item--hide-md {
  display: none;
}
@media (min-width: 75rem) {
  .top-bar__item--hide-md {
    display: inline-flex;
  }
}

@media (max-width: 29.9375rem) {
  .top-bar__group--left > .top-bar__item:first-child span {
    display: none;
  }
  .top-bar__item {
    padding-inline: 0.5rem;
  }
}
@media (max-width: 23.4375rem) {
  .top-bar__group--right .top-bar__item span {
    display: none;
  }
  .top-bar__group--right .top-bar__item {
    padding-inline: 0.625rem;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.12);
  isolation: isolate;
}
.site-header__main {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  color: #93032e;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.site-header__logo:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-header__logo:hover {
  color: #93032e;
}
.site-header__logo-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: #93032e;
}
.site-header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-header__logo-text span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93032e;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-header__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #93032e;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__search-btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-header__search-btn:hover {
  background-color: #ebe9e3;
  color: #93032e;
}
.site-header__search-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.site-header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #93032e;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease;
}
.site-header__cta:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
@media (min-width: 62rem) {
  .site-header__cta {
    display: inline-flex;
  }
}
.site-header__cta:hover {
  background-color: #6d0222;
  color: #ffffff;
}
.site-header__cta svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  color: #93032e;
}
.site-header__toggle:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
@media (min-width: 62rem) {
  .site-header__toggle {
    display: none;
  }
}
.site-header__toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.primary-nav {
  display: none;
  flex: 1;
  justify-content: center;
}
@media (min-width: 62rem) {
  .primary-nav {
    display: flex;
  }
}
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav__item {
  position: relative;
}
.primary-nav__item--has-mega {
  position: static;
}
.primary-nav__item--has-mega > .primary-nav__link::after, .primary-nav__item--has-dropdown > .primary-nav__link::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.primary-nav__item--open > .primary-nav__link::after, .primary-nav__item:hover > .primary-nav__link::after, .primary-nav__item:focus-within > .primary-nav__link::after {
  transform: rotate(-135deg) translateY(1px);
}
.primary-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  border-radius: 0.625rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.primary-nav__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.primary-nav__link:hover {
  color: #93032e;
}
.primary-nav__link[aria-current=page] {
  color: #93032e;
  font-weight: 600;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 14rem;
  padding: 0.5rem 0;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}
.primary-nav__item--open .dropdown-menu, .primary-nav__item:hover .dropdown-menu, .primary-nav__item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  transition: color 0.2s ease, background-color 0.2s ease, padding-left 0.2s ease;
}
.dropdown-menu__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.dropdown-menu__link::before {
  content: "›";
  color: #93032e;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.dropdown-menu__link:hover {
  color: #93032e;
  background-color: #f7f6f2;
  padding-left: 1.75rem;
}
.dropdown-menu__link:hover::before {
  transform: translateX(2px);
}

@media (max-width: 23.4375rem) {
  .site-header__main {
    gap: 0.5rem;
  }
  .site-header__logo {
    font-size: 1.0625rem;
  }
}
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(0.5rem);
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-top: 3px solid #93032e;
  border-radius: 0 0 0.625rem 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 120;
}
.primary-nav__item--mega-open .mega-menu, .primary-nav__item--has-mega:hover .mega-menu, .primary-nav__item--has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu__grid {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
@media (min-width: 75rem) {
  .mega-menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 87.5rem) {
  .mega-menu__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.mega-menu__column {
  min-width: 0;
}
.mega-menu__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: max(0.9375rem, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93032e;
}
.mega-menu__heading-icon,
.mega-menu__heading img {
  display: none;
}
.mega-menu__heading svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #93032e;
  flex-shrink: 0;
}
.mega-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.mega-menu__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  color: #5c4f51;
  font-size: max(0.9375rem, 15px);
  line-height: 1.45;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-menu__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.mega-menu__link::before {
  content: "›";
  color: #93032e;
  font-weight: 700;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.mega-menu__link:hover {
  color: #93032e;
  padding-left: 0.25rem;
}
.mega-menu__link:hover::before {
  opacity: 1;
  transform: translateX(2px);
}
.mega-menu__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  font-weight: 600;
  color: #93032e;
  font-size: max(0.9375rem, 15px);
  line-height: 1.45;
}
.mega-menu__view-all:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.mega-menu__view-all svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.mega-menu__view-all:hover svg {
  transform: translateX(3px);
}

.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 190;
}
.offcanvas-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(22rem, 90vw);
  max-width: 100%;
  height: 100dvh;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(26, 26, 26, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.offcanvas.is-active {
  transform: translateX(0);
}
.offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #93032e;
  color: #ffffff;
  flex-shrink: 0;
  border-bottom: 2px solid #93032e;
}
.offcanvas__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}
.offcanvas__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  color: #ffffff;
}
.offcanvas__close:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.offcanvas__close:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.offcanvas__close svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.offcanvas__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1rem 0;
}
.offcanvas__cta-wrap {
  padding: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  flex-shrink: 0;
}
.offcanvas__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background-color: #93032e;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease;
}
.offcanvas__cta:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.offcanvas__cta:hover {
  background-color: #6d0222;
  color: #ffffff;
}
.offcanvas__cta svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
}
.mobile-nav__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.mobile-nav__link[aria-current=page] {
  color: #93032e;
  font-weight: 600;
}
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
}
.mobile-nav__toggle:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.mobile-nav__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #93032e;
}
.mobile-nav__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.mobile-nav__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.mobile-nav__panel[data-open=true] {
  grid-template-rows: 1fr;
}
.mobile-nav__panel > div {
  overflow: hidden;
}
.mobile-nav__sublist {
  padding: 0 1.5rem 1rem;
  background-color: #f7f6f2;
}
.mobile-nav__subheading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  font-size: max(0.9375rem, 15px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #93032e;
}
.mobile-nav__subheading .mega-menu__heading-icon,
.mobile-nav__subheading img {
  display: none;
}
.mobile-nav__subheading svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #93032e;
}
.mobile-nav__sublink {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  color: #5c4f51;
  font-size: max(0.9375rem, 15px);
  line-height: 1.45;
  border-left: 2px solid #ebe9e3;
}
.mobile-nav__sublink:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.mobile-nav__sublink:hover {
  color: #93032e;
  border-left-color: #93032e;
}
.mobile-nav__sublink--view-all {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #93032e;
}
.mobile-nav__simple-list {
  padding: 0 1.5rem 1rem;
  background-color: #f7f6f2;
}

body.offcanvas-open {
  overflow: hidden;
}

.banner {
  padding: 2rem 0;
}
.banner__stack {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: stretch;
  gap: 0.625rem;
  height: 32.5rem;
}
.banner__card {
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 7.25rem;
  flex-shrink: 0;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner__card--active {
  width: calc(100% - 21.75rem - 1.875rem);
  flex-shrink: 0;
  cursor: default;
}
.banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
  transition: transform 0.6s ease;
}
.banner__card:hover .banner__bg {
  transform: scale(1.04);
}
.banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.9) 28%, rgba(26, 26, 26, 0.72) 48%, rgba(26, 26, 26, 0.38) 62%, rgba(26, 26, 26, 0.12) 78%, rgba(26, 26, 26, 0) 100%);
  transition: opacity 0.4s ease;
}
.banner__card:not(.banner__card--active) .banner__overlay {
  background: linear-gradient(to right, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.78) 40%, rgba(26, 26, 26, 0.7) 100%);
}
.banner__label {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 5;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.25s ease;
  text-shadow: 0 1px 4px rgba(26, 26, 26, 0.5);
  pointer-events: none;
}
.banner__card--active .banner__label {
  opacity: 0;
}
.banner__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 3.75rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 38.75rem;
  opacity: 0;
  transform: translateX(-1.25rem);
  transition: opacity 0.4s ease 0.28s, transform 0.4s ease 0.28s;
  pointer-events: none;
}
.banner__card--active .banner__content {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.banner__eyebrow {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.banner__headline {
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(26, 26, 26, 0.35);
}
.banner__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(26, 26, 26, 0.3);
  max-width: 27.5rem;
}
.banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}
.banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.8125rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.625rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.banner__btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.banner__btn--primary {
  background-color: #93032e;
  color: #ffffff;
}
.banner__btn--primary:hover {
  background-color: #6d0222;
  color: #ffffff;
}
.banner__btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}
.banner__btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.banner__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background-color: #93032e;
  z-index: 10;
}
.banner__progress--run {
  animation: banner-progress 9s linear forwards;
}

@keyframes banner-progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 61.9375rem) {
  .banner {
    padding: 1rem 0;
  }
  .banner__stack {
    flex-direction: column;
    height: auto;
    gap: 0.5rem;
  }
  .banner__card {
    width: 100% !important;
    height: 4rem;
    flex-shrink: 0;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.625rem;
  }
  .banner__card--active {
    min-height: 26.25rem;
    height: auto;
    width: 100% !important;
    overflow: visible;
  }
  .banner__label {
    writing-mode: horizontal-tb;
    transform: translate(-50%, 50%);
    bottom: 50%;
  }
  .banner__content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }
  .banner__card--active .banner__overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0.82) 38%, rgba(26, 26, 26, 0.45) 62%, rgba(26, 26, 26, 0.1) 82%, rgba(26, 26, 26, 0) 100%);
  }
}
@media (max-width: 35.9375rem) {
  .banner__headline {
    font-size: 1.5rem;
  }
  .banner__content {
    padding: 1.5rem 1rem;
  }
  .banner__desc {
    font-size: 0.9375rem;
  }
  .banner__btn {
    width: 100%;
    justify-content: center;
  }
}
.search-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.search-popup.is-active .search-popup__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.search-popup__panel {
  position: relative;
  width: min(100%, 32rem);
  max-height: min(90dvh, 40rem);
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0.625rem;
  border: 1px solid rgba(147, 3, 46, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 20px 50px rgba(26, 26, 26, 0.22);
  overflow: hidden;
  transform: translateY(-1rem) scale(0.96);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.search-popup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
  padding: 0.875rem 1.125rem;
  background-color: #93032e;
  border-bottom: 2px solid #93032e;
}
.search-popup__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.search-popup__brand svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #93032e;
}
.search-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.search-popup__close:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.search-popup__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.search-popup__close svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.search-popup__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.25rem 1.125rem 1.125rem;
}
.search-popup__body:has(.search-popup__results:not([hidden])) .search-popup__lead,
.search-popup__body:has(.search-popup__results:not([hidden])) .search-popup__trending {
  display: none;
}
.search-popup__lead {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.5;
}
.search-popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.search-popup__field {
  position: relative;
  display: flex;
  align-items: center;
}
.search-popup__field > svg {
  position: absolute;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #93032e;
  pointer-events: none;
}
.search-popup__input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #f7f6f2;
  border: 1.5px solid #ebe9e3;
  border-radius: 0.625rem;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.search-popup__input::placeholder {
  color: #5c4f51;
}
.search-popup__input:focus {
  background-color: #ffffff;
  border-color: #93032e;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.18);
}
.search-popup__input::-webkit-search-cancel-button {
  display: none;
}
.search-popup__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.search-popup__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.search-popup__submit:hover {
  background-color: #6d0222;
  color: #ffffff;
}
.search-popup__submit:active {
  transform: scale(0.99);
}
.search-popup__submit svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.search-popup__results {
  margin-top: 1.125rem;
  max-height: min(42vh, 17.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.15rem;
}
.search-popup__results[hidden] {
  display: none !important;
}
.search-popup__results::-webkit-scrollbar {
  width: 5px;
}
.search-popup__results::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 26, 0.18);
  border-radius: 999px;
}
.search-popup__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: max(0.9375rem, 15px);
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.search-popup__view-all:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.search-popup__view-all:hover {
  background-color: #ffffff;
  border-color: rgba(147, 3, 46, 0.35);
}
.search-popup__trending {
  margin-top: 1.125rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.search-popup__trending-label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-popup__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.search-popup__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.search-popup__chip:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.search-popup__chip:hover {
  color: #93032e;
  background-color: #ffffff;
  border-color: #93032e;
}

body.search-open {
  overflow: hidden;
}

@media (max-width: 35.9375rem) {
  .search-popup {
    padding: 1rem 0.75rem;
  }
  .search-popup__panel {
    width: 100%;
    max-height: min(92dvh, 40rem);
    border-radius: 0.625rem;
  }
  .search-popup__body {
    padding: 1rem;
  }
  .search-popup__results {
    max-height: min(36vh, 14rem);
  }
}
.quote-fab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 240;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.25rem;
  padding: 0.625rem 0.4375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: #ffffff;
  background-color: #93032e;
  border: none;
  border-radius: 0.625rem 0 0 0.625rem;
  box-shadow: -3px 3px 14px rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.quote-fab:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-fab:hover {
  background-color: #6d0222;
  transform: translateY(-50%) translateX(-2px);
}
.quote-fab svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  flex-shrink: 0;
}
.quote-fab__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

body.quote-open .quote-fab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.quote-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.quote-popup.is-active .quote-popup__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.quote-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.58);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.quote-popup__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 36rem);
  max-height: min(90vh, 34rem);
  background-color: #ffffff;
  border-radius: 0.625rem;
  border: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(26, 26, 26, 0.24);
  overflow: hidden;
  transform: translateY(1rem) scale(0.97);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
@media (min-width: 48rem) {
  .quote-popup__panel {
    flex-direction: row;
    width: min(100%, 52rem);
    max-height: min(90vh, 36rem);
  }
}
.quote-popup__promo {
  display: none;
  position: relative;
  flex: 0 0 38%;
  min-height: 100%;
  padding: 1.5rem 1.25rem;
  color: #ffffff;
  background-color: #93032e;
  background-image: linear-gradient(165deg, #93032e 0%, #6d0222 100%);
}
@media (min-width: 48rem) {
  .quote-popup__promo {
    display: flex;
    align-items: center;
  }
}
.quote-popup__promo-inner {
  position: relative;
  z-index: 1;
}
.quote-popup__promo-tag {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}
.quote-popup__promo-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.quote-popup__promo-lead {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.quote-popup__promo-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.quote-popup__promo-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}
.quote-popup__promo-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1rem;
  background-color: #ffffff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.quote-popup__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 1rem 0 0;
  padding: 0.4375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.625rem;
}
.quote-popup__promo-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #ffffff;
}
.quote-popup__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background-color: #ffffff;
}
.quote-popup__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.875rem 1rem 0.625rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  background: linear-gradient(180deg, rgba(247, 246, 242, 0.65) 0%, #ffffff 100%);
}
.quote-popup__title {
  margin: 0;
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.quote-popup__title em {
  font-style: normal;
  color: #93032e;
}
.quote-popup__note {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #5c4f51;
}
.quote-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: -0.125rem;
  border-radius: 50%;
  color: #5c4f51;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.quote-popup__close:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-popup__close:hover {
  background-color: #f7f6f2;
  color: #1a1a1a;
}
.quote-popup__close svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.quote-popup__body {
  flex: 1;
  padding: 0.75rem 1rem 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.quote-popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quote-popup__row {
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 30rem) {
  .quote-popup__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 30rem) {
  .quote-popup__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 30rem) {
  .quote-popup__row--unit {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  }
}
.quote-popup__field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.quote-popup__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #5c4f51;
  line-height: 1.2;
}
.quote-popup__req {
  color: #93032e;
}
.quote-popup__input, .quote-popup__select, .quote-popup__textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: max(0.9375rem, 16px);
  font-family: inherit;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1.5px solid #ebe9e3;
  border-radius: 0.625rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.quote-popup__input::placeholder, .quote-popup__select::placeholder, .quote-popup__textarea::placeholder {
  color: rgba(92, 79, 81, 0.75);
}
.quote-popup__input:focus, .quote-popup__select:focus, .quote-popup__textarea:focus {
  border-color: #93032e;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.12);
  background-color: #ffffff;
}
.quote-popup__select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4f51' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.quote-popup__textarea {
  min-height: 3.75rem;
  resize: vertical;
  line-height: 1.45;
}
.quote-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.125rem;
  padding: 0.6875rem 1.25rem;
  font-size: max(1rem, 16px);
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #1a1a1a;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.quote-popup__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-popup__submit:hover {
  background-color: #93032e;
}
.quote-popup__submit:active {
  transform: scale(0.99);
}
.quote-popup__submit svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

body.quote-open {
  overflow: hidden;
}

@media (max-width: 35.9375rem) {
  .quote-fab {
    right: 0;
    top: 56%;
    transform: translateY(-50%);
    flex-direction: column;
    min-width: 2.25rem;
    padding: 0.625rem 0.4375rem;
    border-radius: 0.625rem 0 0 0.625rem;
    box-shadow: -3px 3px 14px rgba(26, 26, 26, 0.2);
  }
  .quote-fab:hover {
    transform: translateY(-50%) translateX(-2px);
  }
  .quote-fab__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-transform: capitalize;
    letter-spacing: 0.06em;
    font-size: 0.6875rem;
  }
  .quote-popup {
    align-items: flex-end;
    padding: 0;
  }
  .quote-popup__panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 0.625rem 0.625rem 0 0;
  }
  .quote-popup__head {
    padding: 1rem 1rem 0.75rem;
  }
  .quote-popup__body {
    padding: 0.875rem 1rem 1.25rem;
  }
}
.collection {
  padding: 3rem 0;
  background-color: #ffffff;
}
.collection__header {
  text-align: center;
  margin-bottom: 2rem;
}
.collection__title {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.collection__pattern {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.collection__pattern img {
  max-width: 9.375rem;
  height: auto;
}
.collection__slider {
  position: relative;
  padding: 0 2.75rem;
}
.collection__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}
.collection__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  visibility: hidden;
}
.collection__track.is-ready {
  visibility: visible;
}
.collection__slide {
  flex-shrink: 0;
  padding: 0.25rem 0.375rem;
  box-sizing: border-box;
}
.collection__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.collection__card:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.collection__card:hover .collection__img-wrap, .collection__card:focus-visible .collection__img-wrap {
  border-radius: 10%;
  transform: scale(0.95);
}
.collection__card:hover .collection__img, .collection__card:focus-visible .collection__img {
  transform: scale(1.1);
}
.collection__card:hover .collection__card-title, .collection__card:focus-visible .collection__card-title {
  transform: translateY(-3px);
  color: #6d0222;
}
.collection__card:hover .collection__card-title::after, .collection__card:focus-visible .collection__card-title::after {
  width: 1.5rem;
}
.collection__img-wrap {
  position: relative;
  width: min(72%, 8.25rem);
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid #93032e;
  border-radius: 50%;
  background-color: #f7f6f2;
  transition: border-radius 0.4s ease, transform 0.4s ease;
}
.collection__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.collection__img.is-loaded {
  opacity: 1;
}
.collection__card-title {
  display: block;
  width: 100%;
  padding: 0.5rem 0.375rem 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #93032e;
  line-height: 1.35;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, color 0.2s ease;
}
.collection__card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #93032e;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.collection__arrow {
  position: absolute;
  top: calc(50% - 2.75rem);
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #93032e;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.collection__arrow:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.collection__arrow:hover {
  background-color: #6d0222;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}
.collection__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.collection__arrow svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.collection__arrow--prev {
  left: 0;
}
.collection__arrow--next {
  right: 0;
}
.collection__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1.125rem;
  min-height: 0.5rem;
}
.collection__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 0.625rem;
  background-color: #ebe9e3;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}
.collection__dot:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.collection__dot.is-active {
  width: 1.375rem;
  background-color: #93032e;
}

@media (max-width: 47.9375rem) {
  .collection__slider {
    padding: 0 2.375rem;
  }
  .collection__arrow {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 25rem) {
  .collection__slider {
    padding: 0 2rem;
  }
}
.featured {
  padding: 3rem 0;
  background-color: #f7f6f2;
}
.featured__header {
  text-align: center;
  margin-bottom: 2rem;
}
.featured__title {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.featured__pattern {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.featured__pattern img {
  max-width: 9.375rem;
  height: auto;
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.5rem;
}
@media (min-width: 62rem) {
  .featured__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.featured__card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.featured__card:hover {
  border-color: rgba(147, 3, 46, 0.55);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.1);
  transform: translateY(-3px);
}
.featured__card:hover .featured__img {
  transform: scale(1.06);
}
.featured__media {
  display: block;
  text-decoration: none;
  color: inherit;
}
.featured__media:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.featured__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #f7f6f2;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.featured__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.5rem;
  text-align: center;
}
@media (min-width: 62rem) {
  .featured__body {
    padding: 1rem;
  }
}
.featured__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}
@media (min-width: 62rem) {
  .featured__name {
    font-size: 0.9375rem;
    margin: 0 0 1rem;
  }
}
.featured__name a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured__name a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.featured__name a:hover {
  color: #93032e;
}
.featured__customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.25rem;
  padding: 0.45rem 0.625rem;
  font-size: max(1rem, 16px);
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 62rem) {
  .featured__customize {
    min-height: 2.5rem;
    padding: 0.5rem 0.875rem;
  }
}
.featured__customize:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.featured__customize:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}
.featured__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.featured__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  background-color: transparent;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.featured__more:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.featured__more:hover {
  background-color: #93032e;
  color: #ffffff;
}

.why-us {
  padding: 3rem 0;
  background-color: #ffffff;
}
.why-us__layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 62rem) {
  .why-us__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}
.why-us__media {
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
  aspect-ratio: 4/5;
  max-height: 36rem;
  background-color: #f7f6f2;
}
@media (min-width: 62rem) {
  .why-us__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 32rem;
    max-height: none;
  }
}
.why-us__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-us__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-us__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.why-us__features {
  display: grid;
  gap: 2rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 62rem) {
  .why-us__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem clamp(1.25rem, 2.5vw, 2rem);
  }
}
.why-us__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  color: #ffffff;
}
.why-us__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.why-us__icon--royal {
  background-color: #93032e;
}
.why-us__icon--gold {
  background-color: #93032e;
  color: #ffffff;
}
.why-us__icon--deep {
  background-color: #1a1a1a;
}
.why-us__icon--soft {
  background-color: #6d0222;
  color: #ffffff;
}
.why-us__feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}
.why-us__feature-text {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.why-us__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.why-us__cta:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.why-us__cta:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.partner-apart {
  padding: 3rem 0;
  background-color: #ffffff;
}
.partner-apart__header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.partner-apart__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.partner-apart__subtitle {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.partner-apart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 36rem) {
  .partner-apart__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .partner-apart__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.partner-apart__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.partner-apart__item:hover {
  border-color: rgba(147, 3, 46, 0.45);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}
.partner-apart__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  color: #93032e;
}
.partner-apart__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}
.partner-apart__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}
.partner-apart__item-text {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}

.trending {
  padding: 3rem 0;
  background-color: #f7f6f2;
}
.trending__header {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.trending__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93032e;
  margin: 0 0 0.5rem;
}
.trending__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.trending__intro {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.trending__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 0.25rem;
  list-style: none;
}
@media (max-width: 47.9375rem) {
  .trending__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-inline: 0.25rem;
  }
  .trending__tabs::-webkit-scrollbar {
    display: none;
  }
}
.trending__tab {
  flex-shrink: 0;
}
.trending__tab button {
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  background-color: transparent;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.trending__tab button:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__tab button:hover {
  background-color: #93032e;
  color: #ffffff;
}
.trending__tab button[aria-selected=true] {
  background-color: #93032e;
  border-color: #93032e;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.2);
}
.trending__panel {
  display: none;
}
.trending__panel.is-active {
  display: block;
  animation: trending-fade-in 0.35s ease;
}
.trending__slider {
  position: relative;
  padding: 0 2.75rem;
}
.trending__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}
.trending__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  visibility: hidden;
}
.trending__track.is-ready {
  visibility: visible;
}
.trending__slide {
  flex-shrink: 0;
  padding: 0 0.375rem;
  box-sizing: border-box;
}
.trending__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.trending__card:hover {
  border-color: rgba(147, 3, 46, 0.55);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.1);
  transform: translateY(-3px);
}
.trending__card:hover .trending__img {
  transform: scale(1.06);
}
.trending__media {
  display: block;
  text-decoration: none;
  color: inherit;
}
.trending__media:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
  padding: 0.5rem;
  text-align: center;
}
@media (min-width: 62rem) {
  .trending__body {
    gap: 0.5rem;
    padding: 1rem;
  }
}
.trending__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #ebe9e3;
}
.trending__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.trending__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 62rem) {
  .trending__name {
    font-size: 0.9375rem;
  }
}
.trending__name a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trending__name a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__name a:hover {
  color: #93032e;
}
.trending__customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.25rem;
  padding: 0.45rem 0.625rem;
  font-size: max(1rem, 16px);
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (min-width: 62rem) {
  .trending__customize {
    min-height: 2.5rem;
    padding: 0.5rem 0.875rem;
  }
}
.trending__customize:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__customize:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}
.trending__arrow {
  position: absolute;
  top: calc(50% - 1.75rem);
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #93032e;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  cursor: pointer;
}
.trending__arrow:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__arrow:hover:not(:disabled) {
  background-color: #6d0222;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}
.trending__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: translateY(-50%);
}
.trending__arrow svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
.trending__arrow--prev {
  left: 0;
}
.trending__arrow--next {
  right: 0;
}
.trending__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.trending__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  background-color: transparent;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.trending__more:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.trending__more:hover {
  background-color: #93032e;
  color: #ffffff;
}

@keyframes trending-fade-in {
  from {
    opacity: 0;
    transform: translateY(0.375rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 47.9375rem) {
  .trending__slider {
    padding: 0 2.375rem;
  }
  .trending__arrow {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 25rem) {
  .trending__slider {
    padding: 0 2rem;
  }
}
.quote {
  padding: 3rem 0;
  background-color: #f7f6f2;
}
.quote__header {
  text-align: center;
  margin-bottom: 2rem;
}
.quote__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.quote__card {
  display: grid;
  background-color: #ffffff;
  border-radius: 0.625rem;
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.1);
  overflow: hidden;
}
@media (min-width: 62rem) {
  .quote__card {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    min-height: 36rem;
  }
}
.quote__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background-color: #93032e;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 62rem) {
  .quote__panel {
    padding: clamp(2rem, 3vw, 2.75rem);
    border-bottom: none;
  }
}
.quote__decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.quote__decor--1 {
  width: 8rem;
  height: 8rem;
  right: -2rem;
  bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
}
.quote__decor--2 {
  width: 5.5rem;
  height: 5.5rem;
  right: 3.5rem;
  bottom: -1.5rem;
  background-color: rgba(26, 26, 26, 0.4);
}
.quote__decor--3 {
  width: 3.25rem;
  height: 3.25rem;
  right: 1.25rem;
  bottom: 5.5rem;
  background-color: rgba(255, 255, 255, 0.18);
}
.quote__panel-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.quote__panel-lead {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.quote__steps {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  flex: 1;
}
.quote__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.quote__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #93032e;
  background-color: #ffffff;
}
.quote__step-body {
  flex: 1;
  min-width: 0;
  padding-top: 0.125rem;
}
.quote__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0 0 0.375rem;
}
.quote__step-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}
.quote__support {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.quote__support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #93032e;
  background-color: #ffffff;
}
.quote__support-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.quote__support-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.quote__support-label {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.quote__support-phone {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease;
}
.quote__support-phone:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote__support-phone:hover {
  color: #ffffff;
}
.quote__payment {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
}
.quote__payment img {
  display: block;
  max-width: 100%;
  width: min(100%, 20rem);
  height: auto;
  border-radius: 0.625rem;
}
.quote__form-wrap {
  padding: 2rem 1.5rem;
}
@media (min-width: 62rem) {
  .quote__form-wrap {
    padding: clamp(2rem, 3vw, 2.75rem);
  }
}
.quote__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}
.quote__grid {
  display: grid;
  gap: 1rem 1rem;
}
@media (min-width: 30rem) {
  .quote__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 36rem) {
  .quote__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.quote__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.quote__label {
  font-size: 1rem;
  font-weight: 500;
  color: #5c4f51;
  line-height: 1.35;
}
.quote__required {
  color: #93032e;
}
.quote__input, .quote__select, .quote__textarea {
  width: 100%;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.quote__input::placeholder, .quote__select::placeholder, .quote__textarea::placeholder {
  color: rgba(92, 79, 81, 0.85);
}
.quote__input:focus, .quote__select:focus, .quote__textarea:focus {
  outline: none;
  border-bottom-color: #93032e;
  border-bottom-width: 2px;
  padding-bottom: calc(0.5rem - 1px);
}
.quote__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4f51' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
.quote__textarea {
  min-height: 5rem;
  resize: vertical;
}
.quote__options {
  border: none;
  margin: 0;
  padding: 0;
}
.quote__options-title {
  font-size: 1rem;
  font-weight: 500;
  color: #5c4f51;
  margin: 0 0 1rem;
}
.quote__options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.quote__option {
  position: relative;
}
.quote__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.quote__option label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
}
.quote__option label::before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid rgba(26, 26, 26, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.quote__option input:checked + label::before {
  border-color: #93032e;
  background-color: #93032e;
  box-shadow: inset 0 0 0 3px #ffffff;
}
.quote__option input:focus-visible + label::before {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote__file {
  position: relative;
}
.quote__file input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quote__file-trigger {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #5c4f51;
  text-align: left;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.quote__file-trigger:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote__file-trigger:hover {
  border-bottom-color: #93032e;
}
.quote__file-name {
  display: block;
  margin-top: 0.375rem;
  font-size: 1rem;
  color: #5c4f51;
  min-height: 1.25rem;
}
.quote__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.5rem;
}
.quote__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8125rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #93032e;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.quote__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote__submit:hover {
  background-color: #6d0222;
}

.quote-page {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 3rem;
  background-color: #f7f6f2;
}
.quote-page__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: 0.875rem;
  color: #5c4f51;
}
.quote-page__crumb a {
  color: #93032e;
  text-decoration: none;
}
.quote-page__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-page__crumb a:hover {
  text-decoration: underline;
}
.quote-page__crumb [aria-current=page] {
  color: #1a1a1a;
}
.quote-page__shell {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
@media (min-width: 62rem) {
  .quote-page__shell {
    grid-template-columns: minmax(0, 1fr) 20rem;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
@media (min-width: 75rem) {
  .quote-page__shell {
    grid-template-columns: minmax(0, 1fr) 22.5rem;
  }
}
.quote-page__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.quote-page__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}
.quote-page__lead {
  margin: 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: #5c4f51;
}
.quote-page__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.05);
  overflow: hidden;
}
.quote-page__section {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.quote-page__section:last-of-type {
  border-bottom: none;
}
.quote-page__section-title {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #93032e;
}
.quote-page__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .quote-page__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }
}
@media (min-width: 36rem) {
  .quote-page__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
.quote-page__row + .quote-page__row, .quote-page__row + .quote-page__field, .quote-page__dims + .quote-page__row {
  margin-top: 1rem;
}
.quote-page__dims {
  margin-top: 1rem;
}
.quote-page__dims-label {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}
.quote-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quote-page__field + .quote-page__field {
  margin-top: 1rem;
}
.quote-page__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
}
.quote-page__req {
  color: #93032e;
}
.quote-page__input, .quote-page__select, .quote-page__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.quote-page__input::placeholder, .quote-page__select::placeholder, .quote-page__textarea::placeholder {
  color: rgba(92, 79, 81, 0.75);
}
.quote-page__input:hover, .quote-page__select:hover, .quote-page__textarea:hover {
  border-color: rgba(147, 3, 46, 0.25);
}
.quote-page__input:focus, .quote-page__select:focus, .quote-page__textarea:focus {
  outline: none;
  border-color: #93032e;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.1);
}
.quote-page__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4f51' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}
.quote-page__textarea {
  min-height: 6.5rem;
  resize: vertical;
  line-height: 1.55;
}
.quote-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: none;
}
.quote-page__chip {
  cursor: pointer;
}
.quote-page__chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.quote-page__chip span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5c4f51;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.quote-page__chip input:checked + span {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
}
.quote-page__chip input:focus-visible + span {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-page__chip:hover span {
  border-color: rgba(147, 3, 46, 0.35);
}
.quote-page__upload {
  position: relative;
}
.quote-page__file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quote-page__drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #f7f6f2;
  border: 2px dashed rgba(26, 26, 26, 0.14);
  border-radius: 0.625rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.quote-page__drop:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-page__drop:hover {
  border-color: rgba(147, 3, 46, 0.4);
  background-color: rgba(147, 3, 46, 0.03);
}
.quote-page__drop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.25rem;
  color: #93032e;
  background-color: rgba(147, 3, 46, 0.08);
  border-radius: 50%;
}
.quote-page__drop-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.quote-page__drop-text {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.4;
}
.quote-page__drop-text strong {
  color: #93032e;
  font-weight: 600;
}
.quote-page__drop-hint {
  font-size: 0.8125rem;
  color: rgba(92, 79, 81, 0.85);
}
.quote-page__drop-name {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  min-height: 1.25rem;
}
.quote-page__submit-wrap {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: rgba(247, 246, 242, 0.6);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.quote-page__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #93032e;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.quote-page__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-page__submit:hover {
  background-color: #6d0222;
}
.quote-page__submit:active {
  transform: scale(0.99);
}
@media (min-width: 30rem) {
  .quote-page__submit {
    width: auto;
    min-width: 14rem;
  }
}
.quote-page__fine {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: #5c4f51;
  line-height: 1.5;
}
.quote-page__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 62rem) {
  .quote-page__aside {
    position: sticky;
    top: 8.5rem;
  }
}
.quote-page__card {
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 1px 4px rgba(26, 26, 26, 0.04);
}
.quote-page__card--accent {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #f7f6f2;
}
.quote-page__card--muted {
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
}
.quote-page__card--muted img {
  display: block;
  max-width: 100%;
  height: auto;
}
.quote-page__card-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.55);
}
.quote-page__card-stat {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}
.quote-page__card-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(247, 246, 242, 0.6);
  line-height: 1.45;
}
.quote-page__card-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}
.quote-page__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}
.quote-page__timeline li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.quote-page__timeline strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.quote-page__timeline p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #5c4f51;
}
.quote-page__timeline-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #93032e;
  border-radius: 50%;
}
.quote-page__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.quote-page__contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.quote-page__contact a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.quote-page__contact a svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: #93032e;
}
.quote-page__contact a:hover {
  color: #93032e;
}

.contact-page {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 3rem;
  background-color: #ffffff;
}
.contact-page__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.contact-page__crumb a {
  color: #93032e;
  text-decoration: none;
}
.contact-page__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.contact-page__crumb a:hover {
  text-decoration: underline;
}
.contact-page__crumb [aria-current=page] {
  color: #1a1a1a;
}
.contact-page__hero {
  max-width: 34rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}
.contact-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}
.contact-page__lead {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  color: #5c4f51;
}
.contact-page__tiles {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 36rem) {
  .contact-page__tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.contact-page__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: clamp(1.35rem, 3vw, 1.75rem) 1.5rem;
  text-align: center;
  text-decoration: none;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
.contact-page__tile:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.contact-page__tile:hover {
  background-color: #ffffff;
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}
.contact-page__tile:hover .contact-page__tile-icon {
  background-color: #93032e;
  color: #ffffff;
}
.contact-page__tile:hover .contact-page__tile-value {
  color: #93032e;
}
.contact-page__tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.35rem;
  color: #93032e;
  background-color: rgba(147, 3, 46, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contact-page__tile-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.contact-page__tile-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c4f51;
}
.contact-page__tile-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  transition: color 0.2s ease;
  word-break: break-word;
}
.contact-page__split {
  display: grid;
  gap: 0;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.07);
}
@media (min-width: 62rem) {
  .contact-page__split {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  }
}
.contact-page__info {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background-color: #1a1a1a;
  color: #f7f6f2;
}
.contact-page__info-title {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}
.contact-page__hours {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}
.contact-page__hours div {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(247, 246, 242, 0.12);
}
.contact-page__hours div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-page__hours dt {
  margin: 0 0 0.2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.5);
}
.contact-page__hours dd {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-page__info-text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(247, 246, 242, 0.7);
}
.contact-page__quick {
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid rgba(247, 246, 242, 0.12);
}
.contact-page__quick a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 246, 242, 0.85);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.contact-page__quick a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.contact-page__quick a::before {
  content: "→";
  color: #93032e;
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}
.contact-page__quick a:hover {
  color: #ffffff;
  gap: 0.5rem;
}
.contact-page__quick a:hover::before {
  transform: translateX(2px);
}
.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background-color: #ffffff;
}
.contact-page__form-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
}
.contact-page__form-lead {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #5c4f51;
}
.contact-page__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .contact-page__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-page__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c4f51;
  letter-spacing: 0.02em;
}
.contact-page__req {
  color: #93032e;
}
.contact-page__input, .contact-page__select, .contact-page__textarea {
  width: 100%;
  padding: 0.55rem 0;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.18);
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.contact-page__input::placeholder, .contact-page__select::placeholder, .contact-page__textarea::placeholder {
  color: rgba(92, 79, 81, 0.7);
}
.contact-page__input:focus, .contact-page__select:focus, .contact-page__textarea:focus {
  outline: none;
  border-bottom-color: #93032e;
  border-bottom-width: 2px;
  padding-bottom: calc(0.55rem - 1px);
}
.contact-page__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4f51' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
.contact-page__textarea {
  min-height: 5.5rem;
  resize: vertical;
  line-height: 1.55;
  padding-top: 0.35rem;
}
.contact-page__submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #93032e;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-page__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.contact-page__submit:hover {
  background-color: #6d0222;
}
.contact-page__submit:active {
  transform: scale(0.98);
}
@media (max-width: 30rem) {
  .contact-page__submit {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }
}
.contact-page__map {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.contact-page__map-head {
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-page__map-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1a1a1a;
}
.contact-page__map-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #5c4f51;
}
.contact-page__map-frame {
  position: relative;
  aspect-ratio: 21/9;
  min-height: 14rem;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.06);
  background-color: #ebe9e3;
}
@media (max-width: 36rem) {
  .contact-page__map-frame {
    aspect-ratio: 4/3;
  }
}
.contact-page__map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hep-form-feedback {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.hep-form-feedback--error {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #7a1f1a;
}
.hep-form-feedback--success {
  background: #edf7ed;
  border: 1px solid #b7dfb9;
  color: #1e4620;
}

.thank-you-page {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
}
.thank-you-page__card {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}
.thank-you-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(147, 3, 46, 0.08);
  color: #93032e;
}
.thank-you-page__icon svg {
  width: 36px;
  height: 36px;
}
.thank-you-page__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
}
.thank-you-page__lead {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #3d3537;
}
.thank-you-page__note {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5c4f51;
}
.thank-you-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.thank-you-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.thank-you-page__btn--primary {
  background: #93032e;
  color: #fff;
}
.thank-you-page__btn--primary:hover {
  background: #7a0226;
  color: #fff;
}
.thank-you-page__btn--ghost {
  border: 1px solid #d4cec6;
  color: #1a1a1a;
  background: #fff;
}
.thank-you-page__btn--ghost:hover {
  border-color: #93032e;
  color: #93032e;
}
.thank-you-page__help {
  padding-top: 1.5rem;
  border-top: 1px solid #eee8e0;
}
.thank-you-page__help p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.thank-you-page__help ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.thank-you-page__help a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
}
.thank-you-page__help a:hover {
  text-decoration: underline;
}

[data-hep-submit][aria-busy=true] {
  opacity: 0.75;
  cursor: wait;
}

.not-found-page {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 55%);
}
.not-found-page__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0;
  text-align: center;
}
.not-found-page__code {
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(147, 3, 46, 0.07);
  pointer-events: none;
  user-select: none;
}
.not-found-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(147, 3, 46, 0.08);
  color: #93032e;
}
.not-found-page__icon svg {
  width: 34px;
  height: 34px;
}
.not-found-page__title {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: #1a1a1a;
}
.not-found-page__lead {
  position: relative;
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #5c4f51;
}
.not-found-page__chips {
  margin-top: 1.5rem;
  text-align: center;
}
.not-found-page__chips-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c4f51;
}
.not-found-page__chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.not-found-page__chip {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border: 1px solid #e8e4de;
  border-radius: 999px;
  background: #faf9f7;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.not-found-page__chip:hover {
  border-color: #93032e;
  color: #93032e;
  background: #fff;
}
.not-found-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.not-found-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.not-found-page__btn--primary {
  background: #93032e;
  color: #fff;
}
.not-found-page__btn--primary:hover {
  background: #7a0226;
  color: #fff;
}
.not-found-page__btn--ghost {
  border: 1px solid #d4cec6;
  color: #1a1a1a;
  background: #fff;
}
.not-found-page__btn--ghost:hover {
  border-color: #93032e;
  color: #93032e;
}
.not-found-page__help {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  color: #5c4f51;
}
.not-found-page__help a {
  color: #93032e;
  font-weight: 600;
  text-decoration: none;
}
.not-found-page__help a:hover {
  text-decoration: underline;
}
.not-found-page__help span {
  margin: 0 0.35rem;
}

.site-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.site-search-form__field {
  position: relative;
  flex: 1 1 220px;
}
.site-search-form__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.125rem;
  height: 1.125rem;
  color: #93032e;
  transform: translateY(-50%);
  pointer-events: none;
}
.site-search-form__input {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border: 1px solid #e8e4de;
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  color: #1a1a1a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-search-form__input::placeholder {
  color: #8a7d7f;
}
.site-search-form__input:focus {
  outline: none;
  border-color: #93032e;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.12);
}
.site-search-form__submit {
  min-height: 52px;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 8px;
  background: #93032e;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}
.site-search-form__submit:hover {
  background: #7a0226;
}
.site-search-form--not-found {
  position: relative;
  text-align: left;
}
.site-search-form--page {
  max-width: 720px;
}

.search-page {
  padding: 0 0 clamp(3rem, 8vw, 5rem);
}
.search-page__masthead {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
  background: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
  border-bottom: 1px solid #eee8e0;
}
.search-page__masthead-inner {
  max-width: 900px;
}
.search-page__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.search-page__crumb a {
  color: #5c4f51;
  text-decoration: none;
}
.search-page__crumb a:hover {
  color: #93032e;
}
.search-page__crumb [aria-current=page] {
  color: #1a1a1a;
}
.search-page__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93032e;
}
.search-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
}
.search-page__deck {
  margin: 0 0 1.5rem;
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #5c4f51;
}
.search-page__empty {
  max-width: 640px;
  margin: 2.5rem auto 0;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 12px;
}
.search-page__empty h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: #1a1a1a;
}
.search-page__empty p {
  margin: 0;
  color: #5c4f51;
  line-height: 1.6;
}
.search-page__empty--no-results {
  padding: 2.5rem 2rem;
}
.search-page__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(147, 3, 46, 0.08);
  color: #93032e;
}
.search-page__empty-icon svg {
  width: 30px;
  height: 30px;
}
.search-page__chips {
  margin-top: 1.5rem;
  text-align: left;
}
.search-page__chips-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c4f51;
}
.search-page__chips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.search-page__chip {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border: 1px solid #e8e4de;
  border-radius: 999px;
  background: #faf9f7;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.search-page__chip:hover {
  border-color: #93032e;
  color: #93032e;
}
.search-page__cta {
  display: inline-flex;
  margin-top: 1.5rem;
  min-height: 48px;
  align-items: center;
  padding: 0.75rem 1.35rem;
  border-radius: 6px;
  background: #93032e;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.search-page__cta:hover {
  background: #7a0226;
  color: #fff;
}
.search-page__results {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.search-page__group-title {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(147, 3, 46, 0.15);
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}
.search-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-page__card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  height: 100%;
  padding: 0.85rem;
  border: 1px solid #e8e4de;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-page__card:hover {
  border-color: #93032e;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}
.search-page__card-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: #faf9f7;
}
.search-page__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.search-page__card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1a1a1a;
}
.search-page__card-meta {
  font-size: 0.8125rem;
  color: #93032e;
  font-weight: 600;
}
.search-page__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-page__list--simple {
  gap: 0.5rem;
}
.search-page__row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid #e8e4de;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.search-page__row:hover {
  border-color: #93032e;
}
.search-page__row-image {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: #faf9f7;
}
.search-page__row-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.search-page__row-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
}
.search-page__row-meta {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #5c4f51;
}
.search-page__simple-link {
  display: inline-flex;
  padding: 0.55rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
}
.search-page__simple-link:hover {
  text-decoration: underline;
}

.about-page {
  background-color: #f7f6f2;
}
.about-page__split {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.about-page__split--white {
  background-color: #ffffff;
}
.about-page__split--cream {
  background-color: #f7f6f2;
}
.about-page__split--ink {
  background-color: #1a1a1a;
  color: #ffffff;
}
.about-page__split--ink .about-page__eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.about-page__split--ink .about-page__split-title {
  color: #ffffff;
}
.about-page__split--ink .about-page__split-text {
  color: rgba(255, 255, 255, 0.8);
}
.about-page__split-grid {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: grid;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (min-width: 62rem) {
  .about-page__split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}
@media (min-width: 62rem) {
  .about-page__split-grid--reverse .about-page__split-media {
    order: 2;
  }
  .about-page__split-grid--reverse .about-page__split-content {
    order: 1;
  }
}
.about-page__split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-page__split-media {
  min-width: 0;
}
.about-page__split-media figure {
  margin: 0;
  border-radius: 0.625rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background-color: #ebe9e3;
  box-shadow: 0 14px 40px rgba(26, 26, 26, 0.08);
}
.about-page__split-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-page__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #5c4f51;
}
.about-page__crumb a {
  color: #5c4f51;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-page__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.about-page__crumb a:hover {
  color: #93032e;
}
.about-page__crumb [aria-current=page] {
  color: #1a1a1a;
}
.about-page__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93032e;
}
.about-page__split-title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.about-page__split-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #5c4f51;
}
.about-page__split-text + .about-page__split-text {
  margin-top: 1rem;
}
.about-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-size: max(1rem, 16px);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.about-page__btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.about-page__btn--fill {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
}
.about-page__btn--fill:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}
.about-page__btn--line {
  color: #93032e;
  background-color: transparent;
  border-color: #93032e;
}
.about-page__btn--line:hover {
  background-color: #93032e;
  color: #ffffff;
}
.about-page__btn--light {
  color: #93032e;
  background-color: #ffffff;
  border-color: #ffffff;
}
.about-page__btn--light:hover {
  background-color: #f7f6f2;
  border-color: #f7f6f2;
}
.about-page__btn--light-line {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}
.about-page__btn--light-line:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.about-page__hero {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  background-color: #ffffff;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.about-page__hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}
.about-page__hero-lead {
  margin: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: #5c4f51;
  max-width: 34rem;
}
.about-page__mv .about-page__split-grid {
  align-items: stretch;
}
.about-page__mv-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
@media (min-width: 62rem) {
  .about-page__mv-block {
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }
}
.about-page__mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  color: #93032e;
  background-color: rgba(147, 3, 46, 0.1);
  border-radius: 0.625rem;
}
.about-page__mv-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}
.about-page__mv-tag {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93032e;
}
.about-page__mv-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.about-page__mv-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #5c4f51;
}
.about-page__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.about-page__metrics li {
  padding: 1rem;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  text-align: center;
}
.about-page__metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #93032e;
  line-height: 1.1;
}
.about-page__metrics span {
  font-size: 0.75rem;
  color: #5c4f51;
  line-height: 1.35;
}
.about-page__features {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about-page__feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.about-page__feature:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.about-page__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: #ffffff;
  background-color: #93032e;
}
.about-page__feature-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.about-page__feature-title {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
}
.about-page__feature-text {
  margin: 0;
  font-size: 0.875rem;
  color: #5c4f51;
  line-height: 1.5;
}
.about-page__steps {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: about-step;
}
.about-page__step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
  counter-increment: about-step;
}
.about-page__step::before {
  content: counter(about-step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #93032e;
  background-color: rgba(147, 3, 46, 0.1);
  border-radius: 50%;
}
.about-page__step h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a1a1a;
}
.about-page__step p {
  margin: 0;
  font-size: 0.875rem;
  color: #5c4f51;
  line-height: 1.5;
}
.about-page__cta-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  background-color: #93032e;
  border-radius: 0.625rem;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.18);
}
.about-page__cta-card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
}
.about-page__cta-card p {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.about-page__cta-card .about-page__actions {
  margin-top: 0;
}
.about-page__checks {
  display: grid;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about-page__checks li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.875rem;
  color: #5c4f51;
  line-height: 1.5;
}
.about-page__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #93032e;
}

.description {
  padding: 3rem 0;
  background-color: #ffffff;
}
.description__layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 62rem) {
  .description__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}
.description__box {
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
.description__media {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
  background-color: #f7f6f2;
  min-height: 14rem;
}
@media (min-width: 62rem) {
  .description__media {
    min-height: 100%;
  }
}
.description__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.description__header {
  text-align: center;
  padding: 1rem 1.5rem;
  background-color: #93032e;
}
.description__title {
  color: #ffffff;
  font-size: clamp(1.375rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.description__body {
  max-height: 24rem;
  padding: clamp(1.25rem, 2.5vw, 1.875rem);
  overflow-y: auto;
  background-color: #f7f6f2;
  color: #5c4f51;
  line-height: 1.6;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 26, 0.25) transparent;
}
.description__body::-webkit-scrollbar {
  width: 0.375rem;
}
.description__body::-webkit-scrollbar-thumb {
  background-color: rgba(26, 26, 26, 0.25);
  border-radius: 0.625rem;
}
.description__body::-webkit-scrollbar-track {
  background-color: transparent;
}
@media (min-width: 62rem) {
  .description__body {
    max-height: 37.5rem;
  }
}
.description__body h2 {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 1.5rem 0 1rem;
}
.description__body h2:first-child {
  margin-top: 0;
}
.description__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 1rem 0 0.5rem;
}
.description__body p {
  margin: 0 0 1rem;
  color: #5c4f51;
}
.description__body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.description__body ul li {
  margin-bottom: 0.5rem;
  color: #5c4f51;
}
.description__body ul li:last-child {
  margin-bottom: 0;
}
.description__body a {
  color: #93032e;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease;
}
.description__body a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.description__body a:hover {
  color: #6d0222;
}
.description__body strong {
  color: #1a1a1a;
  font-weight: 600;
}
.description--archive .description__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 62rem) {
  .description--archive .description__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
  }
}
.description--archive .description__main {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
@media (min-width: 62rem) {
  .description--archive .description__main {
    grid-column: span 3;
  }
}
.description--archive .description__header {
  flex-shrink: 0;
  text-align: left;
}
.description--archive .description__body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  max-height: 22rem;
}
@media (min-width: 62rem) {
  .description--archive .description__body {
    max-height: none;
  }
}
.description--archive .description__process {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
@media (min-width: 62rem) {
  .description--archive .description__process {
    grid-column: span 3;
  }
}
.description--archive .description__process-title {
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.description--archive .description__process-lead {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.description--archive .description__process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  min-height: 0;
}
.description--archive .description__process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(147, 3, 46, 0.1);
  border-radius: 0.625rem;
}
.description--archive .description__process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #93032e;
}
.description--archive .description__process-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.description--archive .description__process-step:nth-child(even) .description__process-icon {
  background-color: #1a1a1a;
}
.description--archive .description__process-content {
  min-width: 0;
}
.description--archive .description__process-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 0.25rem;
}
.description--archive .description__process-step-text {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.description--archive .description__widgets {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.description--archive .description__help {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(147, 3, 46, 0.12);
  border-radius: 0.625rem;
}
.description--archive .description__help-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #93032e;
}
.description--archive .description__help-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.description--archive .description__help-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.description--archive .description__help-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}
.description--archive .description__help-link {
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.description--archive .description__help-link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.description--archive .description__help-link:hover {
  color: #6d0222;
}
.description--archive .description__help-link--muted {
  font-weight: 500;
  color: #5c4f51;
}
.description--archive .description__help-link--muted:hover {
  color: #1a1a1a;
}
.description--archive .description__payment {
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(147, 3, 46, 0.12);
  border-radius: 0.625rem;
  text-align: center;
}
.description--archive .description__payment-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.description--archive .description__payment img {
  display: block;
  width: min(100%, 17.5rem);
  height: auto;
  margin-inline: auto;
}

@keyframes trusted-brands-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.trusted-brands {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background-color: #ffffff;
  overflow: hidden;
}
.trusted-brands__header {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.trusted-brands__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93032e;
}
.trusted-brands__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.trusted-brands__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.trusted-brands__track {
  display: flex;
  width: max-content;
  animation: trusted-brands-marquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .trusted-brands__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
    animation: none;
    gap: 1.5rem;
  }
}
.trusted-brands__logos {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  list-style: none;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .trusted-brands__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding: 0;
  }
}
.trusted-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 5.5rem;
  padding: 0.25rem 0;
}
.trusted-brands__logo {
  display: block;
  width: auto;
  max-width: clamp(5.5rem, 12vw, 9rem);
  height: auto;
  max-height: clamp(2rem, 4vw, 2.75rem);
  object-fit: contain;
}
.trusted-brands__logo--tall {
  max-height: clamp(2.25rem, 4.5vw, 3rem);
  max-width: clamp(4rem, 8vw, 5rem);
}
.trusted-brands__logo--wide {
  max-width: clamp(6.5rem, 14vw, 10rem);
}

.reviews {
  padding: 3rem 0;
  background-color: #f7f6f2;
}
.reviews__header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.reviews__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93032e;
  margin: 0 0 0.5rem;
}
.reviews__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.reviews__intro {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.reviews__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
  background-color: #1a1a1a;
  border-radius: 0.625rem;
}
.reviews__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  min-width: 7rem;
}
.reviews__score {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.reviews__stars {
  display: flex;
  gap: 0.2rem;
  color: #93032e;
}
.reviews__stars svg {
  width: 1.125rem;
  height: 1.125rem;
}
.reviews__stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.3;
}
.reviews__stat-value {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}
.reviews__stat-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.18);
}
@media (min-width: 62rem) {
  .reviews__stat-divider {
    display: block;
  }
}
.reviews__slider {
  position: relative;
  padding: 0 2.75rem;
  overflow: hidden;
}
.reviews .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 15.5rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.reviews__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  border-radius: 0.625rem 0.625rem 0 0;
  background-color: #93032e;
}
.reviews__quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  color: rgba(147, 3, 46, 0.12);
}
.reviews__quote svg {
  width: 100%;
  height: 100%;
}
.reviews__card-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #93032e;
}
.reviews__card-stars svg {
  width: 1rem;
  height: 1rem;
}
.reviews__text {
  flex: 1;
  font-size: 1rem;
  font-style: normal;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.reviews__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.reviews__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: #93032e;
}
.reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}
.reviews__name {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.reviews__role {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.35;
}
.reviews__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #93032e;
}
.reviews__verified svg {
  width: 0.875rem;
  height: 0.875rem;
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}
.reviews__arrow:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.reviews__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}
.reviews__arrow:hover:not(:disabled) {
  background-color: #93032e;
  border-color: #93032e;
  color: #ffffff;
}
.reviews__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.reviews__arrow--prev {
  left: 0;
}
.reviews__arrow--next {
  right: 0;
}
.reviews__pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  width: 100%;
}
.reviews__dot {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  padding: 0;
  border: none;
  border-radius: 50%;
  opacity: 1;
  background-color: rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.reviews__dot:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.reviews__dot.is-active {
  background-color: #93032e;
  transform: scale(1.2);
}
.reviews__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 47.9375rem) {
  .reviews__slider {
    padding: 0 2.375rem;
  }
  .reviews__arrow {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 25rem) {
  .reviews__slider {
    padding: 0 2rem;
  }
}
.faq {
  padding: 3rem 0;
  background-color: #ffffff;
}
.faq__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 62rem) {
  .faq__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}
.faq__aside {
  position: relative;
}
@media (min-width: 62rem) {
  .faq__aside {
    position: sticky;
    top: 8.75rem;
  }
}
.faq__aside-card {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background-color: #1a1a1a;
  border-radius: 0.625rem;
  color: #ffffff;
  overflow: hidden;
}
.faq__aside-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.faq__aside-card::after {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  left: -1.5rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.faq__aside-accent {
  display: none;
}
@media (min-width: 62rem) {
  .faq__aside-accent {
    display: block;
    position: absolute;
    inset: 0.75rem -0.75rem -0.75rem 0.75rem;
    z-index: 0;
    border-radius: 0.625rem;
    background-color: #93032e;
  }
}
.faq__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.5rem;
}
.faq__title {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.faq__lead {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.faq__perks {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.faq__perk {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}
.faq__perk svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  color: #93032e;
}
.faq__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.faq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  background-color: #ffffff;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faq__cta:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.faq__cta:hover {
  background-color: #f7f6f2;
}
.faq__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.faq__phone:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.faq__phone svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #93032e;
}
.faq__phone:hover {
  color: rgba(255, 255, 255, 0.85);
}
.faq__list {
  display: grid;
  gap: 1rem;
}
.faq__question {
  margin: 0;
}
.faq__item {
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item.is-open {
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.07);
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background-color: #93032e;
  color: #ffffff;
}
.faq__item.is-open .faq__trigger {
  color: #93032e;
}
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq__trigger:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.faq__q-text {
  flex: 1;
  min-width: 0;
  line-height: 1.4;
}
.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #93032e;
  background-color: #ebe9e3;
  transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq__icon svg {
  width: 1rem;
  height: 1rem;
}
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__item.is-open .faq__panel {
  grid-template-rows: 1fr;
}
.faq__panel-inner {
  overflow: hidden;
}
.faq__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}
.faq__answer p {
  margin: 0;
}
.faq__answer p + p {
  margin-top: 0.5rem;
}
.faq__answer a {
  color: #93032e;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.faq__answer a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.faq__answer a:hover {
  color: #6d0222;
}

.cta-band {
  padding: 3rem 0;
  background-color: #f7f6f2;
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background-color: #1a1a1a;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media (min-width: 62rem) {
  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.35rem;
  height: 100%;
  background-color: #93032e;
}
.cta-band__inner::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-band__copy {
  position: relative;
  z-index: 1;
  max-width: 32rem;
}
.cta-band__title {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.cta-band__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}
.cta-band__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 30rem) {
  .cta-band__actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
}
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta-band__btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.cta-band__btn--quote {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
}
.cta-band__btn--quote:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}
.cta-band__btn--call {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-band__btn--call:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}
.cta-band__btn--call svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}
.cta-band__call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  line-height: 1.2;
}
.cta-band__call-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.cta-band__call-number {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.blog {
  padding: 3rem 0;
  background-color: #ffffff;
}
.blog__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.blog__title {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog__pattern {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}
.blog__pattern img {
  max-width: 9.375rem;
  height: auto;
}
.blog__subtitle {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}
.blog__slider {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(2.5rem, 5vw, 3.25rem);
}
@media (min-width: 62rem) {
  .blog__slider {
    padding-inline: 0;
    overflow: visible;
  }
}
.blog__slider .swiper-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
}
@media (min-width: 62rem) {
  .blog__slider .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100% !important;
    transform: none !important;
  }
  .blog__slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}
.blog__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #93032e;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  cursor: pointer;
}
.blog__arrow:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.blog__arrow:hover:not(:disabled) {
  background-color: #6d0222;
  transform: translateY(-50%) scale(1.06);
}
.blog__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.blog__arrow svg {
  width: 0.9375rem;
  height: 0.9375rem;
}
.blog__arrow--prev {
  left: 0;
}
.blog__arrow--next {
  right: 0;
}
@media (min-width: 62rem) {
  .blog__arrow {
    display: none;
  }
}
.blog__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 62rem) {
  .blog__pagination {
    display: none;
  }
}
.blog__dot {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: rgba(147, 3, 46, 0.25);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.blog__dot.is-active {
  background-color: #93032e;
  transform: scale(1.15);
}
.blog__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.blog__card:hover {
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 14px 36px rgba(26, 26, 26, 0.1);
  transform: translateY(-4px);
}
.blog__card:hover .blog__img {
  transform: scale(1.05);
}
.blog__card:hover .blog__read-more {
  color: #6d0222;
}
.blog__card:hover .blog__read-more svg {
  transform: translateX(3px);
}
.blog__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f7f6f2;
}
.blog__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.blog__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #93032e;
  border-radius: 999px;
}
.blog__badge--muted {
  background-color: #1a1a1a;
}
.blog__badge--soft {
  background-color: #6d0222;
}
.blog__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.blog__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.blog__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog__meta-item svg {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  color: rgba(147, 3, 46, 0.75);
}
.blog__card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__card-title a {
  color: inherit;
  text-decoration: none;
}
.blog__card-title a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.blog__excerpt {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog__read-more svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}
.blog__read-more:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.blog__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.blog__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  background-color: transparent;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog__more:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.blog__more:hover {
  background-color: #93032e;
  color: #ffffff;
}

.journal-masthead {
  background-color: #1a1a1a;
  color: #f7f6f2;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 3px solid #93032e;
}
.journal-masthead__inner {
  max-width: 52rem;
}
.journal-masthead__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: rgba(247, 246, 242, 0.55);
}
.journal-masthead__crumb a {
  color: rgba(247, 246, 242, 0.82);
  text-decoration: none;
}
.journal-masthead__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-masthead__crumb a:hover {
  color: #ffffff;
}
.journal-masthead__crumb [aria-current=page] {
  color: #ffffff;
}
.journal-masthead__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .journal-masthead__grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 3rem;
  }
}
.journal-masthead__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.55);
}
.journal-masthead__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.journal-masthead__deck {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(247, 246, 242, 0.72);
}
.journal-masthead__stats {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(247, 246, 242, 0.14);
}
@media (min-width: 62rem) {
  .journal-masthead__stats {
    padding-top: 0;
    border-top: none;
    flex-direction: column;
    gap: 1rem;
    text-align: right;
  }
}
.journal-masthead__stats div {
  margin: 0;
}
.journal-masthead__stats dt {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.45);
}
.journal-masthead__stats dd {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.journal {
  padding: clamp(2rem, 4vw, 3rem) 0 3rem;
  background-color: #f7f6f2;
}

.journal-lead {
  display: grid;
  gap: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.05);
  transition: box-shadow 0.2s ease;
}
.journal-lead:hover {
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.08);
}
@media (min-width: 62rem) {
  .journal-lead {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}
.journal-lead__media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #ebe9e3;
}
@media (min-width: 62rem) {
  .journal-lead__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.journal-lead__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.journal-lead:hover .journal-lead__media img {
  transform: scale(1.03);
}
.journal-lead__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
@media (min-width: 62rem) {
  .journal-lead__content {
    border-top: none;
    border-left: 1px solid rgba(26, 26, 26, 0.12);
  }
}
.journal-lead__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.journal-lead__meta time {
  font-variant-numeric: tabular-nums;
}
.journal-lead__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.journal-lead__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.journal-lead__title a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-lead__title a:hover {
  color: #93032e;
}
.journal-lead__excerpt {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #5c4f51;
}
.journal-lead__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.journal-lead__link {
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  white-space: nowrap;
}
.journal-lead__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-lead__link:hover {
  text-decoration: underline;
}

.journal-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93032e;
}

.journal-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.journal-author--compact {
  gap: 0.65rem;
}
.journal-author__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: #1a1a1a;
  border-radius: 50%;
}
.journal-author--compact .journal-author__mark {
  width: 2rem;
  height: 2rem;
  font-size: 0.6875rem;
}
.journal-author__mark--mc {
  background-color: #4a3f54;
}
.journal-author__mark--sw {
  background-color: #5c4a42;
}
.journal-author__mark--jo {
  background-color: #3d4f5c;
}
.journal-author__mark--ev {
  background-color: #4f5c4a;
}
.journal-author__mark--dp {
  background-color: #52463d;
}
.journal-author__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.journal-author__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.journal-author__role {
  font-size: 0.8125rem;
  color: #5c4f51;
  line-height: 1.35;
}

.journal-shell {
  display: grid;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .journal-shell {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: clamp(2.25rem, 4.5vw, 4rem);
    align-items: start;
  }
}

@media (min-width: 62rem) {
  .journal-rail {
    position: sticky;
    top: 8.5rem;
    padding-right: 0.5rem;
  }
}
.journal-rail__label {
  margin: 0 0 1rem;
  padding-left: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c4f51;
}
.journal-rail__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}
@media (max-width: 61.99rem) {
  .journal-rail__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
  }
  .journal-rail__list::-webkit-scrollbar {
    display: none;
  }
}
.journal-rail__item {
  display: block;
  width: 100%;
  padding: 0.55rem 0.75rem 0.55rem 0.85rem;
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 500;
  color: #5c4f51;
  text-align: left;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0 0.625rem 0.625rem 0;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
@media (max-width: 61.99rem) {
  .journal-rail__item {
    flex-shrink: 0;
    width: auto;
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-left: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 999px;
    background-color: #ffffff;
  }
}
.journal-rail__item:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-rail__item:hover {
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 61.99rem) {
  .journal-rail__item:hover {
    background-color: #ffffff;
    border-color: rgba(147, 3, 46, 0.25);
  }
}
.journal-rail__item.is-active {
  color: #93032e;
  border-left-color: #93032e;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 61.99rem) {
  .journal-rail__item.is-active {
    border-color: #93032e;
    background-color: #ffffff;
  }
}
.journal-rail__note {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.04);
}
.journal-rail__note p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5c4f51;
}
.journal-rail__note a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.journal-rail__note a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-rail__note a:hover {
  color: #6d0222;
  gap: 0.4rem;
}
@media (max-width: 61.99rem) {
  .journal-rail__note {
    display: none;
  }
}

.journal-feed {
  display: grid;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(26, 26, 26, 0.04);
}

.journal-post {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  transition: background-color 0.2s ease;
}
@media (min-width: 40rem) {
  .journal-post {
    grid-template-columns: 11.5rem minmax(0, 1fr);
    gap: clamp(1.15rem, 2.5vw, 2rem);
    align-items: start;
  }
}
.journal-post:last-child {
  border-bottom: none;
}
.journal-post:hover {
  background-color: rgba(247, 246, 242, 0.65);
}
.journal-post:hover .journal-post__thumb img {
  transform: scale(1.04);
}
.journal-post:hover .journal-post__title a {
  color: #93032e;
}
.journal-post__thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #ebe9e3;
}
.journal-post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.journal-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.8125rem;
  color: #5c4f51;
}
.journal-post__meta time {
  font-variant-numeric: tabular-nums;
}
.journal-post__mins::before {
  content: "·";
  margin-right: 1rem;
}
.journal-post__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.journal-post__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.journal-post__title a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-post__deck {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #5c4f51;
}
.journal-post__foot {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.journal-stream {
  min-width: 0;
}
.journal-stream__empty {
  margin: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  font-size: 1rem;
  color: #5c4f51;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
}

.journal-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.04);
}
.journal-pager__status {
  font-size: 1rem;
  color: #5c4f51;
}
.journal-pager__status strong {
  color: #1a1a1a;
  font-weight: 700;
}
.journal-pager__links {
  display: flex;
  gap: 1.5rem;
}
.journal-pager__link {
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
}
.journal-pager__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-pager__link:hover:not(.is-muted) {
  text-decoration: underline;
}
.journal-pager__link.is-muted {
  color: rgba(92, 79, 81, 0.5);
  cursor: default;
}

.journal-article {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 0;
  background-color: #f7f6f2;
}
.journal-article__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
  font-size: 0.875rem;
  color: #5c4f51;
}
.journal-article__crumb a {
  color: #93032e;
  text-decoration: none;
}
.journal-article__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-article__crumb a:hover {
  text-decoration: underline;
}
.journal-article__crumb [aria-current=page] {
  color: #1a1a1a;
}
.journal-article__banner {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 62rem) {
  .journal-article__banner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}
.journal-article__header {
  min-width: 0;
}
.journal-article__hero {
  margin: 0;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.08);
}
.journal-article__hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (min-width: 62rem) {
  .journal-article__hero img {
    aspect-ratio: 5/4;
    min-height: 100%;
  }
}
.journal-article__caption {
  margin: 0;
  padding: 1rem 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #5c4f51;
  background-color: #ffffff;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.journal-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.journal-article__meta time {
  font-variant-numeric: tabular-nums;
}
.journal-article__mins::before {
  content: "·";
  margin-right: 1rem;
}
.journal-article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}
.journal-article__deck {
  margin: 0 0 1.5rem;
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: #5c4f51;
}
.journal-article__byline {
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.journal-article__shell {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 62rem) {
  .journal-article__shell {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: clamp(2.25rem, 4.5vw, 4rem);
    align-items: start;
  }
}
.journal-article__content {
  padding: clamp(1.35rem, 3vw, 2rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 1px 4px rgba(26, 26, 26, 0.04);
  color: #5c4f51;
  line-height: 1.7;
  font-size: 1rem;
}
.journal-article__content > *:first-child {
  margin-top: 0;
}
.journal-article__content > *:last-child {
  margin-bottom: 0;
}
.journal-article__content h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #1a1a1a;
}
.journal-article__content h2:first-child {
  margin-top: 0;
}
.journal-article__content h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
}
.journal-article__content p {
  margin: 0 0 1rem;
}
.journal-article__content ul,
.journal-article__content ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.journal-article__content ul li,
.journal-article__content ol li {
  margin-bottom: 0.4rem;
}
.journal-article__content ul li:last-child,
.journal-article__content ol li:last-child {
  margin-bottom: 0;
}
.journal-article__content strong {
  font-weight: 600;
  color: #1a1a1a;
}
.journal-article__content a {
  color: #93032e;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.journal-article__content a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-article__content a:hover {
  color: #6d0222;
}
.journal-article__content blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #93032e;
  background-color: rgba(247, 246, 242, 0.65);
  border-radius: 0 0.625rem 0.625rem 0;
}
.journal-article__content blockquote p {
  margin: 0;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.55;
  color: #1a1a1a;
}
.journal-article__callout {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: rgba(147, 3, 46, 0.06);
  border: 1px solid rgba(147, 3, 46, 0.15);
  border-radius: 0.625rem;
}
.journal-article__callout p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}
.journal-article__footer {
  padding: 1.5rem 0 clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.journal-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.journal-article__tag {
  padding: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5c4f51;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
}
.journal-article__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.journal-article__nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.journal-article__nav-link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-article__nav-link:hover {
  color: #6d0222;
  text-decoration: underline;
}

.journal-rail__toc {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
  counter-reset: toc;
}
.journal-rail__toc li {
  margin: 0;
}
.journal-rail__toc a {
  display: block;
  padding: 0.5rem 0.75rem 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: #5c4f51;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 0.625rem 0.625rem 0;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.journal-rail__toc a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-rail__toc a:hover {
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.55);
}
.journal-rail__toc a.is-active {
  color: #93032e;
  font-weight: 600;
  border-left-color: #93032e;
  background-color: rgba(255, 255, 255, 0.72);
}

.journal-related {
  padding: clamp(2rem, 4vw, 3rem) 0 3rem;
  background-color: #ffffff;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}
.journal-related__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.journal-related__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1a1a1a;
}
.journal-related__more {
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
}
.journal-related__more:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.journal-related__more:hover {
  text-decoration: underline;
}
.journal-related__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 36rem) {
  .journal-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .journal-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.journal-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.journal-related-card:hover {
  border-color: rgba(147, 3, 46, 0.3);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}
.journal-related-card:hover .journal-related-card__thumb img {
  transform: scale(1.04);
}
.journal-related-card:hover .journal-related-card__title a {
  color: #93032e;
}
.journal-related-card__thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #ebe9e3;
}
.journal-related-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.journal-related-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1.5rem 1.5rem;
}
.journal-related-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: #5c4f51;
}
.journal-related-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.journal-related-card__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.journal-related-card__title a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}

.legal-masthead {
  background-color: #1a1a1a;
  color: #f7f6f2;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  border-bottom: 3px solid #93032e;
}
.legal-masthead__inner {
  max-width: 52rem;
}
.legal-masthead__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: rgba(247, 246, 242, 0.55);
}
.legal-masthead__crumb a {
  color: rgba(247, 246, 242, 0.82);
  text-decoration: none;
}
.legal-masthead__crumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-masthead__crumb a:hover {
  color: #ffffff;
}
.legal-masthead__crumb [aria-current=page] {
  color: #ffffff;
}
.legal-masthead__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.55);
}
.legal-masthead__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.legal-masthead__deck {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(247, 246, 242, 0.72);
}
.legal-masthead__updated {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(247, 246, 242, 0.45);
}
.legal-masthead__updated time {
  font-variant-numeric: tabular-nums;
  color: rgba(247, 246, 242, 0.7);
}

.legal {
  padding: clamp(2rem, 4vw, 3rem) 0 3rem;
  background-color: #f7f6f2;
}

.legal-shell {
  display: grid;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .legal-shell {
    grid-template-columns: 16rem minmax(0, 1fr);
    gap: clamp(2.25rem, 4.5vw, 4rem);
    align-items: start;
  }
}

@media (min-width: 62rem) {
  .legal-rail {
    position: sticky;
    top: 8.5rem;
    padding-right: 0.5rem;
  }
}
.legal-rail__label {
  margin: 0 0 1rem;
  padding-left: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5c4f51;
}
.legal-rail__label + .legal-rail__label {
  margin-top: 1.5rem;
}
.legal-rail__nav {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}
@media (max-width: 61.99rem) {
  .legal-rail__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}
.legal-rail__nav a {
  display: block;
  padding: 0.5rem 0.75rem 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #5c4f51;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 0.625rem 0.625rem 0;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
@media (max-width: 61.99rem) {
  .legal-rail__nav a {
    padding: 0.45rem 0.95rem;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-left: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: 999px;
    background-color: #ffffff;
  }
}
.legal-rail__nav a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-rail__nav a:hover {
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.55);
}
.legal-rail__nav a.is-active {
  color: #93032e;
  font-weight: 600;
  border-left-color: #93032e;
  background-color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 61.99rem) {
  .legal-rail__nav a.is-active {
    border-color: #93032e;
  }
}
.legal-rail__toc {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.2rem;
}
@media (max-width: 61.99rem) {
  .legal-rail__toc {
    display: none;
  }
}
.legal-rail__toc a {
  display: block;
  padding: 0.45rem 0.75rem 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #5c4f51;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 0.625rem 0.625rem 0;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.legal-rail__toc a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-rail__toc a:hover {
  color: #1a1a1a;
  background-color: rgba(255, 255, 255, 0.55);
}
.legal-rail__toc a.is-active {
  color: #93032e;
  font-weight: 600;
  border-left-color: #93032e;
  background-color: rgba(255, 255, 255, 0.72);
}
.legal-rail__note {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.04);
}
@media (max-width: 61.99rem) {
  .legal-rail__note {
    display: none;
  }
}
.legal-rail__note p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5c4f51;
}
.legal-rail__note a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  text-decoration: none;
}
.legal-rail__note a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-rail__note a:hover {
  color: #6d0222;
  gap: 0.4rem;
}

.legal-body {
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.05);
  color: #5c4f51;
  line-height: 1.7;
  font-size: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.legal-body > *:first-child {
  margin-top: 0;
}
.legal-body > *:last-child {
  margin-bottom: 0;
}
.legal-body h2 {
  margin: 3rem 0 1rem;
  padding-top: 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.4375rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #1a1a1a;
  scroll-margin-top: 8.75rem;
}
.legal-body h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.legal-body h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a1a;
  scroll-margin-top: 8.75rem;
}
.legal-body p {
  margin: 0 0 1rem;
}
.legal-body ul,
.legal-body ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}
.legal-body ul li,
.legal-body ol li {
  margin-bottom: 0.45rem;
}
.legal-body ul li:last-child,
.legal-body ol li:last-child {
  margin-bottom: 0;
}
.legal-body strong {
  font-weight: 600;
  color: #1a1a1a;
}
.legal-body a {
  color: #93032e;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-body a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-body a:hover {
  color: #6d0222;
}

.legal-highlight {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: rgba(147, 3, 46, 0.05);
  border: 1px solid rgba(147, 3, 46, 0.12);
  border-radius: 0.625rem;
}
@media (min-width: 36rem) {
  .legal-highlight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.legal-highlight__item {
  margin: 0;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.legal-highlight__item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  color: #93032e;
}
.legal-highlight__item span {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5c4f51;
}

.legal-callout {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background-color: rgba(247, 246, 242, 0.8);
  border-left: 3px solid #93032e;
  border-radius: 0 0.625rem 0.625rem 0;
}
.legal-callout p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
}

.legal-contact {
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.legal-contact p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #5c4f51;
}
.legal-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.legal-contact a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.legal-contact a:hover {
  background-color: #6d0222;
  color: #ffffff;
}

.archive-hero {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0 2.75rem;
  background-color: #f7f6f2;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.archive-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%2393032E' stroke-width='1' opacity='0.14'%3E%3Crect x='6' y='28' width='22' height='16' rx='0.5'/%3E%3Cpath d='M6 28 17 21 39 21 28 28'/%3E%3Crect x='44' y='8' width='18' height='14' rx='0.5'/%3E%3Cpath d='M44 8 53 3 71 3 62 8'/%3E%3Crect x='38' y='48' width='26' height='20' rx='0.5'/%3E%3Cpath d='M38 48 51 39 77 39 64 48'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 5rem 5rem;
}
.archive-hero__pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 72% 80% at 50% 42%, rgba(247, 246, 242, 0.92) 0%, rgba(247, 246, 242, 0.45) 50%, transparent 100%);
}
.archive-hero__pattern::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='52' viewBox='0 0 200 52'%3E%3Cg fill='none' stroke='%2393032E' stroke-width='1.15' opacity='0.2'%3E%3Crect x='8' y='20' width='30' height='24' rx='1'/%3E%3Cpath d='M8 20 23 10 53 10 38 20'/%3E%3Crect x='68' y='24' width='26' height='20' rx='1'/%3E%3Cpath d='M68 24 81 15 107 15 94 24'/%3E%3Crect x='128' y='18' width='34' height='26' rx='1'/%3E%3Cpath d='M128 18 145 7 179 7 162 18'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 12.5rem 3.25rem;
  mask-image: linear-gradient(to top, #1a1a1a 25%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #1a1a1a 25%, transparent 100%);
}
.archive-hero .container {
  position: relative;
  z-index: 1;
}
.archive-hero__inner {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.archive-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #5c4f51;
}
.archive-hero__breadcrumb a {
  color: #93032e;
  text-decoration: none;
}
.archive-hero__breadcrumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.archive-hero__breadcrumb a:hover {
  text-decoration: underline;
}
.archive-hero__breadcrumb [aria-current=page] {
  color: #1a1a1a;
  font-weight: 500;
}
.archive-hero__title {
  color: #1a1a1a;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.archive-hero__intro {
  max-width: 34rem;
  margin-inline: auto;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin-bottom: 0;
}

.archive-split {
  padding: 2rem 0 3rem;
  background-color: #f7f6f2;
}
.archive-split__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .archive-split__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 1.5rem;
  }
}
.archive-split__form-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(147, 3, 46, 0.18);
  border-radius: 0.625rem;
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.06);
}
@media (min-width: 62rem) {
  .archive-split__form-card {
    grid-column: span 4;
    position: sticky;
    top: 8.25rem;
  }
}
.archive-split__form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #93032e;
  border-radius: 0.625rem 0.625rem 0 0;
}
@media (max-width: 61.9375rem) {
  .archive-split__form-card {
    position: static;
  }
}
@media (min-width: 62rem) {
  .archive-split__products {
    grid-column: span 8;
  }
}
.archive-split__form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
}
.archive-split__form-lead {
  font-size: 1rem;
  color: #5c4f51;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.archive-split__products-head {
  margin-bottom: 1.5rem;
}
.archive-split__products-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.archive-split__products-sub {
  margin: 0;
  font-size: 1rem;
  color: #5c4f51;
}
.archive-split__product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 62rem) {
  .archive-split__product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.archive-split__product {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.archive-split__product:hover {
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}
.archive-split__product-media {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #ebe9e3;
}
.archive-split__product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.archive-split__product-media:hover img {
  transform: scale(1.05);
}
.archive-split__product-media:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.archive-split__product-body {
  padding: 1rem;
  text-align: center;
}
.archive-split__product-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.archive-split__product-name a {
  color: #1a1a1a;
  text-decoration: none;
}
.archive-split__product-name a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.archive-split__product-name a:hover {
  color: #93032e;
}
.archive-split__customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: max(1rem, 16px);
  font-weight: 600;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.archive-split__customize:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.archive-split__customize:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}

.archive-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.archive-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .archive-form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 30rem) {
  .archive-form__row--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.archive-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.archive-form__label {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}
.archive-form__required {
  color: #93032e;
}
.archive-form__input, .archive-form__select, .archive-form__textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.archive-form__input:focus, .archive-form__select:focus, .archive-form__textarea:focus {
  outline: none;
  border-color: #93032e;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.12);
  background-color: #ffffff;
}
.archive-form__textarea {
  min-height: 5.5rem;
  resize: vertical;
}
.archive-form__dims-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.archive-form__unit {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}
.archive-form__unit label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  color: #5c4f51;
  cursor: pointer;
}
.archive-form__file-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #93032e;
  background-color: #f7f6f2;
  border: 1px dashed rgba(147, 3, 46, 0.45);
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.archive-form__file-trigger:hover {
  background-color: #ebe9e3;
  border-color: #93032e;
}
.archive-form input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.archive-form__file-name {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #5c4f51;
}
.archive-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.archive-form__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.archive-form__submit:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}

.archive-perks {
  padding: 2rem 0;
  background-color: #ffffff;
}
.archive-perks__title {
  text-align: center;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0 0 2rem;
}
.archive-perks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 36rem) {
  .archive-perks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .archive-perks__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.archive-perks__card {
  padding: 1.5rem;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  text-align: center;
}
.archive-perks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #93032e;
}
.archive-perks__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.archive-perks__card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.archive-perks__card-text {
  margin: 0;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}

.shop-split .woocommerce-pagination {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  text-align: center;
}
.shop-split .woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-split .woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #5c4f51;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.shop-split .woocommerce-pagination .page-numbers:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.shop-split .woocommerce-pagination .page-numbers:hover {
  color: #93032e;
  border-color: rgba(147, 3, 46, 0.35);
}
.shop-split .woocommerce-pagination .page-numbers.current {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
}
.shop-split .woocommerce-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.shop-categories {
  margin-bottom: 1.5rem;
}
.shop-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-categories__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5c4f51;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.shop-categories__pill:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.shop-categories__pill:hover {
  color: #93032e;
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.06);
}
.shop-categories__pill.is-active {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
  box-shadow: 0 6px 18px rgba(147, 3, 46, 0.18);
}

.print-options {
  padding: 3rem 0;
  background-color: #ffffff;
}
.print-options__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2rem;
}
.print-options__title {
  color: #1a1a1a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.print-options__intro {
  margin: 0;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}
.print-options__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}
.print-options__tabs::-webkit-scrollbar {
  display: none;
}
.print-options__tab {
  flex-shrink: 0;
  padding: 0.5rem 1.125rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #93032e;
  background-color: transparent;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.print-options__tab:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.print-options__tab:hover {
  background-color: #ebe9e3;
}
.print-options__tab.is-active {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.18);
}
.print-options__panel {
  display: none;
}
.print-options__panel.is-active {
  display: block;
  animation: print-options-fade 0.35s ease;
}
.print-options__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 36rem) {
  .print-options__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .print-options__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.print-options__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.print-options__card:hover {
  border-color: rgba(147, 3, 46, 0.35);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}
.print-options__card:hover .print-options__img {
  transform: scale(1.04);
}
.print-options__media {
  aspect-ratio: 800/462;
  overflow: hidden;
  background-color: #ebe9e3;
}
.print-options__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.print-options__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}
.print-options__card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.print-options__card-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: #5c4f51;
  line-height: 1.55;
}

@keyframes print-options-fade {
  from {
    opacity: 0;
    transform: translateY(0.375rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-hero {
  padding: 2rem 0;
  background-color: #ffffff;
}
.product-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: #5c4f51;
}
.product-hero__breadcrumb a {
  color: #93032e;
  text-decoration: none;
}
.product-hero__breadcrumb a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-hero__breadcrumb a:hover {
  text-decoration: underline;
}
.product-hero__breadcrumb [aria-current=page] {
  color: #1a1a1a;
  font-weight: 500;
}
.product-hero__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 62rem) {
  .product-hero__grid {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }
}
.product-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 62rem) {
  .product-hero__gallery {
    position: sticky;
    top: 8.25rem;
  }
}
.product-hero__main-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
.product-hero__main-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (min-width: 30rem) {
  .product-hero__thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.product-hero__thumb {
  padding: 0;
  border: 2px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-hero__thumb:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-hero__thumb.is-active {
  border-color: #93032e;
  box-shadow: 0 0 0 2px rgba(147, 3, 46, 0.15);
}
.product-hero__thumb:hover {
  border-color: rgba(147, 3, 46, 0.45);
}
.product-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-hero__perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.product-hero__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  background-color: #ebe9e3;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  min-height: 3.5rem;
}
.product-hero__perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: #1a1a1a;
}
.product-hero__perk-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.product-hero__perk-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0;
}
.product-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-hero__title {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.product-hero__intro {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}
.product-hero__split {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 62rem) {
  .product-hero__split {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}
.product-hero__reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  min-height: 0;
}
.product-hero__testimonials {
  flex: 1 1 auto;
  width: 100%;
  height: clamp(20rem, 36vh, 26rem);
  min-height: 20rem;
  overflow: hidden;
  margin: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.product-hero__testimonials.swiper {
  width: 100%;
}
.product-hero__testimonials .swiper-slide {
  height: calc((100% - 0.75rem) / 2);
  display: flex;
  box-sizing: border-box;
}
.product-hero__google {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
.product-hero__google-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
}
.product-hero__google-logo svg {
  width: 1.35rem;
  height: 1.35rem;
}
.product-hero__google-body {
  min-width: 0;
}
.product-hero__google-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.product-hero__google-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #f4b400;
  margin-bottom: 0.15rem;
}
.product-hero__google-stars svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}
.product-hero__google-count {
  font-size: 0.875rem;
  color: #5c4f51;
  margin: 0;
}
.product-hero__testimonial {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0.625rem;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.06);
  margin: 0;
  box-sizing: border-box;
}
.product-hero__testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.product-hero__testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #1a1a1a;
}
.product-hero__testimonial-meta {
  min-width: 0;
}
.product-hero__testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  font-style: normal;
}
.product-hero__testimonial-badge {
  font-size: 0.875rem;
  color: #93032e;
  font-weight: 500;
  margin: 0;
}
.product-hero__testimonial-text {
  flex: 1 1 auto;
  min-height: 0;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-hero__chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #93032e;
  background-color: #f7f6f2;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.product-hero__chat:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-hero__chat svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.product-hero__chat:hover {
  background-color: #ebe9e3;
  border-color: #93032e;
  color: #6d0222;
}
.product-hero__purchase {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem clamp(1rem, 2vw, 1.25rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
@media (min-width: 62rem) {
  .product-hero__purchase {
    flex-wrap: nowrap;
  }
}
.product-hero__price {
  margin: 0;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.45;
}
@media (min-width: 62rem) {
  .product-hero__price {
    white-space: nowrap;
  }
}
.product-hero__price-label {
  color: #5c4f51;
}
.product-hero__price-was {
  margin: 0 0.2rem;
  color: #5c4f51;
}
.product-hero__price-now {
  color: #93032e;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.product-hero__price-unit {
  color: #5c4f51;
  font-size: 0.875rem;
}
.product-hero__purchase-btns {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}
.product-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 7.5rem;
  padding: 0.65rem 1.1rem;
  font-size: max(0.9375rem, 15px);
  font-weight: 700;
  font-family: inherit;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0.625rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.product-hero__btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-hero__btn:hover {
  transform: translateY(-1px);
}
.product-hero__btn--cart {
  color: #ffffff;
  background-color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.22);
}
.product-hero__btn--cart:hover {
  background-color: #333333;
}
.product-hero__btn--buy {
  color: #ffffff;
  background-color: #93032e;
  box-shadow: 0 4px 14px rgba(147, 3, 46, 0.28);
}
.product-hero__btn--buy:hover {
  background-color: #6d0222;
}
.product-hero__form-card {
  height: 100%;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.product-hero__form-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #93032e;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.product-hero__form-lead {
  font-size: 1rem;
  color: #5c4f51;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.product-form {
  display: grid;
  gap: 1rem;
}
.product-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 30rem) {
  .product-form__row--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.product-form__field {
  display: grid;
  gap: 0.35rem;
}
.product-form__label {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}
.product-form__required {
  color: #93032e;
}
.product-form__input, .product-form__select, .product-form__textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-form__input::placeholder, .product-form__select::placeholder, .product-form__textarea::placeholder {
  color: #5c4f51;
}
.product-form__input:focus, .product-form__select:focus, .product-form__textarea:focus {
  outline: none;
  border-color: #93032e;
  box-shadow: 0 0 0 3px rgba(147, 3, 46, 0.12);
}
.product-form__textarea {
  min-height: 5.5rem;
  resize: vertical;
}
.product-form__dims {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 30rem) {
  .product-form__dims {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.product-form__unit {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-form__unit label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1rem;
  color: #5c4f51;
  cursor: pointer;
}
.product-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #93032e;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  margin-top: 0.25rem;
}
.product-form__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-form__submit:hover {
  background-color: #6d0222;
  border-color: #6d0222;
}
.product-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c4f51' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.product-steps {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background-color: #ffffff;
}
.product-steps .container {
  text-align: center;
}
.product-steps__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #93032e;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-steps__title {
  max-width: 44rem;
  margin: 0 auto 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.product-steps__intro {
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}
.product-steps__grid {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media (min-width: 40rem) {
  .product-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .product-steps__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
.product-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 1.5rem 1rem;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.15);
}
.product-steps__icon {
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}
.product-steps__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}
.product-steps__item-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
}

.product-specs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-specs__table {
  width: 100%;
  min-width: 18rem;
  border-collapse: collapse;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
.product-specs__table tr:nth-child(even) {
  background-color: #f7f6f2;
}
.product-specs__table th,
.product-specs__table td {
  padding: 1rem;
  text-align: left;
  font-size: max(0.9375rem, 15px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  vertical-align: top;
  word-break: break-word;
}
.product-specs__table thead th {
  font-weight: 700;
  color: #ffffff;
  background-color: #93032e;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.product-specs__table tbody th {
  width: 38%;
  font-weight: 600;
  color: #1a1a1a;
  background-color: #ebe9e3;
}
.product-specs__table tr:last-child th,
.product-specs__table tr:last-child td {
  border-bottom: 0;
}
.product-specs__table td {
  color: #5c4f51;
}

.product-tabs {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  background-color: #f7f6f2;
}
.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  padding-bottom: 0.5rem;
}
.product-tabs__tab {
  flex: 1 1 0;
  min-width: 8.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #93032e;
  background-color: #ffffff;
  border: 2px solid #93032e;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-tabs__tab:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-tabs__tab:hover {
  background-color: #ebe9e3;
}
.product-tabs__tab.is-active {
  color: #ffffff;
  background-color: #93032e;
  border-color: #93032e;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.18);
}
.product-tabs__panel {
  display: none;
}
.product-tabs__panel.is-active {
  display: block;
  animation: product-tabs-fade 0.35s ease;
}
.product-tabs__content {
  max-height: 50rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(26, 26, 26, 0.25) transparent;
  padding: clamp(1.25rem, 2.5vw, 1.875rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  color: #5c4f51;
  line-height: 1.6;
}
.product-tabs__content::-webkit-scrollbar {
  width: 0.375rem;
}
.product-tabs__content::-webkit-scrollbar-thumb {
  background-color: rgba(26, 26, 26, 0.25);
  border-radius: 0.625rem;
}
.product-tabs__content::-webkit-scrollbar-track {
  background-color: transparent;
}
.product-tabs__content h2 {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 1.5rem 0 1rem;
}
.product-tabs__content h2:first-child {
  margin-top: 0;
}
.product-tabs__content p {
  margin: 0 0 1rem;
}
.product-tabs__content p:last-child {
  margin-bottom: 0;
}
.product-tabs__content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}
.product-tabs__content ul li {
  margin-bottom: 0.5rem;
}
.product-tabs__content ul li:last-child {
  margin-bottom: 0;
}
.product-tabs__content strong {
  color: #1a1a1a;
  font-weight: 600;
}
.product-tabs__guidelines-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 40rem) {
  .product-tabs__guidelines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .product-tabs__guidelines-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.product-tabs__guideline-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.product-tabs__guideline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  background-color: #93032e;
  border-radius: 50%;
}
.product-tabs__guideline-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.product-tabs__guideline-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.35;
}
.product-tabs__guideline-text {
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
  margin: 0;
}

.product-reviews {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.product-reviews__layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 62rem) {
  .product-reviews__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }
}
.product-reviews__list {
  display: grid;
  gap: 1.5rem;
}
.product-reviews__summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-reviews__score {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
}
.product-reviews__summary-body {
  display: grid;
  gap: 0.25rem;
}
.product-reviews__stars, .product-reviews__card-stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #f4b400;
}
.product-reviews__stars svg, .product-reviews__card-stars svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}
.product-reviews__stars svg {
  width: 1.35rem;
  height: 1.35rem;
}
.product-reviews__count {
  margin: 0;
  font-size: 0.875rem;
  color: #5c4f51;
}
.product-reviews__card {
  padding: clamp(1rem, 2vw, 1.35rem);
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.product-reviews__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-reviews__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.product-reviews__avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: #ebe9e3;
  border: 1px solid rgba(26, 26, 26, 0.12);
}
.product-reviews__name {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.product-reviews__date {
  font-size: 0.875rem;
  color: #5c4f51;
}
.product-reviews__text {
  margin: 0;
  font-size: 1rem;
  color: #5c4f51;
  line-height: 1.6;
}
.product-reviews__form-wrap {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background-color: #ebe9e3;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
}
.product-reviews__form {
  display: grid;
  gap: 1rem;
}
.product-reviews__form-title {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.product-reviews__rating-field {
  display: grid;
  gap: 0.45rem;
}
.product-reviews__rating-label {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}
.product-reviews__stars-input {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.product-reviews__star-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: none;
  color: #c8b88a;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}
.product-reviews__star-btn:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-reviews__star-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}
.product-reviews__star-btn:hover, .product-reviews__star-btn.is-active {
  color: #f4b400;
}
.product-reviews__star-btn:hover {
  transform: scale(1.06);
}
.product-reviews__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: #ffffff;
  background-color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.product-reviews__submit:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-reviews__submit svg {
  width: 1rem;
  height: 1rem;
}
.product-reviews__submit:hover {
  background-color: #93032e;
  border-color: #93032e;
  transform: translateY(-1px);
}
.product-reviews__privacy {
  margin: 0;
  font-size: 0.875rem;
  color: #5c4f51;
  text-align: center;
}

@keyframes product-tabs-fade {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-related {
  padding: 2rem 0 3rem;
  background-color: #ffffff;
}
.product-related__title {
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 2rem;
}
.product-related__slider {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(2.5rem, 5vw, 3.25rem);
}
.product-related__slider .swiper-slide {
  height: auto;
}
.product-related__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #93032e;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
  cursor: pointer;
}
.product-related__arrow:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-related__arrow:hover:not(:disabled) {
  background-color: #6d0222;
  transform: translateY(-50%) scale(1.06);
}
.product-related__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-related__arrow svg {
  width: 0.9375rem;
  height: 0.9375rem;
}
.product-related__arrow--prev {
  left: 0;
}
.product-related__arrow--next {
  right: 0;
}
.product-related__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.product-related__dot {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 !important;
  padding: 0;
  border: none;
  border-radius: 50%;
  opacity: 1;
  background-color: rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.product-related__dot:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-related__dot.is-active {
  background-color: #93032e;
  transform: scale(1.2);
}
.product-related__card {
  height: 100%;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0.625rem;
  overflow: hidden;
  background-color: #f7f6f2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-related__card:hover {
  border-color: rgba(147, 3, 46, 0.25);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}
.product-related__media {
  display: block;
  overflow: hidden;
  background-color: #ffffff;
}
.product-related__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-related__media:hover img {
  transform: scale(1.03);
}
.product-related__name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  padding: 1rem;
  text-align: center;
}
.product-related__name a {
  color: #1a1a1a;
  text-decoration: none;
}
.product-related__name a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.product-related__name a:hover {
  color: #93032e;
}

@media (max-width: 40rem) {
  .product-tabs__tab {
    flex: 1 1 100%;
    min-width: 0;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.85);
}
.site-footer__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.55'%3E%3Cpath d='M0 120c80-40 160-40 240 0s160 40 240 0 160-40 240 0'/%3E%3Cpath d='M0 220c100-50 200-50 300 0s200 50 300 0 200-50 300 0'/%3E%3Cpath d='M0 320c80-35 160-35 240 0s160 35 240 0 160-35 240 0'/%3E%3Cpath d='M0 420c110-45 220-45 330 0s220 45 330 0'/%3E%3Cpath d='M0 520c90-40 180-40 270 0s180 40 270 0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 28rem 28rem;
}
.site-footer__main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}
.site-footer__grid {
  display: grid;
  gap: 2rem 1.5rem;
}
@media (min-width: 40rem) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62rem) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.35fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__heading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}
.site-footer__link {
  display: inline-block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.site-footer__link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-footer__link:hover {
  color: #ffffff;
}
@media (min-width: 40rem) {
  .site-footer__brand {
    grid-column: 1/-1;
  }
}
@media (min-width: 62rem) {
  .site-footer__brand {
    grid-column: auto;
  }
}
.site-footer__brand-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1rem;
  line-height: 1.15;
}
.site-footer__about {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.5rem;
  max-width: 28rem;
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.site-footer__social-link:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}
.site-footer__social-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}
.site-footer__social-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}
.site-footer__contact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: clamp(2rem, 4vw, 3rem);
  background-color: #93032e;
  border-radius: 9999px;
  overflow: hidden;
}
@media (max-width: 47.99rem) {
  .site-footer__contact-bar {
    flex-direction: column;
    border-radius: 0.625rem;
  }
}
.site-footer__contact-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.4;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.site-footer__contact-bar-item:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-footer__contact-bar-item svg {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}
.site-footer__contact-bar-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
@media (max-width: 47.99rem) {
  .site-footer__contact-bar-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}
.site-footer__contact-bar-item:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.site-footer__contact-bar-item address {
  font-style: normal;
  margin: 0;
}
.site-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottom-inner {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: center;
}
@media (min-width: 62rem) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
.site-footer__copy {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.45;
}
.site-footer__copy a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__copy a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-footer__copy a:hover {
  color: #ffffff;
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 1rem;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer__legal a:focus-visible {
  outline: 2px solid #93032e;
  outline-offset: 2px;
}
.site-footer__legal a:hover {
  color: #ffffff;
}
.site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

button,
input[type=submit],
input[type=button],
input[type=reset],
[class*=__btn],
[class*=__submit],
[class*=__customize],
[class$=__more],
.site-header__cta,
.offcanvas__cta,
.why-us__cta,
.faq__cta,
.legal-contact a {
  font-size: max(1rem, 16px);
}
