/*  
    Used for making px values convert to rem values
    Usage: define font-size in px and it will convert to rems
    eg. font-size: rem(14px);
*/
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background-color: #FBF9F4;
  color: #1B1C19;
  overflow-x: clip;
  max-width: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

.c-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-accent, #1B1C19);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 600ms ease, visibility 600ms ease;
}
.c-preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.c-preloader__logo {
  width: clamp(160px, 30vw, 320px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: c-preloader-fade 1.4s ease forwards;
}

@keyframes c-preloader-fade {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-preloader {
    display: none !important;
  }
}
.c-header {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0;
  pointer-events: none;
}
.c-header > * {
  pointer-events: auto;
}
.c-header__logo {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}
.c-header__logo img {
  height: 2.5rem;
  width: auto;
  transition: filter 700ms, opacity 700ms;
}
@media (min-width: 768px) {
  .c-header__logo img {
    height: 3.5rem;
  }
}
.c-header__logo--dark img {
  filter: brightness(0) saturate(0%) brightness(0.1);
}
.c-header__cluster {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9100;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: background 700ms, border-color 700ms, box-shadow 700ms, opacity 400ms;
  transform: scale(0.8);
  transform-origin: top right;
}
@media (min-width: 768px) {
  .c-header__cluster {
    right: 2.5rem;
    transform: none;
  }
}
.c-header__cluster:has(> a:hover), .c-header__cluster:has(> button:hover) {
  opacity: 0.95;
}
.c-header__cluster--scrolled {
  background: linear-gradient(135deg, rgba(251, 249, 244, 0.6) 0%, rgba(251, 249, 244, 0.3) 100%);
  border-color: rgba(27, 28, 25, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.c-header__cluster--scrolled .c-header__hamburger-line {
  background: #1B1C19;
}
.c-header__hamburger {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-header__hamburger:hover {
  transform: scale(1.08);
}
.c-header__hamburger:hover .c-header__hamburger-line {
  background: #fff;
}
.c-header__hamburger-line {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), opacity 400ms, width 400ms, background 400ms;
}
.c-header__hamburger-line--long {
  width: 1.25rem;
}
.c-header__hamburger-line--short {
  width: 0.875rem;
}
.c-header__sygnet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: width 700ms, opacity 700ms, margin 700ms, transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-header__sygnet img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), filter 400ms;
}
.c-header__sygnet--visible {
  width: 52px;
  opacity: 1;
  pointer-events: auto;
}
.c-header__sygnet:hover img {
  filter: invert(1);
}

.c-menu {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 400ms;
}
.c-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 28, 25, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-menu__panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #FBF9F4;
  color: #1B1C19;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 700ms cubic-bezier(0.23, 1, 0.32, 1), transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}
.c-menu__inner {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-y: auto;
  padding: 7rem 2rem 2.5rem;
  gap: 3rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-menu__inner {
    padding: 9rem 4rem 4rem;
    gap: 4rem;
  }
}
.c-menu__primary {
  align-self: center;
  width: 100%;
}
.c-menu__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .c-menu__cats {
    gap: 2.5rem 3rem;
  }
}
.c-menu__cat {
  flex: 1 1 16rem;
  min-width: 14rem;
  max-width: 22rem;
}
.c-menu__cat-title {
  display: block;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.1;
  color: #1B1C19;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 400ms;
}
.c-menu__cat-title:hover {
  color: var(--c-accent, #558170);
}
.c-menu__cat-title--static {
  cursor: default;
}
.c-menu__cat-title--static:hover {
  color: #1B1C19;
}
.c-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 1rem;
}
.c-menu__sub-link {
  display: inline-block;
  color: rgba(27, 28, 25, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 400ms, transform 400ms;
}
.c-menu__sub-link:hover {
  color: var(--c-accent, #558170);
  transform: translateX(4px);
}
.c-menu__sub-link--static {
  cursor: default;
  color: rgba(27, 28, 25, 0.85);
  font-weight: 500;
}
.c-menu__sub-link--static:hover {
  color: rgba(27, 28, 25, 0.85);
  transform: none;
}
.c-menu__articles {
  list-style: none;
  margin: 0.35rem 0 0.25rem;
  padding: 0 0 0 0.75rem;
  border-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.c-menu__articles--nested {
  margin: 0.35rem 0 0.25rem;
  padding: 0 0 0 0.75rem;
  border-top: 0;
}
.c-menu__article-link {
  display: inline-block;
  color: rgba(27, 28, 25, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.45;
  transition: color 400ms, transform 400ms;
}
.c-menu__article-link:hover {
  color: var(--c-accent, #558170);
  transform: translateX(4px);
}
.c-menu__secondary {
  border-top: 1px solid rgba(27, 28, 25, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-menu__pages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
.c-menu__page-link {
  color: rgba(27, 28, 25, 0.55);
  text-decoration: none;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  transition: color 400ms;
}
.c-menu__page-link:hover {
  color: var(--c-accent, #558170);
}
.c-menu__lang .c-lang-switcher {
  justify-content: flex-start;
}
.c-menu--open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-menu--open .c-menu__backdrop {
  opacity: 1;
}
.c-menu--open .c-menu__panel {
  opacity: 1;
  transform: scale(1);
}

body.is-menu-open {
  overflow: hidden;
}

.c-header__hamburger--open {
  background: linear-gradient(135deg, rgba(251, 249, 244, 0.85) 0%, rgba(251, 249, 244, 0.65) 100%) !important;
  border-color: rgba(27, 28, 25, 0.12) !important;
}
.c-header__hamburger--open .c-header__hamburger-line {
  background: #1B1C19 !important;
}
.c-header__hamburger--open .c-header__hamburger-line--long {
  width: 1.25rem;
  transform: translateY(4px) rotate(45deg);
}
.c-header__hamburger--open .c-header__hamburger-line--short {
  width: 1.25rem;
  transform: translateY(-4px) rotate(-45deg);
}

.c-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.c-slider__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(197, 200, 188, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  color: inherit;
  transition: border-color 400ms, color 400ms;
}
.c-slider__btn:hover {
  border-color: var(--c-accent, #558170);
  color: var(--c-accent, #558170);
}
.c-slider__btn--secondary:hover {
  border-color: #DF9B6A;
  color: #DF9B6A;
}
.c-slider__pagination {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(68, 72, 63, 0.5);
}

.c-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.c-lang-switcher--header {
  position: absolute;
  top: 1.5rem;
  right: 5.5rem;
  height: 52px;
  align-items: center;
  z-index: 49;
}
@media (min-width: 768px) {
  .c-lang-switcher--header {
    right: 6.5rem;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .c-lang-switcher--header {
    display: none;
  }
}
.c-lang-switcher--header .c-lang-switcher__item {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.c-lang-switcher--header .c-lang-switcher__item:hover {
  color: #fff;
}
.c-lang-switcher--header .c-lang-switcher__item--active {
  color: #fff;
  border-bottom-color: #fff;
}
.c-lang-switcher--header .c-lang-switcher__sep {
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.c-lang-switcher--header.c-lang-switcher--scrolled .c-lang-switcher__item {
  color: rgba(68, 72, 63, 0.5);
  text-shadow: none;
}
.c-lang-switcher--header.c-lang-switcher--scrolled .c-lang-switcher__item:hover {
  color: #1B1C19;
}
.c-lang-switcher--header.c-lang-switcher--scrolled .c-lang-switcher__item--active {
  color: #1B1C19;
  border-bottom-color: currentColor;
}
.c-lang-switcher--header.c-lang-switcher--scrolled .c-lang-switcher__sep {
  color: rgba(68, 72, 63, 0.3);
  text-shadow: none;
}
.c-lang-switcher--footer {
  margin-top: 1rem;
}
.c-lang-switcher--footer .c-lang-switcher__item {
  color: rgba(255, 255, 255, 0.55);
}
.c-lang-switcher--footer .c-lang-switcher__item:hover {
  color: #fff;
}
.c-lang-switcher--footer .c-lang-switcher__item--active {
  color: #fff;
}
.c-lang-switcher--footer .c-lang-switcher__sep {
  color: rgba(255, 255, 255, 0.25);
}
.c-lang-switcher__item {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: rgba(68, 72, 63, 0.5);
  padding: 0.25rem 0.5rem;
  transition: color 200ms;
}
.c-lang-switcher__item:hover {
  color: #1B1C19;
}
.c-lang-switcher__item--active {
  color: #1B1C19;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.c-lang-switcher__sep {
  font-size: 10px;
  color: rgba(68, 72, 63, 0.3);
}

.c-floater {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  z-index: 50;
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 24px 48px rgba(27, 28, 25, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 400ms ease, opacity 300ms ease;
}
.c-floater--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.c-floater__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(197, 200, 188, 0.2);
  text-decoration: none;
  color: rgba(68, 72, 63, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.15;
  text-align: left;
  transition: border-color 300ms, color 300ms, background 300ms;
}
.c-floater__link .c-floater__label {
  display: inline-block;
  white-space: nowrap;
}
.c-floater__link .c-floater__label--short {
  display: none;
}
.c-floater__link:hover {
  border-color: rgba(85, 129, 112, 0.3);
  color: var(--c-accent, #558170);
}
.c-floater__link .material-symbols-outlined {
  font-size: 18px;
  color: rgba(68, 72, 63, 0.5);
  transition: color 300ms;
}
.c-floater__link:hover .material-symbols-outlined {
  color: var(--c-accent, #558170);
}
.c-floater__link--primary {
  background: var(--c-accent, #558170);
  color: #fff;
  border: none;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.12em;
}
.c-floater__link--primary:hover {
  background: color-mix(in srgb, var(--c-accent, #558170) 80%, #000);
  color: #fff;
}
.c-floater__link--primary:hover .material-symbols-outlined {
  color: #fff;
}
.c-floater__link--primary .material-symbols-outlined {
  color: #fff;
}
.c-floater__link--icon {
  flex: 0 0 auto;
  padding: 0.5rem;
  min-width: 0;
  width: 36px;
  height: 36px;
  justify-content: center;
  gap: 0;
  background: var(--c-accent, #558170);
  color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.c-floater__link--icon .material-symbols-outlined {
  font-size: 20px;
  color: #fff;
}
.c-floater__link--icon:hover {
  background: color-mix(in srgb, var(--c-accent, #558170) 80%, #000);
  color: #fff;
}
.c-floater__link--icon:hover .material-symbols-outlined {
  color: #fff;
}
@media (max-width: 767px) {
  .c-floater {
    width: calc(100% - 1rem);
    max-width: none;
    padding: 0.5rem;
    gap: 0.375rem;
    justify-content: space-around;
  }
  .c-floater__link {
    flex: 1 1 0;
    justify-content: center;
    padding: 0.5rem 0.5rem;
    font-size: 9px;
    letter-spacing: 0.06em;
    gap: 0.375rem;
  }
  .c-floater__link .material-symbols-outlined {
    font-size: 16px;
  }
  .c-floater__link .c-floater__label--full {
    display: none;
  }
  .c-floater__link .c-floater__label--short {
    display: inline-block;
  }
  .c-floater__link--primary {
    padding: 0.625rem 0.5rem;
  }
  .c-floater__link--icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    padding: 0.5rem;
    border-radius: 50%;
  }
}

.c-social-rail {
  position: fixed;
  right: calc(1.5rem + 8px);
  bottom: 6.5rem;
  z-index: 80;
  pointer-events: none;
  transform: scale(0.7) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  transition: opacity 700ms, transform 700ms;
}
.c-social-rail--visible {
  opacity: 1;
  transform: scale(0.7) translateY(0);
}
@media (min-width: 768px) {
  .c-social-rail {
    right: calc(2.5rem + 8px);
    bottom: 0;
    transform: none;
    opacity: 1;
  }
  .c-social-rail--visible {
    transform: none;
  }
}
.c-social-rail__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
@media (min-width: 768px) {
  .c-social-rail__list {
    border-radius: 999px 999px 0 0;
    border-bottom: 0;
  }
}
.c-social-rail__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #1B1C19;
  transition: opacity 400ms, transform 400ms;
  opacity: 0.7;
}
.c-social-rail__link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.c-social-rail__link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}
.c-social-rail__link svg path,
.c-social-rail__link svg circle,
.c-social-rail__link svg rect,
.c-social-rail__link svg polygon {
  fill: currentColor;
}

.c-footer {
  width: 100%;
  background: #30312E;
  color: rgba(255, 255, 255, 0.75);
}
.c-footer__col-title {
  color: rgba(255, 255, 255, 0.5) !important;
}
.c-footer__link, .c-footer__contact, .c-footer__contact a {
  color: rgba(255, 255, 255, 0.65) !important;
}
.c-footer__social a {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}
.c-footer__social a:hover {
  background: var(--c-accent, #558170);
  color: var(--c-accent-on, #fff);
}
.c-footer__copyright {
  border-top: 0;
  color: rgba(255, 255, 255, 0.4);
}
.c-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}
@media (min-width: 768px) {
  .c-footer__inner {
    padding: 6rem 3rem 4rem;
  }
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .c-footer__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
  }
}
.c-footer__col-title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: rgba(68, 72, 63, 0.4);
  margin-bottom: 1.5rem;
  display: block;
}
.c-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.c-footer__link {
  font-size: 11px;
  color: rgba(68, 72, 63, 0.6);
  text-decoration: none;
  transition: color 300ms;
}
.c-footer__link:hover {
  color: var(--c-accent, #558170);
}
.c-footer__contact {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(68, 72, 63, 0.7);
}
.c-footer__contact a {
  color: inherit;
  text-decoration: none;
}
.c-footer__contact a:hover {
  color: var(--c-accent, #558170);
}
.c-footer__contact-block {
  margin-top: 0.9rem;
}
.c-footer__contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 9px;
  color: rgba(68, 72, 63, 0.45);
  margin-bottom: 0.25rem;
}
.c-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  color: inherit;
}
.c-footer__social-icon svg {
  width: 14px;
  height: 14px;
}
.c-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.c-footer__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F0EEE9;
  color: #44483F;
  transition: background 300ms, color 300ms;
}
.c-footer__social a:hover {
  background: var(--c-accent, #558170);
  color: #fff;
}
.c-footer__social a svg {
  width: 16px;
  height: 16px;
}
.c-footer__copyright {
  border-top: 0;
  padding: 2rem;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.c-footer__copyright a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.c-footer__copyright a:hover {
  color: var(--c-accent, #558170);
}

.c-hero__media--fallback {
  background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15), transparent 60%), radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.25), transparent 55%), linear-gradient(135deg, var(--c-accent, #558170) 0%, var(--c-accent-2, #DF9B6A) 100%);
}

.c-contact {
  background: #FBF9F4;
  color: #1B1C19;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 4rem);
}
.c-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 900px) {
  .c-contact__inner {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}
.c-contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.c-contact__block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.c-contact__label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #44483F;
}
.c-contact__value {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #1B1C19;
}
.c-contact__value a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--c-accent, #558170);
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}
.c-contact__value a:hover {
  color: var(--c-accent, #558170);
}
.c-contact__cta {
  margin-top: 1rem;
}
.c-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  background: var(--c-accent, #558170);
  color: var(--c-accent-on, #FFFFFF);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.c-contact__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.c-contact__btn .material-symbols-outlined {
  font-size: 1.2rem;
}
.c-contact__map {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.c-contact__map-frame {
  width: 100%;
  height: clamp(360px, 55vh, 560px);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background: #F0EEE9;
}
.c-contact__map-link {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
}
.c-contact__map-link a {
  color: #44483F;
  text-decoration: none;
}
.c-contact__map-link a:hover {
  color: var(--c-accent, #558170);
}

.c-availability {
  background: #FBF9F4;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 4vw, 4rem);
}
.c-availability__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.c-availability__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.c-availability__head-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--c-accent, #558170);
  margin-bottom: 1rem;
}
.c-availability__head-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  margin: 0;
  color: #1B1C19;
}
.c-availability__embed {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  padding: clamp(0.75rem, 1.5vw, 1.25rem);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 24px 60px -20px rgba(50, 66, 36, 0.25), 0 8px 20px -10px rgba(50, 66, 36, 0.15);
  border: 1px solid rgba(85, 129, 112, 0.12);
}
.c-availability__embed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-accent, #558170) 0%, var(--c-accent-2, #DF9B6A) 100%);
  z-index: 1;
}
.c-availability__embed iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: 16px;
  background: #fff;
}
.c-availability__note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: #44483F;
}
.c-availability__note a {
  color: var(--c-accent, #558170);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.c-availability__empty {
  text-align: center;
  font-style: italic;
  color: #44483F;
}

.c-offer-request {
  background: linear-gradient(180deg, #FBF9F4 0%, #F5F3EE 100%);
  padding: clamp(3rem, 7vw, 6rem) 1rem;
}
.c-offer-request__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-offer-request__inner--center {
  align-items: center;
  text-align: center;
}
.c-offer-request__intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  color: rgba(27, 28, 25, 0.7);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}
.c-offer-request__intro p {
  margin: 0 0 0.75rem;
}
.c-offer-request__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1B1C19;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 28, 25, 0.3);
  transition: border-color 200ms;
}
.c-offer-request__back:hover {
  border-bottom-color: #1B1C19;
}

.c-wizard {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: #1B1C19;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.c-wizard__panel {
  display: none;
  padding: 0;
  animation: cWizardFadeIn 350ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-wizard__panel.is-active {
  display: block;
}
.c-wizard__panel-head {
  margin-bottom: 2rem;
  text-align: center;
}
.c-wizard__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #558170;
  font-weight: 600;
}
.c-wizard__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #1B1C19;
}
.c-wizard__lead {
  margin: 0 auto;
  max-width: 540px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(27, 28, 25, 0.65);
}
.c-wizard__group {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .c-wizard__group.is-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-wizard__group[data-category]:not([hidden]) {
  animation: cWizardFadeIn 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-wizard__field {
  position: relative;
}
.c-wizard__field[data-span=full] {
  grid-column: 1/-1;
}
.c-wizard__err {
  margin-top: 0.5rem;
  color: #BA1A1A;
  font-size: 0.8125rem;
  font-weight: 500;
  display: none;
}
.c-wizard__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem 0 0;
  background: transparent;
  border-top: 0;
}
.c-wizard__nav-spacer {
  display: none;
}

@keyframes cWizardFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-catlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-catlist__item {
  margin: 0;
}

.c-catrow {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 200, 188, 0.6);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1), border-color 200ms, background 200ms;
}
.c-catrow__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  inset: 0;
}
.c-catrow__num {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(27, 28, 25, 0.45);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 2.25rem;
  transition: color 220ms;
}
.c-catrow__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.c-catrow__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1B1C19;
  letter-spacing: -0.01em;
}
.c-catrow__desc {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(27, 28, 25, 0.6);
  max-width: 52ch;
}
.c-catrow__icon {
  width: 56px;
  height: 56px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #D5E2D0;
  transition: background 220ms, transform 220ms;
}
.c-catrow__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: filter 220ms;
}
@media (min-width: 720px) {
  .c-catrow__icon {
    display: flex;
  }
}
.c-catrow__plus {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 28, 25, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(27, 28, 25, 0.55);
  transition: all 220ms cubic-bezier(0.23, 1, 0.32, 1);
  flex-shrink: 0;
}
.c-catrow__plus .material-symbols-outlined {
  font-size: 22px;
  transition: opacity 180ms, transform 220ms;
}
.c-catrow__plus .c-catrow__check-icon {
  position: absolute;
  opacity: 0;
  transform: scale(0.6);
}
.c-catrow:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(85, 129, 112, 0.45);
  box-shadow: 0 18px 40px -16px rgba(85, 129, 112, 0.28);
}
.c-catrow:hover .c-catrow__num {
  color: #558170;
}
.c-catrow:hover .c-catrow__plus {
  border-color: #558170;
  color: #558170;
  transform: rotate(90deg);
}
.c-catrow:hover .c-catrow__icon {
  transform: scale(1.05);
}
.c-catrow:has(.c-catrow__input:checked) {
  background: linear-gradient(135deg, rgba(85, 129, 112, 0.08), rgba(255, 255, 255, 0.9));
  border-color: #558170;
  box-shadow: 0 0 0 3px rgba(85, 129, 112, 0.18), 0 18px 40px -18px rgba(85, 129, 112, 0.35);
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__num {
  color: #558170;
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__title {
  color: #324224;
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__icon {
  background: #558170;
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__icon img {
  filter: brightness(0) invert(1);
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__plus {
  background: #558170;
  border-color: #558170;
  color: #fff;
  transform: none;
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__plus .c-catrow__plus-icon {
  opacity: 0;
  transform: scale(0.6) rotate(90deg);
}
.c-catrow:has(.c-catrow__input:checked) .c-catrow__plus .c-catrow__check-icon {
  opacity: 1;
  transform: scale(1);
}
.c-catrow .c-catrow__input:focus-visible ~ .c-catrow__plus {
  outline: 2px solid #558170;
  outline-offset: 3px;
}
@media (max-width: 540px) {
  .c-catrow {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem 1rem;
    padding: 1rem 1.125rem;
  }
  .c-catrow__icon {
    display: none;
  }
  .c-catrow__title {
    font-size: 1.375rem;
  }
  .c-catrow__desc {
    font-size: 0.875rem;
  }
  .c-catrow__plus {
    width: 38px;
    height: 38px;
  }
}

.js-cat-layer.is-invalid .c-catrow {
  border-color: rgba(186, 26, 26, 0.5);
}

.c-fieldlist__inner {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: fieldnum;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-fieldrow {
  counter-increment: fieldnum;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 200, 188, 0.6);
  border-radius: 18px;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.c-fieldrow__num {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(27, 28, 25, 0.45);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 2.25rem;
  line-height: 1.6;
}
.c-fieldrow__num::before {
  content: counter(fieldnum, decimal-leading-zero);
}
.c-fieldrow__body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 0;
}
.c-fieldrow__label {
  margin: 0;
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: #1B1C19;
}
.c-fieldrow__control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  color: #1B1C19;
  background: #fff;
  border: 1.5px solid #C5C8BC;
  border-radius: 12px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
}
.c-fieldrow__control::placeholder {
  color: rgba(27, 28, 25, 0.4);
}
.c-fieldrow__control:hover {
  border-color: #75786E;
}
.c-fieldrow__control:focus {
  border-color: #558170;
  box-shadow: 0 0 0 3px rgba(85, 129, 112, 0.15);
}
.c-fieldrow__control--textarea {
  min-height: 110px;
  resize: vertical;
}
.c-fieldrow__control--select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #44483F 50%), linear-gradient(135deg, #44483F 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 1.25rem) 1.25rem, calc(100% - 0.85rem) 1.25rem;
  background-size: 6px 6px, 6px 6px;
}
.c-fieldrow__control--file {
  cursor: pointer;
  padding: 0.625rem 0.875rem;
}
.c-fieldrow__inline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #1B1C19;
}
.c-fieldrow__inline input[type=checkbox] {
  appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid #75786E;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 150ms, border-color 150ms;
}
.c-fieldrow__inline input[type=checkbox]:hover {
  border-color: #558170;
}
.c-fieldrow__inline input[type=checkbox]:checked {
  background: #558170;
  border-color: #558170;
}
.c-fieldrow__inline input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-fieldrow.is-invalid {
  border-color: #BA1A1A;
  background: rgba(186, 26, 26, 0.04);
}
.c-fieldrow.is-invalid .c-fieldrow__control {
  border-color: #BA1A1A;
}
@media (max-width: 540px) {
  .c-fieldrow {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem 1.125rem;
  }
  .c-fieldrow__num {
    font-size: 0.9375rem;
    min-width: auto;
  }
  .c-fieldrow__label {
    font-size: 1.125rem;
  }
}

.c-fcontact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .c-fcontact {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-fcontact__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-fcontact__field.is-full {
  grid-column: 1/-1;
}
.c-fcontact__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(27, 28, 25, 0.65);
}
.c-fcontact__input {
  width: 100%;
  padding: 1rem 2.5rem 1rem 0;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #1B1C19;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(27, 28, 25, 0.18);
  border-radius: 0;
  outline: none;
  transition: border-color 200ms;
}
.c-fcontact__input::placeholder {
  color: rgba(27, 28, 25, 0.32);
  font-weight: 300;
}
.c-fcontact__input:hover {
  border-bottom-color: rgba(27, 28, 25, 0.4);
}
.c-fcontact__input:focus {
  border-bottom-color: #558170;
}
.c-fcontact__input:-webkit-autofill, .c-fcontact__input:-webkit-autofill:hover, .c-fcontact__input:-webkit-autofill:focus, .c-fcontact__input:-webkit-autofill:active, .c-fcontact__input:autofill {
  -webkit-text-fill-color: #1B1C19;
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important;
  background-clip: text;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #1B1C19;
}
.c-fcontact__inputwrap {
  position: relative;
  display: block;
}
.c-fcontact__status {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}
.c-fcontact__status.is-ok {
  color: #558170;
}
.c-fcontact__status.is-err {
  color: #BA1A1A;
}
.c-fcontact__hint {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(27, 28, 25, 0.55);
}
.c-fcontact__field.is-invalid .c-fcontact__input {
  border-bottom-color: #BA1A1A;
}
.c-fcontact__field.is-valid .c-fcontact__input {
  border-bottom-color: #558170;
}

.c-choice__legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B1C19;
  margin: 0 0 0.625rem;
}

.c-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.c-pill {
  position: relative;
  cursor: pointer;
}
.c-pill input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 1.5px solid rgba(27, 28, 25, 0.18);
  border-radius: 9999px;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #1B1C19;
  transition: all 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.c-pill:hover span {
  border-color: #558170;
  color: #558170;
  transform: translateY(-1px);
}
.c-pill input[type=radio]:checked + span {
  background: #558170;
  border-color: #558170;
  color: #FFFFFF;
  box-shadow: 0 8px 22px -10px rgba(85, 129, 112, 0.55);
}
.c-pill input[type=radio]:focus-visible + span {
  outline: 2px solid #558170;
  outline-offset: 3px;
}

.c-input {
  position: relative;
  display: block;
}
.c-input__control {
  width: 100%;
  padding: 1.25rem 2.5rem 0.5rem 1rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: #1B1C19;
  background: #F5F3EE;
  border: 1.5px solid #C5C8BC;
  border-radius: 12px;
  outline: none;
  transition: border-color 200ms, background 200ms, box-shadow 200ms;
}
.c-input__control::placeholder {
  color: transparent;
}
.c-input__control:hover {
  border-color: #75786E;
}
.c-input__control:focus {
  background: #fff;
  border-color: #558170;
  box-shadow: 0 0 0 3px rgba(85, 129, 112, 0.15);
}
.c-input textarea.c-input__control {
  min-height: 110px;
  resize: vertical;
  padding-top: 1.5rem;
}
.c-input select.c-input__control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #44483F 50%), linear-gradient(135deg, #44483F 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) 1.5rem, calc(100% - 0.85rem) 1.5rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.c-input input[type=file].c-input__control--file {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.c-input__label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(27, 28, 25, 0.55);
  font-size: 0.9375rem;
  font-weight: 400;
  transition: top 150ms, font-size 150ms, color 150ms, transform 150ms;
  background: transparent;
  padding: 0 0.25rem;
}
.c-input__label--static {
  position: static;
  transform: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #44483F;
}
.c-input__control:focus + .c-input__label, .c-input__control:not(:placeholder-shown) + .c-input__label, textarea.c-input__control + .c-input__label, select.c-input__control + .c-input__label {
  top: 0.5rem;
  transform: translateY(0);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #44483F;
  font-weight: 600;
}
textarea.c-input__control + .c-input__label, select.c-input__control + .c-input__label {
  top: 0.5rem;
}
.c-input__status {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}
.c-input__status.is-ok {
  color: #558170;
}
.c-input__status.is-err {
  color: #BA1A1A;
}
.c-input__hint {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(27, 28, 25, 0.55);
}
.c-input.is-invalid .c-input__control {
  border-color: #BA1A1A;
  background: rgba(186, 26, 26, 0.04);
}
.c-input.is-valid .c-input__control {
  border-color: #558170;
}

.c-form__req {
  color: #BA1A1A;
  margin-left: 4px;
  font-weight: 500;
}

.c-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: #F5F3EE;
  border: 1.5px solid #C5C8BC;
  border-radius: 14px;
  transition: border-color 200ms, background 200ms;
}
.c-checkbox.is-invalid {
  border-color: #BA1A1A;
  background: rgba(186, 26, 26, 0.04);
}
.c-checkbox input[type=checkbox] {
  appearance: none;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 0.05rem;
  border: 1.5px solid #75786E;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 150ms, border-color 150ms;
}
.c-checkbox input[type=checkbox]:hover {
  border-color: #558170;
}
.c-checkbox input[type=checkbox]:checked {
  background: #558170;
  border-color: #558170;
}
.c-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid #558170;
  outline-offset: 2px;
}
.c-checkbox label {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(27, 28, 25, 0.78);
  cursor: pointer;
}
.c-checkbox label a {
  color: #558170;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-checkbox label a:hover {
  color: #1B1C19;
}
.c-checkbox--gdpr label {
  font-size: 0.75rem;
}

.c-summary {
  margin: 0 0 1.5rem;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.c-summary__row {
  display: grid;
  grid-template-columns: minmax(140px, 32%) 1fr;
  gap: 1.25rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(27, 28, 25, 0.08);
}
.c-summary__row:last-child {
  border-bottom: none;
}
.c-summary__key {
  margin: 0;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(27, 28, 25, 0.55);
  font-weight: 600;
  align-self: center;
}
.c-summary__val {
  margin: 0;
  font-size: 1rem;
  color: #1B1C19;
  font-weight: 400;
  word-break: break-word;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 250ms, transform 150ms, box-shadow 200ms, color 250ms;
}
.c-button .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}
.c-button--primary {
  background: #558170;
  color: #FFFFFF;
}
.c-button--primary:hover {
  background: color-mix(in srgb, #558170 85%, #000);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(85, 129, 112, 0.5);
}
.c-button--primary:active {
  transform: translateY(0);
}
.c-button--ghost {
  background: transparent;
  color: #44483F;
  border: 1.5px solid transparent;
}
.c-button--ghost:hover {
  color: #1B1C19;
  background: rgba(27, 28, 25, 0.06);
}
.c-button:focus-visible {
  outline: 2px solid #558170;
  outline-offset: 3px;
}
.c-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.g-recaptcha {
  margin-top: 1rem;
  transform-origin: 0 0;
}
@media (max-width: 639px) {
  .g-recaptcha {
    transform: scale(0.85);
    height: 65px;
  }
}

.c-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-promo-modal[hidden] {
  display: none;
}
.c-promo-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}
.c-promo-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 720px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s ease;
}
.c-promo-modal__dialog--image {
  background: transparent;
  box-shadow: none;
  max-width: min(92vw, 820px);
}
.c-promo-modal__dialog--content {
  padding: 2.5rem 2rem;
}
.c-promo-modal.is-open .c-promo-modal__dialog {
  transform: translateY(0) scale(1);
}
.c-promo-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1B1C19;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.c-promo-modal__close:hover {
  background: #fff;
  transform: scale(1.06);
}
.c-promo-modal__image-link {
  display: block;
  line-height: 0;
}
.c-promo-modal__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.c-promo-modal__body {
  text-align: center;
}
.c-promo-modal__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  color: #1B1C19;
}
.c-promo-modal__content {
  margin: 0 auto 1.5rem;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.6;
  color: #44483F;
}
.c-promo-modal__content p:last-child {
  margin-bottom: 0;
}
.c-promo-modal__cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--c-accent, #558170);
  color: var(--c-accent-on, #FFFFFF);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.c-promo-modal__cta:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

body.is-promo-modal-open {
  overflow: hidden;
}

:root {
  --c-accent: #558170;
  --c-accent-2: #DF9B6A;
  --c-accent-on: #FFFFFF;
}

[data-section=wesela] {
  --c-accent: #558170;
  --c-accent-2: #DF9B6A;
  --c-accent-on: #FFFFFF;
}

[data-section=eventy] {
  --c-accent: #B5462A;
  --c-accent-2: #E07A53;
  --c-accent-on: #FFFFFF;
}

[data-section=biznes] {
  --c-accent: #1B1C19;
  --c-accent-2: #44483F;
  --c-accent-on: #FFFFFF;
}

[data-section] .text-primary {
  color: var(--c-accent) !important;
}
[data-section] .bg-primary {
  background-color: var(--c-accent) !important;
}
[data-section] .border-primary {
  border-color: var(--c-accent) !important;
}
[data-section] .fill-primary {
  fill: var(--c-accent) !important;
}
[data-section] .stroke-primary {
  stroke: var(--c-accent) !important;
}
[data-section] .hover\:text-primary:hover {
  color: var(--c-accent) !important;
}
[data-section] .hover\:bg-primary:hover {
  background-color: var(--c-accent) !important;
}
[data-section] .hover\:border-primary:hover {
  border-color: var(--c-accent) !important;
}

.c-section-subsection {
  scroll-margin-top: 6rem;
}
.c-section-subsection__eyebrow {
  color: var(--c-accent, #558170);
}
.c-section-subsection__lead {
  line-height: 1.6;
}
.c-section-subsection + .c-section-subsection {
  background-color: #F5F3EE;
}
.c-section-subsection + .c-section-subsection + .c-section-subsection {
  background-color: #FBF9F4;
}

.c-hero {
  position: relative;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.c-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.c-hero__media img,
.c-hero__media picture,
.c-hero__media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
}
.c-hero__eyebrow {
  display: block;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  margin-bottom: 2rem;
}
.c-hero__title {
  color: #fff;
  line-height: 1.05;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  font-size: clamp(2.24rem, 6.4vw, 6rem);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
}
.c-hero__title .italic {
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 767px) {
  .c-hero__title {
    font-size: clamp(1.6rem, 7vw, 2.24rem);
    margin-bottom: 2rem;
  }
}
.c-hero__lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .c-hero__lead {
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .c-hero__lead {
    display: none;
  }
}
.c-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .c-hero__actions {
    flex-direction: row;
  }
}
.c-hero__btn {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 500ms;
}
.c-hero__btn:hover {
  background: #fff;
  color: #1B1C19;
}
.c-hero__btn--ghost {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0;
  padding: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}
.c-hero__btn--ghost:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.c-hero__scroll {
  display: none;
}
.c-hero .swiper,
.c-hero .swiper-wrapper {
  min-height: 100dvh;
  height: auto;
}
.c-hero .swiper {
  overflow: clip;
  width: 100%;
  max-width: 100%;
}
.c-hero .swiper-slide, .c-hero__slide {
  position: relative;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 100dvh;
  padding: 8rem 1rem 7rem;
  box-sizing: border-box;
}
@media (max-width: 767px) and (orientation: portrait) {
  .c-hero {
    min-height: 100dvh;
  }
  .c-hero .swiper,
  .c-hero .swiper-wrapper {
    min-height: 100dvh;
  }
  .c-hero .swiper-slide, .c-hero__slide {
    min-height: 100dvh;
    align-items: flex-end;
    padding: 7rem 1rem 9rem;
  }
}
.c-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.c-segmentation {
  display: flex;
  flex-direction: column;
  background: #FBF9F4;
  min-height: 100dvh;
}
@media (min-width: 768px) {
  .c-segmentation {
    flex-direction: row;
    min-height: 80vh;
  }
}
.c-segmentation__stack {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .c-segmentation__stack {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.c-segmentation__col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .c-segmentation__col--wide {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.c-segmentation__col--split {
  flex: 1;
}
.c-segmentation__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
  min-height: 33.3333333333dvh;
  text-decoration: none;
  color: #fff;
  background: var(--c-accent, #2a2a2a);
}
@media (min-width: 768px) {
  .c-segmentation__tile {
    min-height: 0;
  }
}
.c-segmentation__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: background 700ms;
}
.c-segmentation__tile:hover::before {
  background: rgba(0, 0, 0, 0.3);
}
.c-segmentation__tile img,
.c-segmentation__tile picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.c-segmentation__tile:hover img {
  transform: scale(1.1);
}
.c-segmentation__tile--small {
  min-height: 33.3333333333dvh;
}
@media (min-width: 768px) {
  .c-segmentation__tile--small {
    min-height: 0;
  }
}
.c-segmentation__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.c-segmentation__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .c-segmentation__title {
    font-size: 3.75rem;
  }
}
.c-segmentation__title--small {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .c-segmentation__title--small {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
}
.c-segmentation__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .c-segmentation__subtitle {
    font-size: 1rem;
  }
}

.c-about {
  padding: 5rem 2rem;
  background: #F5F3EE;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-about {
    padding: 7rem 5rem;
  }
}
.c-about__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.c-about__lead--small {
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
.c-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .c-about__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .c-about__col-text {
    grid-column: span 5/span 5;
  }
}
@media (min-width: 1024px) {
  .c-about__col-media {
    grid-column: span 7/span 7;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    position: relative;
  }
}
.c-about__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent, #558170);
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  display: block;
}
.c-about__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: #1B1C19;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.c-about__title i {
  font-style: italic;
  font-weight: 300;
}
.c-about__lead {
  color: #44483F;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 28rem;
}
.c-about__numbers {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.c-about__number {
  display: block;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  color: #DF9B6A;
  line-height: 1;
}
.c-about__number-label {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(68, 72, 63, 0.5);
  margin-top: 0.25rem;
  display: block;
}
.c-about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.c-about__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F0EEE9;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
}
.c-about__pill .material-symbols-outlined {
  color: var(--c-accent, #558170);
  font-size: 18px;
}
.c-about__pill span:not(.material-symbols-outlined) {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: #44483F;
}
.c-about__media-1 img,
.c-about__media-1 picture,
.c-about__media-1 picture img, .c-about__media-2 img,
.c-about__media-2 picture,
.c-about__media-2 picture img, .c-about__media-3 img,
.c-about__media-3 picture,
.c-about__media-3 picture img {
  width: 100%;
  object-fit: cover;
}
.c-about__media-1 {
  padding-top: 4rem;
}
.c-about__media-1 img {
  aspect-ratio: 3/4;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.c-about__media-2 {
  padding-bottom: 4rem;
}
.c-about__media-2 img {
  aspect-ratio: 4/5;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  left: -2rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .c-about__media-2 img {
    left: -4rem;
  }
}
.c-about__media-3 {
  grid-column: span 2/span 2;
  margin-top: -5rem;
  display: flex;
  justify-content: flex-end;
}
.c-about__media-3 img {
  width: 75%;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.c-why {
  padding: 7rem 2rem;
  background: #FBF9F4;
}
@media (min-width: 768px) {
  .c-why {
    padding: 9rem 2rem;
  }
}
.c-why__inner {
  max-width: 72rem;
  margin: 0 auto;
}
.c-why__head {
  text-align: left;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .c-why__head {
    text-align: center;
  }
}
.c-why__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent, #558170);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.c-why__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.c-why__lead {
  color: #44483F;
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.c-why__swiper {
  overflow: visible;
}
@media (min-width: 768px) {
  .c-why__swiper {
    overflow: hidden;
  }
}
.c-why__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-why__list {
    flex-direction: row;
    gap: 0;
    max-width: none;
    align-items: stretch;
  }
}
.c-why__pagination {
  display: none;
}
@media (min-width: 768px) {
  .c-why__pagination {
    position: static;
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  .c-why__pagination .swiper-pagination-bullet {
    background: var(--c-accent, #558170);
  }
}
.c-why__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 768px) {
  .c-why__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    height: auto;
  }
}
.c-why__body {
  flex: 1;
}
@media (min-width: 768px) {
  .c-why__body {
    flex: none;
  }
}
.c-why__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(213, 226, 208, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-why__icon {
    margin-bottom: 1.25rem;
  }
}
.c-why__icon .material-symbols-outlined {
  font-size: 1.875rem;
  color: var(--c-accent, #558170);
}
.c-why__heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-why__heading {
    font-size: 1rem;
  }
}
.c-why__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(68, 72, 63, 0.7);
}

.c-styles {
  padding: 7rem 0;
  background: #F5F3EE;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-styles {
    padding: 9rem 0;
  }
}
.c-styles__head {
  max-width: 72rem;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  text-align: center;
}
.c-styles__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent, #558170);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.c-styles__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.c-styles__lead {
  color: #44483F;
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-styles__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.c-styles__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.c-styles__card img,
.c-styles__card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}
.c-styles__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
  z-index: 1;
  transition: background 500ms;
}
.c-styles__card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}
.c-styles__card:hover img {
  transform: scale(1.1);
}
.c-styles__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
}
.c-styles__heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-styles__heading {
    font-size: 1.875rem;
  }
}
.c-styles__claim {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-styles__cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 300ms;
}
.c-styles__card:hover .c-styles__cta {
  color: #fff;
}

.c-video {
  position: relative;
  height: 75vh;
  background: #1B1C19;
  overflow: hidden;
}
.c-video__media {
  position: absolute;
  inset: 0;
}
.c-video__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(85, 129, 112, 0.15);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
  transition: opacity 400ms;
}
.c-video__media img,
.c-video__media picture,
.c-video__media picture img,
.c-video__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}
.c-video__media video {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.c-video__media .c-video__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms ease, visibility 0s linear 0s;
}
.c-video__media .c-video__poster picture, .c-video__media .c-video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c-video__media--playing .c-video__poster {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}
.c-video__media--playing::after {
  opacity: 0;
}
.c-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 3rem;
}
.c-video__overlay--hidden {
  display: none;
}
.c-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 500ms;
  color: #fff;
}
.c-video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}
.c-video__play .material-symbols-outlined {
  font-size: 3rem;
  transition: transform 300ms;
}
.c-video__play:hover .material-symbols-outlined {
  transform: scale(1.1);
}
.c-video__label {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 10px;
  margin-top: 2rem;
}
.c-video__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 2.5rem;
  text-align: center;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .c-video__title {
    font-size: 2.25rem;
  }
}

.c-spaces {
  padding: 5rem 0;
  background: #FBF9F4;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-spaces {
    padding: 7rem 0;
  }
}
.c-spaces__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.c-spaces__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.c-spaces__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent, #558170);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.c-spaces__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
.c-spaces__lead {
  color: #44483F;
  margin-top: 1rem;
  max-width: 32rem;
  line-height: 1.7;
}
.c-spaces__texts {
  display: block;
}
.c-spaces__more {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  color: #1B1C19;
  text-decoration: none;
  border-bottom: 1px solid rgba(27, 28, 25, 0.3);
  padding-bottom: 0.25rem;
  transition: border-color 300ms;
  display: none;
}
@media (min-width: 768px) {
  .c-spaces__more {
    display: inline-block;
  }
}
.c-spaces__more:hover {
  border-color: #1B1C19;
}
.c-spaces__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.c-spaces__card img,
.c-spaces__card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}
.c-spaces__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
  z-index: 1;
  transition: background 500ms;
}
.c-spaces__card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}
.c-spaces__card:hover img {
  transform: scale(1.1);
}
.c-spaces__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
}
.c-spaces__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.c-spaces__icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.5rem;
}
.c-spaces__heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-spaces__heading {
    font-size: 1.875rem;
  }
}
.c-spaces__claim {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.c-events {
  padding: 8rem 2rem;
  background: #F5F3EE;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-events {
    padding: 11rem 5rem;
  }
}
.c-events__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.c-events__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .c-events__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .c-events__col-text {
    grid-column: span 5/span 5;
  }
}
@media (min-width: 1024px) {
  .c-events__col-media {
    grid-column: span 7/span 7;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    position: relative;
  }
}
.c-events__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #DF9B6A;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  display: block;
}
.c-events__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: #1B1C19;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}
.c-events__title i {
  font-style: italic;
  font-weight: 300;
}
.c-events__lead {
  color: #44483F;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 28rem;
}
.c-events__lead--small {
  font-size: 0.875rem;
  margin-bottom: 3rem;
}
.c-events__numbers {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}
.c-events__number {
  display: block;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 2.25rem;
  color: #DF9B6A;
  line-height: 1;
}
.c-events__number-label {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(68, 72, 63, 0.5);
  margin-top: 0.25rem;
  display: block;
}
.c-events__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.c-events__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #F0EEE9;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
}
.c-events__pill .material-symbols-outlined {
  color: #DF9B6A;
  font-size: 18px;
}
.c-events__pill span:not(.material-symbols-outlined) {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: #44483F;
}
.c-events__cta {
  margin-top: 3rem;
}
.c-events__cta a {
  display: inline-block;
  padding: 1rem 2rem;
  background: #DF9B6A;
  color: #fff;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 300ms;
}
.c-events__cta a:hover {
  background: rgba(223, 155, 106, 0.85);
}
.c-events__media-1 img,
.c-events__media-1 picture img, .c-events__media-2 img,
.c-events__media-2 picture img, .c-events__media-3 img,
.c-events__media-3 picture img {
  width: 100%;
  object-fit: cover;
}
.c-events__media-1 {
  padding-top: 4rem;
}
.c-events__media-1 img {
  aspect-ratio: 3/4;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.c-events__media-2 {
  padding-bottom: 4rem;
}
.c-events__media-2 img {
  aspect-ratio: 4/5;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  left: -2rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .c-events__media-2 img {
    left: -4rem;
  }
}
.c-events__media-3 {
  grid-column: span 2/span 2;
  margin-top: -5rem;
  display: flex;
  justify-content: flex-end;
}
.c-events__media-3 img {
  width: 75%;
  aspect-ratio: 16/9;
}
.c-events-cards {
  padding: 0 2rem 7rem;
  background: #F5F3EE;
}
@media (min-width: 768px) {
  .c-events-cards {
    padding: 0 2rem 9rem;
  }
}
.c-events-cards__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.c-events-cards__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.c-events-cards__card img,
.c-events-cards__card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}
.c-events-cards__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
  z-index: 1;
}
.c-events-cards__card:hover img {
  transform: scale(1.1);
}
.c-events-cards__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
}
.c-events-cards__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.c-events-cards__icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.5rem;
}
.c-events-cards__heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-events-cards__heading {
    font-size: 1.875rem;
  }
}
.c-events-cards__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.c-packages {
  padding: 5rem 2rem;
  background: rgba(223, 155, 106, 0.05);
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-packages {
    padding: 7rem 2rem;
  }
}
.c-packages__inner {
  max-width: 80rem;
  margin: 0 auto;
}
.c-packages__head {
  text-align: left;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-packages__head {
    text-align: center;
  }
}
.c-packages__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #DF9B6A;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.c-packages__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
.c-packages__lead {
  color: #44483F;
  margin-top: 1rem;
  max-width: 32rem;
  line-height: 1.7;
}
.c-packages__price {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.c-packages__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 300ms;
}
.c-packages__link .material-symbols-outlined {
  font-size: 16px;
}
.c-packages__link:hover {
  color: #fff;
}
.c-packages__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.c-packages__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 50%, transparent);
  z-index: 1;
  pointer-events: none;
}
.c-packages__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-packages__media picture, .c-packages__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
}
.c-packages__card:hover .c-packages__media img {
  transform: scale(1.1);
}
.c-packages__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
}
.c-packages__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.c-packages__icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.5rem;
}
.c-packages__heading {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-packages__heading {
    font-size: 1.875rem;
  }
}
.c-packages__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.c-logos {
  padding: 3rem 0;
  background: #FBF9F4;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-logos {
    padding: 4rem 0;
  }
}
.c-logos__head {
  max-width: 72rem;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .c-logos__head {
    text-align: center;
  }
}
.c-logos__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(68, 72, 63, 0.4);
  font-size: 10px;
  display: block;
}
.c-logos__viewport {
  position: relative;
}
.c-logos__viewport::before, .c-logos__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}
@media (min-width: 768px) {
  .c-logos__viewport::before, .c-logos__viewport::after {
    width: 10rem;
  }
}
.c-logos__viewport::before {
  left: 0;
  background: linear-gradient(to right, #FBF9F4, transparent);
}
.c-logos__viewport::after {
  right: 0;
  background: linear-gradient(to left, #FBF9F4, transparent);
}
.c-logos__track {
  display: flex;
  width: max-content;
  animation: c-logos-marquee 35s linear infinite;
}
.c-logos__track:hover {
  animation-play-state: paused;
}
.c-logos__set {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .c-logos__set {
    gap: 6rem;
  }
}
.c-logos__logo {
  flex-shrink: 0;
  height: 28px;
  width: auto;
  opacity: 0.25;
  filter: grayscale(1);
  transition: opacity 400ms, filter 400ms;
}
.c-logos__logo:hover {
  opacity: 0.6;
  filter: grayscale(0);
}

@keyframes c-logos-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-testimonials {
  padding: 4rem 2rem;
  background: #FBF9F4;
}
@media (min-width: 768px) {
  .c-testimonials {
    padding: 5rem 2rem;
  }
}
.c-testimonials__inner {
  max-width: 64rem;
  margin: 0 auto;
}
.c-testimonials__head {
  text-align: left;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-testimonials__head {
    text-align: center;
  }
}
.c-testimonials__eyebrow {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-accent, #558170);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.c-testimonials__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}
.c-testimonials__desc {
  color: #44483F;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}
.c-instagram {
  padding: 8rem 0;
  background: #F5F3EE;
  overflow: hidden;
}
.c-instagram__head {
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.c-instagram__head-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-instagram__head-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
}
.c-instagram__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 1.875rem;
  font-style: italic;
}
.c-instagram__handle {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  color: rgba(68, 72, 63, 0.4);
}
.c-instagram__widget {
  padding: 0 2rem;
}

.c-cta {
  padding: 8rem 2rem;
  background: #FBF9F4;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-cta {
    padding: 11rem 2rem;
  }
}
.c-cta__inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.c-cta__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  margin-bottom: 3rem;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
}
.c-cta__title i {
  font-style: italic;
  font-weight: 300;
}
.c-cta__lead {
  color: #44483F;
  margin-bottom: 3.5rem;
  font-size: 1.125rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-cta__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .c-cta__actions {
    flex-direction: row;
  }
}
.c-cta__btn {
  padding: 1.25rem 3rem;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 300ms, color 300ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.c-cta__btn .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}
.c-cta__btn--primary {
  background: var(--c-accent, #558170);
  color: var(--c-accent-on, #fff);
}
.c-cta__btn--primary:hover {
  background: color-mix(in srgb, var(--c-accent, #558170) 80%, #000);
}
.c-cta__btn--ghost {
  border: 1px solid rgba(117, 120, 110, 0.3);
  color: #1B1C19;
}
.c-cta__btn--ghost:hover {
  background: #EAE8E3;
}

.c-text-page {
  padding: 8rem 2rem;
  background: #FBF9F4;
  min-height: 60vh;
}
.c-text-page__inner {
  max-width: 48rem;
  margin: 0 auto;
}
.c-text-page__title {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  color: #1B1C19;
}
.c-text-page__content {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #44483F;
}
.c-text-page__content h2, .c-text-page__content h3, .c-text-page__content h4 {
  color: #1B1C19;
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.c-text-page__content h2 {
  font-size: 1.875rem;
}
.c-text-page__content h3 {
  font-size: 1.5rem;
}
.c-text-page__content h4 {
  font-size: 1.25rem;
}
.c-text-page__content p {
  margin-bottom: 1.25rem;
}
.c-text-page__content ul, .c-text-page__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.c-text-page__content li {
  margin-bottom: 0.5rem;
}
.c-text-page__content a {
  color: var(--c-accent, #558170);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-text-page__content a:hover {
  color: color-mix(in srgb, var(--c-accent, #558170) 70%, #000);
}
.c-text-page__content blockquote {
  border-left: 3px solid var(--c-accent, #558170);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #1B1C19;
}
.c-text-page__content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

.c-knowledge {
  position: relative;
}

.c-knowledge-listing > .max-w-7xl > div + div {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 4rem;
}