@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 1%;
  font-weight: 300;
}

img {
  width: 100%;
  max-width: fit-content;
  height: auto;
}

.wysiwyg h2,
.h2 {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.2;
}

.text-coffee {
  color: #735441;
}

.text-russet {
  color: #7c3205;
}

.text-bloodRed {
  color: #571807;
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.font-inherit {
  font-size: inherit;
}

.h-full {
  height: 100%;
}

.wysiwyg,
.wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #735441;
}
.wysiwyg a,
.wp-block-column a {
  color: #7c3205;
  text-decoration: underline;
}
.wysiwyg a:hover, .wysiwyg a:focus,
.wp-block-column a:hover,
.wp-block-column a:focus {
  text-decoration: none;
}
.wysiwyg ul,
.wysiwyg ol,
.wp-block-column ul,
.wp-block-column ol {
  padding-left: 20px;
}
.wysiwyg strong,
.wp-block-column strong {
  font-weight: bold;
}
.wysiwyg em,
.wp-block-column em {
  font-style: italic;
}
.wysiwyg .alignleft,
.wp-block-column .alignleft {
  float: left;
  margin-right: 20px;
}
.wysiwyg .alignright,
.wp-block-column .alignright {
  float: left;
  margin-right: 20px;
}
.wysiwyg .aligncenter,
.wp-block-column .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

.small {
  font-size: 14px;
  line-height: 120%;
}

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

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.button {
  border-radius: 10px 0;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  padding: 9px 12px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .button {
    text-align: center;
    width: 100%;
  }
}
.button:hover, .button:focus {
  text-decoration: none;
}
.button--russet {
  background-color: transparent;
  border: 1px solid #7c3205;
  color: #7c3205;
}
.button--russet:hover, .button--russet:focus {
  background-color: #7c3205;
  color: #fff;
}
.button--white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}
.button--white:hover, .button--white:focus {
  background-color: #fff;
  color: #7c3205;
}

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

.input {
  border: 1px solid #c4c4c4;
  border-radius: 10px 0;
  font-size: inherit;
  line-height: inherit;
  padding: 8px;
}

.enlarge-link {
  position: relative;
}
.enlarge-link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .wrapper {
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.header {
  background-image: url(./images/hero.JPG);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 390px;
  padding: 50px 40px;
  position: relative;
}
.header .logo {
  display: none;
}
.header .logonohome {
  position: relative;
  min-width: 250px;
}
@media only screen and (max-width: 768px) {
  .header .logonohome {
    max-width: 180px;
    min-width: auto;
    position: relative;
    top: -10px;
  }
}
.home .header {
  height: 100vh;
}
.home .header .logo {
  display: block;
}
.home .header .logonohome {
  display: none;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2d0c03;
  opacity: 0.5;
  z-index: 0;
}
.header nav {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header nav {
    display: none;
  }
  .header nav.is-open {
    background-color: #2d0c03;
    display: flex;
    flex-direction: column;
    left: 0;
    height: 100dvh;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 1;
  }
  .header nav .menu-close {
    background-color: transparent;
    border: 0;
    color: #fff;
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
  }
  .header nav .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .header nav .menu-close {
    display: none;
  }
}
.header nav .menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}
.header nav .menu-item-has-children {
  align-items: center;
  display: flex;
  gap: 3px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header nav .menu-item-has-children::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJtNiA5IDYgNiA2LTYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+);
    mask-size: contain;
    mask-repeat: no-repeat;
  }
  .header nav .menu-item-has-children:hover > ul, .header nav .menu-item-has-children:focus-within > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.header nav .menu-item-has-children ul {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(87, 24, 7, 0.8);
  min-width: 220px;
  z-index: 2;
  padding: 15px 0;
  gap: 15px;
}
.header nav .menu-item-has-children ul a {
  padding: 0px 15px;
  display: block;
  font-size: 14px;
}
.header nav .menu-item-has-children ul .sub-menu {
  position: static;
  background: none;
  min-width: auto;
  padding: 0;
  gap: 0;
  display: flex;
}
.header ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.header .burger {
  background-color: transparent;
  border: 0;
  color: #fff;
  position: absolute;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .header .burger {
    display: none;
  }
}
.header a {
  color: #fff;
  text-decoration: none;
}
.header a:hover, .header a:focus {
  text-decoration: underline;
}
.header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__menu-wrapper {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.footer {
  background-color: #571807;
  color: #fff;
  padding: 40px 0 110px;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 40px;
  }
}
.footer a {
  color: #fff;
}
.footer__logo {
  min-width: 315px;
}
@media only screen and (max-width: 415px) {
  .footer__logo {
    min-width: auto;
  }
}
.footer__content, .footer__links {
  align-items: flex-end;
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .footer__content, .footer__links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 415px) {
  .footer__content, .footer__links {
    align-items: left;
    text-align: left;
  }
}
.footer__links {
  align-items: flex-start;
}
.footer__links, .footer__links > div {
  width: 100%;
}
.footer h2.lead {
  margin-bottom: 20px;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.footer a {
  text-decoration: none;
}
.footer a:hover, .footer a:focus {
  text-decoration: underline;
}

.newsletter {
  background-color: #7c3205;
  background-image: url("./images/newsletter.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  color: #fff;
  padding: 80px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .newsletter {
    padding: 40px 0;
  }
}
.newsletter::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7c3205;
  opacity: 0.6;
  z-index: 0;
}
.newsletter__content {
  max-width: 670px;
  position: relative;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.newsletter__group {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .newsletter__group {
    flex-direction: column;
  }
}
.newsletter__group .input {
  flex: 1;
}
.newsletter .field {
  flex: 1;
}
.newsletter h2.h2 {
  margin-bottom: 10px;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}
.testimonials h2.h2 {
  color: #7c3205;
  margin-bottom: 40px;
}
.testimonials__list {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1100px) {
  .testimonials__list {
    flex-direction: column;
  }
}
.testimonials__item {
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  position: relative;
}
.testimonials__item::after {
  aspect-ratio: 1;
  border-radius: inherit;
  content: "";
  display: block;
  width: 250px;
  background-color: #7c3205;
  position: absolute;
  top: -10px;
  left: 65px;
  transform: rotate(170deg);
  z-index: -1;
}
@media only screen and (max-width: 1100px) {
  .testimonials__item::after {
    left: auto;
    right: 10px;
    top: -10px;
    transform: rotate(45deg);
    width: 120px;
  }
}
.testimonials__item:nth-child(3n+1)::after {
  background-color: #f88601;
}
.testimonials__item:nth-child(3n+2)::after {
  background-color: #fff2bd;
}
.testimonials__item:nth-child(3n+3)::after {
  background-color: #7c3205;
}
.testimonials__text {
  flex: 1;
  font-style: italic;
}
.testimonials__author {
  font-weight: bold;
}
.testimonials__author::before {
  content: "— ";
  display: inline-block;
  margin-right: 5px;
}
.testimonials__cta {
  display: flex;
  justify-content: center;
}

.quote {
  background-color: #571807;
  background-image: url(./images/newsletter.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 140px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .quote {
    padding: 60px 0;
  }
}
.quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.quote__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.quote__cite {
  font-size: 32px;
  font-weight: light;
  line-height: 120%;
}
.quote__footer {
  font-weight: bold;
}
.quote__footer::before {
  content: "— ";
  display: inline-block;
  margin-right: 5px;
}

.services {
  padding-bottom: 80px;
}
.services h2.h2 {
  color: #7c3205;
}
.services__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
@media only screen and (max-width: 768px) {
  .services__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}
.services__item {
  background-color: #fff;
  border-radius: 40px 0;
  box-shadow: 0 0 100px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  position: relative;
}
.services__item::after {
  aspect-ratio: 1;
  bottom: -5px;
  border-radius: 60px;
  content: "";
  display: block;
  height: 190px;
  left: -10px;
  position: absolute;
  transition: background-color 0.3s ease;
  transform: rotate(15deg);
  z-index: -1;
}
.services__item:nth-child(3n+1)::after {
  background-color: #f88601;
}
.services__item:nth-child(3n+2)::after {
  background-color: #fff2bd;
}
.services__item:nth-child(3n+3)::after {
  background-color: #571807;
}
.services__item img {
  border-radius: 40px 0;
  filter: brightness(0.8);
  transition: all 0.3s ease-in-out;
}
.services__item:hover img {
  filter: brightness(1.1);
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  padding: 30px 30px 40px 30px;
}
.services__content h3 {
  color: #7c3205;
  font-weight: bold;
  line-height: 1.2;
}
.services__content .read-more {
  color: #7c3205;
  text-decoration: underline;
}
.services__content .read-more:hover, .services__content .read-more:focus {
  text-decoration: none;
}
.services__content .read-more:hover::after, .services__content .read-more:focus::after {
  transform: translateX(5px);
}
.services__content .read-more::after {
  content: "→";
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.services__cta {
  text-align: center;
}

.welcome {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media only screen and (min-width: 1024px) {
  .welcome {
    padding-bottom: 80px;
    padding-top: 60px;
  }
}
.welcome .wysiwyg {
  color: #735441;
}
.welcome .wysiwyg h2 {
  color: #7c3205;
}
.welcome__container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .welcome__container {
    flex-direction: column;
    gap: 20px;
  }
}
.welcome__image {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .welcome__image {
    top: -170px;
  }
}
@media only screen and (min-width: 1024px) {
  .welcome__image::before, .welcome__image::after {
    aspect-ratio: 1;
    border-radius: 40px;
    content: "";
    display: block;
    border-radius: 40px;
    left: 0;
    position: absolute;
    top: 0;
    width: 250px;
    z-index: -1;
  }
  .welcome__image::before {
    background-color: #571807;
    transform: rotate(-25deg);
  }
  .welcome__image::after {
    background-color: #f88601;
    transform: rotate(-9deg);
  }
}
.welcome__image img {
  border-radius: 40px;
}
@media only screen and (max-width: 1024px) {
  .welcome__image img {
    object-fit: cover;
    aspect-ratio: 1;
    width: 250px;
  }
}
.welcome .button {
  text-decoration: none;
}

.faq-accordion {
  margin-bottom: 1em;
}

.faq-question {
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  outline: none;
  padding: 1em;
  text-align: left;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

.faq-question[aria-expanded=true] {
  background-color: #f9f9f9;
}

.faq-answer {
  padding: 1em;
  border-left: 2px solid #735441;
  background: #fff;
}

.sitemap ul {
  padding-left: 20px;
}

.partners__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .partners__list {
    gap: 10px;
  }
}
.partners__item {
  border: 1px solid #c4c4c4;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 40px;
}
@media only screen and (max-width: 768px) {
  .partners__item {
    border-radius: 20px;
    padding: 20px;
  }
}

.events__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .events__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.events .event-description {
  margin-bottom: 16px;
}
.events__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-size: 14px;
  list-style: none;
  margin-top: auto;
  padding: 0;
}
.events__meta li {
  align-items: center;
  display: flex;
}
.events__meta li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: currentColor;
}
.events__where {
  width: 100%;
}
.events__where::before {
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLW1hcC1waW4taWNvbiBsdWNpZGUtbWFwLXBpbiI+PHBhdGggZD0iTTIwIDEwYzAgNC45OTMtNS41MzkgMTAuMTkzLTcuMzk5IDExLjc5OWExIDEgMCAwIDEtMS4yMDIgMEM5LjUzOSAyMC4xOTMgNCAxNC45OTMgNCAxMGE4IDggMCAwIDEgMTYgMCIvPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTAiIHI9IjMiLz48L3N2Zz4=);
}
.events__when::before {
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNhbGVuZGFyLWljb24gbHVjaWRlLWNhbGVuZGFyIj48cGF0aCBkPSJNOCAydjQiLz48cGF0aCBkPSJNMTYgMnY0Ii8+PHJlY3Qgd2lkdGg9IjE4IiBoZWlnaHQ9IjE4IiB4PSIzIiB5PSI0IiByeD0iMiIvPjxwYXRoIGQ9Ik0zIDEwaDE4Ii8+PC9zdmc+);
}
.events__pricing::before {
  mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWJhZGdlLWV1cm8taWNvbiBsdWNpZGUtYmFkZ2UtZXVybyI+PHBhdGggZD0iTTMuODUgOC42MmE0IDQgMCAwIDEgNC43OC00Ljc3IDQgNCAwIDAgMSA2Ljc0IDAgNCA0IDAgMCAxIDQuNzggNC43OCA0IDQgMCAwIDEgMCA2Ljc0IDQgNCAwIDAgMS00Ljc3IDQuNzggNCA0IDAgMCAxLTYuNzUgMCA0IDQgMCAwIDEtNC43OC00Ljc3IDQgNCAwIDAgMSAwLTYuNzZaIi8+PHBhdGggZD0iTTcgMTJoNSIvPjxwYXRoIGQ9Ik0xNSA5LjRhNCA0IDAgMSAwIDAgNS4yIi8+PC9zdmc+);
}

.contact-form__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .contact-form__inner {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form .mb-40 {
    margin-bottom: 0px;
  }
  .contact-form .mt-40 {
    margin-top: 10px;
  }
  .contact-form button {
    margin-top: 20px;
  }
}

input,
textarea {
  border: 1px solid #c4c4c4;
  border-radius: 10px 0;
  font-size: 16px;
  margin-top: 8px;
  padding: 10px;
  width: 100%;
}
input:focus,
textarea:focus {
  outline: #7c3205;
}

textarea {
  resize: none;
}

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