/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

*,*::before,*::after{box-sizing:border-box}:root{--accent: #9a4b2f;--accent-hover: #7f3d26;--header-height: 120px;--radius-band: 48px;--radius-footer: 48px;--radius-media: 16px;--radius-card: 12px;--radius-sm: 4px}@media(max-width: 1279.98px){:root{--radius-band: 32px;--radius-footer: 32px;--radius-media: 12px}}@media(max-width: 1023.98px){:root{--header-height: 80px}}@media(max-width: 767.98px){:root{--radius-band: 20px;--radius-footer: 20px;--radius-media: 10px;--radius-card: 8px}}body{margin:0;background-color:#fff}body.has-sticky-header{padding-top:var(--header-height)}body.menu-open{overflow:hidden}.section-bg--grey{padding:140px 0}@media(max-width: 1279.98px){.section-bg--grey{padding:100px 0}}@media(max-width: 767.98px){.section-bg--grey{padding:60px 0}}.section-bg--grey{background-color:#f7f4ef}.section-bg--grey-white,.section-bg--white-grey{position:relative}.section-bg--grey-white>*,.section-bg--white-grey>*{position:relative;z-index:1}.section-bg--grey-white::before,.section-bg--white-grey::before{content:"";position:absolute;top:0;left:0;width:100%;height:50%;z-index:0}.section-bg--grey-white::after,.section-bg--white-grey::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:50%;z-index:0}.section-bg--grey-white::before{background-color:#f7f4ef}.section-bg--grey-white::after{background-color:#fff}.section-bg--white-grey::before{background-color:#fff}.section-bg--white-grey::after{background-color:#f7f4ef}.section--no-margin{margin-bottom:0 !important}.band-radius-top{border-radius:var(--radius-band) var(--radius-band) 0 0}.band-radius-bottom{border-radius:0 0 var(--radius-band) var(--radius-band)}.band-radius-footer{border-radius:var(--radius-footer) var(--radius-footer) 0 0}.section-bg--grey+.section.section-bg--grey{border-top-left-radius:0;border-top-right-radius:0}.section-bg--grey+.section.section-bg--grey>.band-radius-top{border-top-left-radius:0;border-top-right-radius:0}@font-face{font-family:"Gaegu";font-style:normal;font-weight:700;font-display:swap;src:url("../fonts/gaegu-bold-latin.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:"LXGW WenKai Mono TC";font-style:normal;font-weight:400;font-display:swap;src:url("../fonts/lxgw-wenkai-mono-tc-latin.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.container{width:100%;max-width:1440px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.row{display:flex;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}.col{width:100%;padding-left:12px;padding-right:12px;flex:1 0 0%}.col-auto{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:auto}.col-1{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:8.3333333333%}.col-2{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:16.6666666667%}.col-3{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:25%}.col-4{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:33.3333333333%}.col-5{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:41.6666666667%}.col-6{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:50%}.col-7{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:58.3333333333%}.col-8{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:66.6666666667%}.col-9{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:75%}.col-10{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:83.3333333333%}.col-11{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:91.6666666667%}.col-12{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:100%}.offset-0{margin-left:0}.offset-1{margin-left:8.3333333333%}.offset-2{margin-left:16.6666666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.3333333333%}.offset-5{margin-left:41.6666666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.3333333333%}.offset-8{margin-left:66.6666666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.3333333333%}.offset-11{margin-left:91.6666666667%}@media(min-width: 480px){.col-sm{width:100%;padding-left:12px;padding-right:12px;flex:1 0 0%}.col-sm-auto{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:auto}.col-sm-1{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:8.3333333333%}.col-sm-2{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:16.6666666667%}.col-sm-3{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:25%}.col-sm-4{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:33.3333333333%}.col-sm-5{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:41.6666666667%}.col-sm-6{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:50%}.col-sm-7{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:58.3333333333%}.col-sm-8{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:66.6666666667%}.col-sm-9{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:75%}.col-sm-10{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:83.3333333333%}.col-sm-11{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:91.6666666667%}.col-sm-12{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.3333333333%}.offset-sm-2{margin-left:16.6666666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.3333333333%}.offset-sm-5{margin-left:41.6666666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.3333333333%}.offset-sm-8{margin-left:66.6666666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.3333333333%}.offset-sm-11{margin-left:91.6666666667%}}@media(min-width: 768px){.col-md{width:100%;padding-left:12px;padding-right:12px;flex:1 0 0%}.col-md-auto{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:auto}.col-md-1{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:8.3333333333%}.col-md-2{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:16.6666666667%}.col-md-3{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:25%}.col-md-4{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:33.3333333333%}.col-md-5{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:41.6666666667%}.col-md-6{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:50%}.col-md-7{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:58.3333333333%}.col-md-8{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:66.6666666667%}.col-md-9{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:75%}.col-md-10{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:83.3333333333%}.col-md-11{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:91.6666666667%}.col-md-12{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.3333333333%}.offset-md-2{margin-left:16.6666666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.3333333333%}.offset-md-5{margin-left:41.6666666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.3333333333%}.offset-md-8{margin-left:66.6666666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.3333333333%}.offset-md-11{margin-left:91.6666666667%}}@media(min-width: 1024px){.col-lg{width:100%;padding-left:12px;padding-right:12px;flex:1 0 0%}.col-lg-auto{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:auto}.col-lg-1{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:8.3333333333%}.col-lg-2{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:16.6666666667%}.col-lg-3{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:25%}.col-lg-4{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:33.3333333333%}.col-lg-5{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:41.6666666667%}.col-lg-6{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:50%}.col-lg-7{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:58.3333333333%}.col-lg-8{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:66.6666666667%}.col-lg-9{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:75%}.col-lg-10{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:83.3333333333%}.col-lg-11{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:91.6666666667%}.col-lg-12{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.3333333333%}.offset-lg-2{margin-left:16.6666666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.3333333333%}.offset-lg-5{margin-left:41.6666666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.3333333333%}.offset-lg-8{margin-left:66.6666666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.3333333333%}.offset-lg-11{margin-left:91.6666666667%}}@media(min-width: 1280px){.col-xl{width:100%;padding-left:12px;padding-right:12px;flex:1 0 0%}.col-xl-auto{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:auto}.col-xl-1{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:8.3333333333%}.col-xl-2{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:16.6666666667%}.col-xl-3{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:25%}.col-xl-4{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:33.3333333333%}.col-xl-5{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:41.6666666667%}.col-xl-6{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:50%}.col-xl-7{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:58.3333333333%}.col-xl-8{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:66.6666666667%}.col-xl-9{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:75%}.col-xl-10{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:83.3333333333%}.col-xl-11{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:91.6666666667%}.col-xl-12{width:100%;padding-left:12px;padding-right:12px;flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.3333333333%}.offset-xl-2{margin-left:16.6666666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.3333333333%}.offset-xl-5{margin-left:41.6666666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.3333333333%}.offset-xl-8{margin-left:66.6666666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.3333333333%}.offset-xl-11{margin-left:91.6666666667%}}.grid-cards{display:grid;grid-template-columns:repeat(3, 1fr);gap:12px}@media(max-width: 1023.98px){.grid-cards{grid-template-columns:repeat(2, 1fr)}}@media(max-width: 767.98px){.grid-cards{grid-template-columns:1fr}}body{font-family:system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:400;font-size:16px;line-height:28px;color:#26201c;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}h1,.h1,h2,.h2,h3,.h3,h4,.h4{color:inherit;margin-top:0;text-wrap:pretty}h1,.h1,h2,.h2{font-weight:800;font-size:60px;line-height:64px}@media(max-width: 1279.98px){h1,.h1,h2,.h2{font-size:40px;line-height:46px}}@media(max-width: 767.98px){h1,.h1,h2,.h2{font-size:32px;line-height:38px}}.display-xl{font-weight:800;font-size:74px;line-height:90px}@media(max-width: 1279.98px){.display-xl{font-size:48px;line-height:52px}}@media(max-width: 767.98px){.display-xl{font-size:38px;line-height:42px}}h3,.h3{font-weight:700;font-size:24px;line-height:31px}h4,.h4{font-weight:700;font-size:20px;line-height:28px}p{margin-top:0;margin-bottom:1em}a{color:inherit;text-decoration:none;transition:color .2s ease}.lead{font-weight:400;font-size:18px;line-height:28px}.overline{font-weight:800;font-size:16px;line-height:28px;letter-spacing:.01em;text-transform:uppercase;color:#9a4b2f}.meta{font-weight:500;font-size:15px;line-height:28px}.small{font-weight:400;font-size:14px;line-height:23px}.text-primary{color:#9a4b2f}.text-white{color:#fff}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.btn{display:inline-flex;align-items:center;justify-content:center;height:46px;padding-inline:20px;border:0;border-radius:0;font-family:system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:16px;line-height:1;color:#fff;text-decoration:none;white-space:nowrap;cursor:pointer;transition:background-color .2s ease,color .2s ease}.btn:focus-visible{outline:2px solid #26201c;outline-offset:2px}.btn--accent{background-color:var(--accent)}.btn--accent:hover{background-color:var(--accent-hover);color:#fff}.btn--primary{background-color:#9a4b2f}.btn--primary:hover{background-color:#7f3d26;color:#fff}.btn--inverse{background-color:#fff;color:var(--accent)}.btn--inverse:hover{background-color:#f7f4ef;color:var(--accent)}.btn--inverse.is-navy{color:#26201c}.btn--inverse.is-navy:hover{color:var(--accent)}.filter-pill{display:inline-flex;align-items:center;height:38px;padding-inline:22px;border-radius:19px;font-weight:700;font-size:15px;line-height:1;color:#26201c;background-color:rgba(0,0,0,0);border:1.5px solid #b9cdf0;cursor:pointer;transition:background-color .18s,color .18s,border-color .18s}.filter-pill:hover,.filter-pill:focus-visible{color:var(--accent);border-color:var(--accent)}.filter-pill:focus-visible{outline:2px solid #26201c;outline-offset:2px}.filter-pill.is-active{color:#fff;background-color:var(--accent);border-color:var(--accent)}.filter-pill.is-active:hover,.filter-pill.is-active:focus-visible{color:#fff;background-color:var(--accent-hover);border-color:var(--accent-hover)}.arrow-link{display:inline-flex;align-items:center;gap:12px;font-family:system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:16px;line-height:1;color:#26201c;text-decoration:none}.arrow-link--primary{color:#9a4b2f}.arrow-link--white{color:#fff}.arrow-link--accent{color:var(--accent)}.arrow-link__icon{display:inline-flex;transition:transform .2s ease}.arrow-link__icon svg{display:block;stroke:currentColor;stroke-width:2.5px;fill:none}.arrow-link:hover .arrow-link__icon{transform:translateX(4px)}.wysiwyg{font-weight:400;font-size:16px;line-height:23px;color:#26201c}.wysiwyg>*:first-child{margin-top:0}.wysiwyg>*:last-child{margin-bottom:0}.wysiwyg h2{font-weight:800;font-size:60px;line-height:64px}@media(max-width: 1279.98px){.wysiwyg h2{font-size:40px;line-height:46px}}@media(max-width: 767.98px){.wysiwyg h2{font-size:32px;line-height:38px}}.wysiwyg h2{margin:63px 0 31px}.wysiwyg h3{font-weight:700;font-size:24px;line-height:31px;margin:45px 0 21px}.wysiwyg h4{font-weight:700;font-size:20px;line-height:28px;margin:34px 0 16px}.wysiwyg p{margin:0 0 23px}.wysiwyg strong,.wysiwyg b{font-weight:700;color:inherit}.wysiwyg a:not(.btn):not(.wp-block-button__link){color:#9a4b2f;text-decoration:underline;text-underline-offset:3px}.wysiwyg a:not(.btn):not(.wp-block-button__link):hover,.wysiwyg a:not(.btn):not(.wp-block-button__link):focus-visible{color:#26201c}.wysiwyg ul,.wysiwyg ol{margin:0 0 23px;padding-left:0}.wysiwyg ul{list-style:none}.wysiwyg ul li{position:relative;padding-left:18px}.wysiwyg ul li::before{content:"–";position:absolute;left:0}.wysiwyg ol{padding-left:20px}.wysiwyg li+li{margin-top:8px}.wysiwyg li>ul,.wysiwyg li>ol{margin-top:8px;margin-bottom:0}.wysiwyg img{display:block;max-width:100%;height:auto;border-radius:var(--radius-card)}.wysiwyg>img,.wysiwyg figure,.wysiwyg .wp-block-image{margin:58px 0 63px}.wysiwyg figure img{width:100%}.wysiwyg figcaption{font-weight:400;font-size:14px;line-height:23px;margin-top:12px;color:rgba(16,57,118,.7)}.wysiwyg video,.wysiwyg>iframe,.wysiwyg p>iframe{display:block;width:100%;aspect-ratio:16/9;height:auto;border:0;border-radius:var(--radius-card)}.wysiwyg .wp-block-embed{margin:58px 0 63px}.wysiwyg .wp-block-embed__wrapper{border-radius:var(--radius-card);overflow:hidden}.wysiwyg blockquote{margin:45px 0;padding-left:24px;border-left:3px solid #9a4b2f;font-weight:400;font-size:18px;line-height:28px}.wysiwyg table{width:100%;margin:45px 0;border-collapse:collapse}.wysiwyg table th,.wysiwyg table td{padding:12px 16px;border:1px solid #e4ded4;text-align:left}.wysiwyg table th{font-weight:700;background-color:#f7f4ef}.wysiwyg hr{margin:58px 0;border:0;border-top:1px solid #e4ded4}.wysiwyg p:has(>.btn),.wysiwyg .wp-block-buttons{display:flex;flex-wrap:wrap;gap:13px;margin:52px 0 0}.wysiwyg .wp-block-button__link{display:inline-flex;align-items:center;justify-content:center;height:46px;padding-inline:20px;border-radius:0;font-family:system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:16px;line-height:1;text-decoration:none;transition:background-color .2s ease}.wysiwyg .wp-block-button__link:not(.has-text-color){color:#fff}.wysiwyg .wp-block-button__link:not(.has-background){background-color:#9a4b2f}.wysiwyg .wp-block-button__link:not(.has-background):hover{background-color:#7f3d26}.header{--header-link: #9a4b2f;--header-link-active: #26201c;position:relative;z-index:100;background-color:rgba(0,0,0,0);transition:background-color .2s ease,box-shadow .2s ease}.header--overlay{position:absolute;top:0;left:0;right:0}@media(min-width: 1024px){.header--overlay:not(.header--on-light):not(.header--has-bg):not(.is-sticky){--header-link: #f7f4ef;--header-link-active: #ffffff}}.header--static{background-color:#f7f4ef}.header.is-sticky{--header-height: 80px;position:fixed;top:0;left:0;right:0;background-color:#fff;box-shadow:0 2px 12px rgba(38,32,28,.08)}.header--bg-white:not(.is-sticky){background-color:#fff}.header--bg-grey:not(.is-sticky),.header--bg-grey-rounded:not(.is-sticky){background-color:#f7f4ef}.header--bg-grey-rounded:not(.is-sticky){border-radius:var(--radius-band) var(--radius-band) 0 0}.header__inner{display:flex;align-items:center;gap:40px;height:var(--header-height);padding-inline:clamp(24px,7.3vw,140px);transition:height .2s ease}.header__logo{display:inline-flex;align-items:center;flex-shrink:0;margin-right:auto}.header__logo-img{display:block;max-height:105px;max-width:190px;width:auto;transition:max-height .2s ease}.header.is-sticky .header__logo-img{max-height:64px}.header__logo-light{display:none}@media(min-width: 1024px){.header--overlay:not(.header--has-bg):not(.is-sticky) .header__logo-light{display:block}.header--overlay:not(.header--has-bg):not(.is-sticky) .header__logo-dark{display:none}}.header__logo-text{font-weight:700;font-size:20px;line-height:28px;color:var(--header-link-active)}.header__panel{display:contents}.header__list{display:flex;align-items:center;gap:50px;list-style:none;margin:0;padding:0}.header__item{position:relative}.header__item:hover>.header__dropdown,.header__item:focus-within>.header__dropdown{display:block}.header__link{font-weight:700;font-size:20px;line-height:28px;display:inline-flex;align-items:center;color:var(--header-link);text-decoration:none;transition:color .2s ease}.header__link:hover{color:var(--header-link-active)}.header__link:focus-visible{outline:2px solid #26201c;outline-offset:2px}.header__item.is-active>.header__link{color:var(--header-link-active)}.header--overlay:not(.header--on-light):not(.header--has-bg):not(.is-sticky) .header__item.is-active>.header__link{text-decoration:underline;text-decoration-thickness:2.5px;text-underline-offset:8px}.header__chevron{display:inline-block;width:9px;height:9px;margin-left:10px;margin-top:-6px;border-right:2.5px solid currentColor;border-bottom:2.5px solid currentColor;transform:rotate(45deg)}.header__dropdown{display:none;position:absolute;top:calc(100% + 12px);left:0;min-width:240px;background-color:#fff;border-radius:var(--radius-card);box-shadow:0 8px 24px rgba(16,57,118,.12);list-style:none;margin:0;padding:14px 0;z-index:20}.header__dropdown::before{content:"";position:absolute;top:-12px;left:0;right:0;height:12px}.header__dropdown-link{font-family:system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:16px;line-height:1;display:block;padding:10px 24px;color:#9a4b2f;text-decoration:none;transition:color .2s ease}.header__dropdown-link:hover{color:#26201c}.header__dropdown-item.is-active>.header__dropdown-link{color:#26201c}.header__cta{flex-shrink:0}.header__burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;padding:8px;background:none;border:0;cursor:pointer;color:var(--header-link-active)}.header__burger span{display:block;height:2.5px;background-color:currentColor;border-radius:2.5px;transform-origin:center;transition:translate .18s cubic-bezier(0.4, 0, 0.2, 1) .18s,rotate .18s cubic-bezier(0.4, 0, 0.2, 1),opacity .18s cubic-bezier(0.4, 0, 0.2, 1),scale .18s cubic-bezier(0.4, 0, 0.2, 1) .18s}.header.is-open .header__burger span{transition:translate .18s cubic-bezier(0.4, 0, 0.2, 1),rotate .18s cubic-bezier(0.4, 0, 0.2, 1) .18s,opacity .18s cubic-bezier(0.4, 0, 0.2, 1) .18s,scale .18s cubic-bezier(0.4, 0, 0.2, 1)}.header.is-open .header__burger span:nth-child(1){translate:0 7.5px;rotate:45deg}.header.is-open .header__burger span:nth-child(2){opacity:0;scale:.2 1}.header.is-open .header__burger span:nth-child(3){translate:0 -7.5px;rotate:-45deg}@media(prefers-reduced-motion: reduce){.header__burger span,.header.is-open .header__burger span{transition:none}}@media(max-width: 1023.98px){.header{background-color:#fff}.header__logo-img{max-height:56px}.header__panel{display:none}.header.is-open{position:fixed;top:0;left:0;right:0}.header.is-open .header__panel{display:flex;flex-direction:column;position:fixed;top:var(--header-height);left:0;right:0;bottom:0;background-color:#fff;padding:20px clamp(24px,7.3vw,140px) 32px;overflow-y:auto;overscroll-behavior:contain;z-index:50}.header__nav{margin-bottom:32px}.header__list{flex-direction:column;align-items:flex-start;gap:16px}.header__dropdown{position:static;box-shadow:none;border-radius:0;padding:8px 0 0 16px}.header__dropdown::before{content:none}.header.is-open .header__item.has-children .header__dropdown{display:block}.header__chevron{display:none}.header__burger{display:flex}.header__cta{align-self:flex-start;margin-top:auto}}.footer{position:relative;z-index:2;overflow:hidden;background-color:#fff;padding:78px 40px 52px;color:#26201c}@media(max-width: 1279.98px){.footer{padding:60px 24px 40px}}@media(max-width: 767.98px){.footer{padding:48px 20px 32px}}.footer .container{position:relative;z-index:1}.footer__main{display:grid;grid-template-columns:484fr 363fr 284fr 309fr;align-items:start;margin-bottom:80px}@media(max-width: 1023.98px){.footer__main{grid-template-columns:1fr 1fr;gap:48px 40px;margin-bottom:56px}}@media(max-width: 479.98px){.footer__main{grid-template-columns:1fr;gap:40px}}.footer__col-title{font-weight:700;font-size:20px;line-height:28px;color:#9a4b2f;margin:0 0 22px}.footer__identity{padding-right:120px}@media(max-width: 1279.98px){.footer__identity{padding-right:40px}}@media(max-width: 1023.98px){.footer__identity{padding-right:0}}.footer__logo{display:inline-block;margin-bottom:32px}.footer__logo img{display:block;width:auto;max-width:190px;max-height:112px}.footer__logo-text{font-weight:700;font-size:20px;line-height:28px;color:#26201c}.footer__pitch-title{font-weight:700;font-size:20px;line-height:28px;color:#9a4b2f;margin:0 0 14px}.footer__pitch-text{font-weight:400;font-size:18px;line-height:28px;color:#26201c;margin:0;max-width:300px}.footer__pitch-text strong{font-weight:700;color:#9a4b2f}.footer__pitch-text em{font-style:normal;font-weight:700;color:var(--accent)}.footer__nav,.footer__secondary,.footer__hours{padding-top:130px}@media(max-width: 1279.98px){.footer__nav,.footer__secondary,.footer__hours{padding-top:90px}}@media(max-width: 1023.98px){.footer__nav,.footer__secondary,.footer__hours{padding-top:0}}.footer__nav-list,.footer__secondary-list,.footer__legal-list,.footer__social-list{list-style:none;margin:0;padding:0}.footer__nav-list{display:flex;flex-direction:column;gap:20px}.footer__nav-link{font-weight:400;font-size:18px;line-height:28px;line-height:1;color:#26201c}.footer__nav-link:hover{color:#9a4b2f}.footer__secondary-list{display:flex;flex-direction:column;gap:20px;margin-bottom:38px}.footer__secondary-link{display:inline-flex;align-items:center;gap:9px;width:fit-content;font-weight:400;font-size:18px;line-height:28px;line-height:1;font-weight:600;color:#26201c;text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1.5px}.footer__secondary-link:hover{color:#9a4b2f}.footer__secondary-chevron{display:inline-block;width:8px;height:8px;border-top:2.5px solid currentColor;border-right:2.5px solid currentColor;transform:rotate(45deg)}.footer__contact{display:flex;flex-direction:column;align-items:flex-start;min-height:336px;margin-top:86px;background-color:#f7f4ef;border-radius:var(--radius-card);padding:44px 40px 40px;border:1px solid rgba(38,32,28,.1)}@media(max-width: 1279.98px){.footer__contact{margin-top:46px}}@media(max-width: 1023.98px){.footer__contact{min-height:0;margin-top:0}}.footer__pin{display:block;margin-bottom:22px}.footer__address{font-weight:700;font-size:17px;line-height:24px;color:#26201c;margin:0 0 2px}.footer__email{display:inline-block;font-size:17px;line-height:24px;font-weight:700;color:var(--accent);text-decoration:underline;text-underline-offset:3px}.footer__email:hover{color:var(--accent-hover)}.footer__phone{gap:12px;margin-top:24px}.footer__phone-icon{display:block;flex-shrink:0}.footer__bottom{position:relative;display:flex;justify-content:space-between;align-items:center;gap:40px}@media(max-width: 1023.98px){.footer__bottom{flex-direction:column;align-items:flex-start;gap:28px}}.footer__social{display:flex;align-items:center;gap:20px}.footer__social-title{font-weight:400;font-size:18px;line-height:28px;line-height:1;color:#26201c}.footer__social-list{display:flex;align-items:center;gap:16px}.footer__social-link{display:inline-flex;align-items:center;justify-content:center;height:20px;color:#9a4b2f}.footer__social-link:hover{color:#26201c}.footer__social-link .social-icon{display:block;height:16px;width:auto;max-width:22px}.footer__legal{display:flex;align-items:center;gap:22px;font-weight:400;font-size:14px;line-height:23px;line-height:1;color:#26201c}@media(max-width: 767.98px){.footer__legal{flex-wrap:wrap;gap:12px 22px}}.footer__legal-list{display:flex;align-items:center;gap:22px}@media(max-width: 767.98px){.footer__legal-list{flex-wrap:wrap;gap:12px 22px}}.footer__legal-link{color:#26201c;text-decoration:underline;text-underline-offset:3px}.footer__legal-link:hover{color:#9a4b2f}.footer__agency{display:inline-flex;align-items:center;gap:6px;color:var(--accent);font-weight:600;white-space:nowrap}.footer__agency .tiz-logo{height:13px;width:auto;color:#9a4b2f}.footer__nav-link:focus-visible,.footer__secondary-link:focus-visible,.footer__legal-link:focus-visible,.footer__social-link:focus-visible,.footer__email:focus-visible,.footer__agency:focus-visible,.footer__logo:focus-visible{outline:2px solid #26201c;outline-offset:2px}:is(.section,main):has(+.footer),:is(.section,main):has(+.footer)>:last-child{border-bottom:var(--radius-footer) solid rgba(0,0,0,0);margin-bottom:calc(-1*var(--radius-footer))}.attente{position:relative;display:flex;flex-direction:column;align-items:center;min-height:100vh;min-height:100svh;padding:80px 15px 60px;overflow:hidden;text-align:center}@media(max-width: 1023.98px){.attente{padding:50px 15px 0}}.attente__overline,.attente__subtitle{margin:0;font-family:"Gaegu",system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:22px;line-height:24px;text-transform:uppercase;color:#555}@media(max-width: 1023.98px){.attente__overline,.attente__subtitle{font-size:20px}}.attente__logo{width:100%;max-width:708px;margin:15px 0 0}.attente__logo img{display:block;width:100%;height:auto}.attente__subtitle{margin-top:15px}.attente__text{max-width:492px;margin:25px 0 0;font-family:"LXGW WenKai Mono TC","Courier New",monospace;font-size:16px;line-height:normal;color:#3d3d3d}@media(max-width: 1023.98px){.attente__text{max-width:332px}}.attente__insta{display:flex;align-items:center;justify-content:center;margin-top:20px;color:#000;transition:transform .2s ease}.attente__insta:hover,.attente__insta:focus-visible{transform:scale(1.15) rotate(-3deg)}@media(max-width: 1023.98px){.attente__insta{margin-top:25px}}.attente-instagram-icon{display:block;width:24px;height:auto}.attente__cta{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;width:209px;height:67px;margin-top:26px;background:url("../img/attente/btn-nuage.svg") no-repeat center/100% 100%;font-family:"Gaegu",system-ui,-apple-system,"Segoe UI",sans-serif;font-weight:700;font-size:16px;letter-spacing:.09em;text-transform:uppercase;white-space:nowrap;color:#000;transition:transform .2s ease}.attente__cta:hover,.attente__cta:focus-visible{transform:scale(1.05) rotate(-1.5deg)}@media(max-width: 1023.98px){.attente__cta{margin:35px 0;font-size:15px}}.attente__insta+.attente__cta{margin-top:30px}@media(max-width: 1023.98px){.attente__insta+.attente__cta{margin:25px 0 35px}}.attente__illu{flex:none;display:none;pointer-events:none;background-repeat:no-repeat;background-size:contain}@media(min-width: 1024px){.attente__illu--fusee{display:block;position:absolute;left:0;bottom:0;width:339px;aspect-ratio:678/728;background-image:url("../img/attente/illu-fusee.png");background-position:left bottom}}@media(min-width: 1024px)and (max-width: 1279.98px){.attente__illu--fusee{width:250px}}@media(min-width: 1024px){.attente__illu--lune{display:block;position:absolute;right:2.5%;bottom:0;width:258px;aspect-ratio:516/1011;background-image:url("../img/attente/illu-lune.png");background-position:right bottom}}@media(min-width: 1024px)and (max-width: 1279.98px){.attente__illu--lune{width:190px}}@media(max-width: 1023.98px){.attente__illu--mobile{display:block;width:calc(100% + 30px);margin:auto -15px 0;aspect-ratio:896/704;background-image:url("../img/attente/illu-mobile.png");background-position:center bottom;background-size:cover}}.page-hero__band{overflow:hidden;background-color:#f7f4ef}.page-hero__breadcrumbs{padding:20px 0;font-weight:500;font-size:15px;line-height:28px}.page-hero__banner{position:relative;display:flex;align-items:center;min-height:340px}@media(max-width: 767.98px){.page-hero__banner{min-height:240px}}.page-hero__banner-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.page-hero__overlay{position:absolute;inset:0;background:linear-gradient(to top, rgba(23, 19, 15, 0.75) 0%, rgba(23, 19, 15, 0.25) 100%)}.page-hero__content{position:relative;z-index:1;padding-top:80px;padding-bottom:80px;color:#fff}@media(max-width: 767.98px){.page-hero__content{padding-top:48px;padding-bottom:48px}}.page-hero__subtitle{font-weight:400;font-size:18px;line-height:28px;margin:16px 0 0}.page-hero__actions{margin-top:24px}.page-hero__intro{font-weight:400;font-size:18px;line-height:28px;max-width:760px;padding:48px 0}@media(max-width: 767.98px){.page-hero__intro{padding:32px 0}}.text-content{padding:60px 0}@media(max-width: 767.98px){.text-content{padding:40px 0}}.text-content__inner{max-width:860px;margin:0 auto}.text-content__title{margin-bottom:32px}
