* {
  --color-text: #fff;
  --color-link: #F9C3A4;
  --color-background: $colorBg;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: #623e27;
  color: #fff;
}

section.default-content {
  padding: 2rem;
}
section.default-content img {
  max-width: 100%;
  border-radius: 1rem;
}
section.default-content h1 {
  font-size: 2.5rem;
  margin-top: 0;
}
section.default-content h2 {
  font-size: 2rem;
}
section.default-content h3 {
  font-size: 1.5;
}
@media screen and (min-width: 769px) {
  section.default-content {
    padding: 4rem 2rem;
  }
  section.default-content img {
    border-radius: 2rem;
  }
  section.default-content h1 {
    font-size: 4rem;
    font-weight: 400;
  }
  section.default-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
  }
}

h1,
h2,
h3 {
  font-family: "Yanone Kaffeesatz", sans-serif;
}

h1 {
  font-size: 4rem;
  line-height: 100%;
}

a {
  text-decoration: none;
  color: var(--color-link);
}

.bg-wine {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(42, 18, 3, 0.7450980392)), to(rgba(79, 35, 7, 0)));
  background: linear-gradient(to bottom, rgba(42, 18, 3, 0.7450980392), rgba(79, 35, 7, 0));
}

.wrapper {
  max-width: 80rem;
  margin: 0 auto;
}

.wrapper-small {
  max-width: 60rem;
  margin: 0 auto;
}

.wrapper-large {
  max-width: 95rem;
  margin: 0 auto;
}

article.default {
  padding: 2rem;
}

.main-nav {
  display: none;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) {
  .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
  }
  .main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  .main-nav h1 {
    font-size: 1.9rem;
  }
}

.cp-intro {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 20rem auto;
  grid-template-rows: 20rem auto;
}
.cp-intro h1 {
  font-size: 2rem;
}
.cp-intro_content {
  padding: 2rem;
}
.cp-intro_media {
  background: var(--pass-background);
  opacity: 0.7;
  background-size: cover;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.cp-intro img {
  width: 100%;
}
.cp-intro .u-logo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 7rem 2rem auto;
  grid-template-columns: 7rem auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  .cp-intro {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: initial;
    grid-template-rows: initial;
  }
  .cp-intro > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .cp-intro > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .cp-intro h1 {
    font-size: 3rem;
  }
  .cp-intro_content {
    padding: 4rem;
  }
  .cp-intro_media {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
    border-radius: 2rem;
  }
}

main {
  padding: 0;
}
main h1 {
  font-size: 4rem;
  margin: 2rem;
  font-weight: 400;
}

.cp-service {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 20rem auto;
  grid-template-rows: 20rem auto;
      grid-template-areas: "media" "content";
}
.cp-service_content {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  background-color: #452410;
  grid-area: content;
  padding: 2rem;
}
.cp-calendar > .cp-service_content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.cp-service_content h2 {
  margin-top: 0;
}
.cp-service_media {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: media;
  background: var(--pass-background);
  opacity: 0.8;
  background-size: cover;
  background-position: center;
}
.cp-calendar > .cp-service_media {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (min-width: 769px) {
  .cp-service {
    border-radius: 2rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 769px) {
  .main-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 0 3rem 3rem 3rem;
  }
}
.cp-calendar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 0fr;
  grid-template-columns: 3fr 0fr;
      grid-template-areas: "content media";
}
.cp-calendar_content {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: content;
  padding: 2rem;
}
.cp-calendar > .cp-calendar_content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.cp-calendar_content h1 {
  margin: 2rem 0 1rem 0;
}
.cp-calendar_content h2 {
  margin-top: 0;
}
.cp-calendar_media {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: media;
  background: var(--pass-background);
  opacity: 0.8;
  background-size: cover;
}
.cp-calendar > .cp-calendar_media {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
@media screen and (min-width: 769px) {
  .cp-calendar {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
        grid-template-areas: "content media";
    margin-bottom: 3rem;
  }
  .cp-calendar_content {
    padding: 2rem;
  }
  .cp-calendar_media {
    border-radius: 2rem;
  }
  .cp-calendar > .cp-service_content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .cp-calendar > .cp-service_media {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .cp-calendar > .cp-calendar_content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .cp-calendar > .cp-calendar_media {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
}

.cp-event ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.cp-event h3 {
  margin: 0;
  padding: 0;
}

.cp-event img {
max-width: 100%;
}

.cp-event figure {
margin: 0;
padding: 0;
}

footer {
  padding: 2rem 2rem 2rem;
}
footer h2,
footer h3 {
  margin-top: 0;
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .cp--contact-bar {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  footer h2 {
    font-size: 2.5rem;
  }
  footer .cp--contact-bar {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
footer .cp-contact-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4rem 1.5rem auto;
  grid-template-columns: 4rem auto;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .cp-contact-box_icon {
  border-right: 1px solid #F9C3A4;
  font-size: 2.5rem;
  color: #F9C3A4;
}
footer .cp-contact-box ul {
  margin: 0;
  padding: 0;
}
footer .cp-contact-box ul h3 {
  margin: 0;
}
footer .list-footer {
  margin: 2rem 0 1rem 0;
}
footer .list-footer li {
  padding: 1rem 0 0 0;
  border-top: 1px solid #F9C3A4;
}
footer .list-footer-nav ul {
  border-top: 1px solid #F9C3A4;
  margin: 0;
  padding: 1rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav-mobile {
  padding: 2rem 0 0 0;
  background-color: #4e2003;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: -3.7em;
  z-index: 1000;
  -webkit-box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.6);
}
.nav-mobile_logo h1 {
  font-size: 1.5rem;
  margin: 0;
  padding: 0 2rem 0 2rem;
}
.nav-mobile_logo img {
  width: 10rem;
}
.nav-mobile summary {
  background-color: #4e2003;
  padding: 1rem 2rem;
  list-style: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-mobile summary::-webkit-details-marker {
  display: none;
}
.nav-mobile summary::before {
  font-family: "Line Awesome Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  content: "\f0c9";
  margin-right: 0.5rem;
  color: #d1d18d;
}
.nav-mobile details[open] summary::before {
  content: "\f00d";
}
.nav-mobile .details_menu {
  padding: 0.5rem 0;
  background-color: #4e2003;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav-mobile .details_menu a {
  color: var(--color-link);
}
.nav-mobile .details_menu a[aria-current=page] {
  color: #fff;
}
.nav-mobile .details_menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0.5rem 0;
}
.nav-mobile .details_menu ul li {
  padding: 0.5rem 1.5rem 0.5rem 3.5rem;
}

@media screen and (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}
.nav-wrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .nav-wrapper {
    display: block;
    background-color: rgba(98, 62, 39, 0.5568627451);
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
}

.nav-desktop {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav-desktop_logo h1 {
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
}
.nav-desktop_logo img {
  width: 10rem;
}
.nav-desktop ul {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.nav-desktop ul li {
  display: inline;
}
.nav-desktop ul li a[aria-current=page] {
  color: #fff;
}

.back {
  background-color: #4e2003;
  padding: 1rem 2rem;
  list-style: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.back::-webkit-details-marker {
  display: none;
}
.back::before {
  font-family: "Line Awesome Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  content: "\f060";
  margin-right: 0.5rem;
  color: #d1d18d;
}
.back a {
  color: #fff;
}
.back a[aria-current=page] {
  color: #fff;
}

/* yanone-kaffeesatz-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Yanone Kaffeesatz";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/yanone-kaffeesatz-v30-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* yanone-kaffeesatz-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Yanone Kaffeesatz";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/yanone-kaffeesatz-v30-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* yanone-kaffeesatz-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Yanone Kaffeesatz";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/yanone-kaffeesatz-v30-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* yanone-kaffeesatz-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Yanone Kaffeesatz";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/yanone-kaffeesatz-v30-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* yanone-kaffeesatz-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Yanone Kaffeesatz";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/yanone-kaffeesatz-v30-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/source-sans-3-v15-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/source-sans-3-v15-latin-italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/source-sans-3-v15-latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-500italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/source-sans-3-v15-latin-500italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/source-sans-3-v15-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-600italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/source-sans-3-v15-latin-600italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/source-sans-3-v15-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-sans-3-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/source-sans-3-v15-latin-700italic.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}