@charset "UTF-8";
.button {
  appearance: none;
  background: none;
  border-style: solid;
  border-width: 2px;
  cursor: pointer;
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  overflow: visible;
  padding: 0.25em 0.5em 0.0625em 0.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: 150ms;
  transition-property: background-color, border-color, color;
  transition-timing-function: ease-in-out;
  vertical-align: baseline;
}
.button:hover, .button:focus {
  text-decoration: none;
}
.button.primary {
  background-color: #692B2B;
  border-color: #692B2B;
  color: #FFF;
}
.button.primary:hover, .button.primary:focus {
  background-color: #572323;
}
.button.secondary {
  background-color: rgba(105, 43, 43, 0);
  border-color: #692B2B;
  color: #692B2B;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #692B2B;
  color: #FFF;
}
.button.square {
  height: 3rem;
  padding: 0;
  width: 3rem;
}
.button.square i {
  display: block;
  margin: 0 auto;
}
.button i {
  color: currentColor;
}

.background {
  background-color: #FFF9E9;
}
.background.dark {
  background-color: burlywood;
}
.background.accent {
  background-color: #692B2B;
}
.background.accent.dark {
  background-color: #572323;
}

.events h3 {
  font-size: 1.5rem;
}
.events ol {
  gap: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 20rem) {
  .events ol {
    gap: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  .events ol {
    gap: 3rem;
  }
}
@media (min-width: 801px) {
  .events ol {
    grid-template-columns: 1fr 1fr;
  }
}
.events .details {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.events .details li {
  column-gap: 0.5rem;
  display: grid;
  grid-template-columns: 20px 1fr;
  text-align: center;
}
.events .details li:not(:last-of-type) {
  margin-right: 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 75rem) [content-end] minmax(1.5rem, 1fr) [full-end];
  align-items: end;
  background-position: center;
  background-size: cover;
  height: 15rem;
  position: relative;
  text-align: right;
}
.hero > * {
  grid-column: content-start/content-end;
}
@media (min-width: 20rem) {
  .hero {
    height: calc(21.4285714286vw + 10.7142857143rem);
  }
}
@media (min-width: 90rem) {
  .hero {
    height: 30rem;
  }
}
.hero h1 {
  backdrop-filter: blur(2px) saturate(0%);
  background-color: rgba(75, 0, 0, 0.82421875);
  color: #FFF;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0.25em 0.5em;
  text-align: center;
}
@media (min-width: 20rem) {
  .hero h1 {
    font-size: calc(2.7272727273vw + 0.9545454545rem);
  }
}
@media (min-width: 75rem) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 50rem) {
  .hero h1 {
    margin-bottom: calc(6vw - 1.5rem);
  }
}
@media (min-width: 75rem) {
  .hero h1 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 801px) {
  .hero h1 {
    display: inline-block;
  }
}

i {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  line-height: 1;
  vertical-align: -0.1em;
}
i.calendar {
  width: 1em;
}
i.calendar svg {
  width: 1em;
}
i.clock {
  width: 1em;
}
i.clock svg {
  width: 1em;
}
i.close {
  width: 1em;
}
i.close svg {
  width: 1em;
}
i.facebook {
  width: 1em;
}
i.facebook svg {
  width: 1em;
}
i.marker {
  width: 0.8em;
}
i.marker svg {
  width: 0.8em;
}
i.menu {
  width: 1.5em;
}
i.menu svg {
  width: 1.5em;
}
i.prev, i.next {
  width: 0.55em;
}
i.prev svg, i.next svg {
  width: 0.55em;
}
i svg {
  display: block;
  fill: currentColor;
  height: 1em;
}

.link.icon {
  align-items: center;
  column-gap: 0.5rem;
  display: grid;
  display: inline-grid;
  display: inline grid;
  grid-template-columns: 20px 1fr;
}
.link.icon i {
  font-size: 1.25rem;
}

.navigation-overlay {
  opacity: 0;
  pointer-events: none;
  transition-duration: 250ms;
  transition-property: opacity, visibility;
  transition-timing-function: ease-out;
  visibility: hidden;
  background-color: #692B2B;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.navigation-overlay.visible {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.navigation-overlay .button {
  background-color: rgba(255, 255, 255, 0);
  border-color: #FFF;
  color: #FFF;
  font-size: 14px;
  position: absolute;
  right: 2rem;
  top: 2rem;
}
.navigation-overlay .button:hover, .navigation-overlay .button:focus {
  background-color: #FFF;
  color: #692B2B;
}
.navigation-overlay nav {
  align-items: center;
  display: grid;
  height: 100vh;
  padding: 2rem;
}
.navigation-overlay ul {
  display: grid;
  font-size: 1.25rem;
  row-gap: 1rem;
}
@media (min-width: 20rem) {
  .navigation-overlay ul {
    font-size: calc(5vw + 0.25rem);
  }
}
@media (min-width: 25rem) {
  .navigation-overlay ul {
    font-size: 1.5rem;
  }
}
@media (min-width: 20rem) {
  .navigation-overlay ul {
    row-gap: calc(10vw - 1rem);
  }
}
@media (min-width: 25rem) {
  .navigation-overlay ul {
    row-gap: 1.5rem;
  }
}
.navigation-overlay li {
  animation-name: Drop;
  animation-duration: 400ms;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
  text-align: center;
  will-change: opacity, transform;
}
@keyframes Drop {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
.navigation-overlay li:nth-child(1n) {
  animation-delay: 100ms;
}
.navigation-overlay li:nth-child(2n) {
  animation-delay: 200ms;
}
.navigation-overlay li:nth-child(3n) {
  animation-delay: 300ms;
}
.navigation-overlay li:nth-child(4n) {
  animation-delay: 400ms;
}
.navigation-overlay li:nth-child(5n) {
  animation-delay: 500ms;
}
.navigation-overlay li:nth-child(6n) {
  animation-delay: 600ms;
}
.navigation-overlay li:nth-child(7n) {
  animation-delay: 700ms;
}
.navigation-overlay li:nth-child(8n) {
  animation-delay: 800ms;
}
.navigation-overlay li:nth-child(9n) {
  animation-delay: 900ms;
}
.navigation-overlay li:nth-child(10n) {
  animation-delay: 1000ms;
}
.navigation-overlay li a {
  color: #FFF;
  display: inline-block;
  position: relative;
  text-decoration: none;
  will-change: opacity, transform;
}
.navigation-overlay li a::after {
  content: "";
  background-color: #FFF;
  bottom: -2px;
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0.5);
  transform-origin: center;
  transition-duration: 200ms;
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  width: 100%;
}
.navigation-overlay li a:hover, .navigation-overlay li a:focus {
  text-decoration: none;
}
.navigation-overlay li a:hover::after, .navigation-overlay li a:focus::after {
  opacity: 1;
  transform: scale(1);
}

.gallery-billboard {
  align-items: center;
  display: flex;
  height: 0;
  justify-content: center;
  opacity: 0;
  position: relative;
  transition-duration: 500ms;
  transition-property: height, opacity;
  transition-timing-function: ease-out;
}
.gallery-billboard.open {
  height: 90vh;
  max-height: 100vw;
  opacity: 1;
}
.gallery-billboard:not(.open) * {
  display: none;
}
.gallery-billboard img {
  max-height: 100%;
  max-width: 100%;
}
.gallery-billboard .button {
  color: inherit;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.gallery-billboard .button.gallery-prev {
  left: 1rem;
}
.gallery-billboard .button.gallery-next {
  right: 1rem;
}
.gallery-images {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, 64px);
  justify-content: space-between;
}

.sidekick {
  display: grid;
  grid-template-columns: [full-start image-start] 1.5rem [text-start] 1fr [text-end] 1.5rem [image-end full-end];
  row-gap: 1.5rem;
}
@media (min-width: 801px) {
  .sidekick {
    grid-template-columns: [full-start image-start] 50% [image-end] minmax(1.5rem, 1fr) [text-start] auto [text-end] minmax(1.5rem, 1fr) [full-end];
  }
}
@media (min-width: 801px) {
  .sidekick.reverse {
    grid-template-columns: [full-start] minmax(1.5rem, 1fr) [text-start] auto [text-end] minmax(1.5rem, 1fr) [image-start] 50% [image-end full-end];
  }
}
@media (min-width: 801px) {
  .sidekick.reverse iframe,
.sidekick.reverse img {
    order: 1;
  }
}
@media (min-width: 1201px) {
  .sidekick {
    align-items: center;
  }
}
.sidekick > iframe,
.sidekick > img {
  aspect-ratio: 3/2;
  grid-column: image-start/image-end;
  height: auto;
  width: 100%;
}
@supports not (aspect-ratio: 1) {
  .sidekick > iframe,
.sidekick > img {
    height: 33.3333333333vw;
  }
}
.sidekick > :not(iframe):not(img) {
  grid-column: text-start/text-end;
}
@media (min-width: 801px) {
  .sidekick > :not(iframe):not(img) {
    max-width: 35rem;
  }
}

.whitespace.outer.small {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 20rem) {
  .whitespace.outer.small {
    margin-bottom: calc(1.6666666667vw + 0.6666666667rem);
  }
}
@media (min-width: 50rem) {
  .whitespace.outer.small {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.outer.small {
    margin-top: calc(1.6666666667vw + 0.6666666667rem);
  }
}
@media (min-width: 50rem) {
  .whitespace.outer.small {
    margin-top: 1.5rem;
  }
}
.whitespace.outer.medium {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 20rem) {
  .whitespace.outer.medium {
    margin-bottom: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.outer.medium {
    margin-bottom: 3rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.outer.medium {
    margin-top: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.outer.medium {
    margin-top: 3rem;
  }
}
.whitespace.outer.large {
  margin-bottom: 2rem;
  margin-top: 2rem;
}
@media (min-width: 20rem) {
  .whitespace.outer.large {
    margin-bottom: calc(4.2857142857vw + 1.1428571429rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.outer.large {
    margin-bottom: 5rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.outer.large {
    margin-top: calc(4.2857142857vw + 1.1428571429rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.outer.large {
    margin-top: 5rem;
  }
}
.whitespace.inner.small {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
@media (min-width: 20rem) {
  .whitespace.inner.small {
    padding-bottom: calc(1.6666666667vw + 0.6666666667rem);
  }
}
@media (min-width: 50rem) {
  .whitespace.inner.small {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.inner.small {
    padding-top: calc(1.6666666667vw + 0.6666666667rem);
  }
}
@media (min-width: 50rem) {
  .whitespace.inner.small {
    padding-top: 1.5rem;
  }
}
.whitespace.inner.medium {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}
@media (min-width: 20rem) {
  .whitespace.inner.medium {
    padding-bottom: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.inner.medium {
    padding-bottom: 3rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.inner.medium {
    padding-top: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.inner.medium {
    padding-top: 3rem;
  }
}
.whitespace.inner.large {
  padding-bottom: 2rem;
  padding-top: 2rem;
}
@media (min-width: 20rem) {
  .whitespace.inner.large {
    padding-bottom: calc(4.2857142857vw + 1.1428571429rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.inner.large {
    padding-bottom: 5rem;
  }
}
@media (min-width: 20rem) {
  .whitespace.inner.large {
    padding-top: calc(4.2857142857vw + 1.1428571429rem);
  }
}
@media (min-width: 90rem) {
  .whitespace.inner.large {
    padding-top: 5rem;
  }
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  font-size: 100%;
  font: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-size-adjust: none;
}

html {
  box-sizing: border-box;
  cursor: default;
  line-height: 1.6180339887;
}

body {
  background-color: #FFF9E9;
  color: #241E22;
  font-family: "Proza Libre", sans-serif;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition-duration: 150ms;
  transition-property: background-color, border-color, color, text-decoration-color;
  transition-timing-function: ease-in-out;
}
@supports (text-decoration-color: transparent) {
  a {
    text-decoration: underline;
    text-decoration-color: transparent;
  }
}
a:hover, a:focus {
  text-decoration: underline;
  text-decoration-color: #692B2B;
}

em {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Suez One", serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 20rem) {
  h1, h2, h3, h4, h5, h6 {
    font-size: calc(2.5vw + 1rem);
  }
}
@media (min-width: 40rem) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 2rem;
  }
}

i {
  color: #692B2B;
}

iframe {
  border: 0;
}

img,
svg {
  display: block;
}

li {
  list-style-type: none;
}

strong {
  font-weight: 700;
}

header {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 75rem) [content-end] minmax(1.5rem, 1fr) [full-end];
  border-color: #692B2B;
  border-style: solid;
  border-width: 0;
  border-top-width: 0.5rem;
}
header > * {
  grid-column: content-start/content-end;
}
@media (min-width: 20rem) {
  header {
    border-top-width: calc(2.5vw + 0rem);
  }
}
@media (min-width: 40rem) {
  header {
    border-top-width: 1rem;
  }
}
header > * {
  align-items: center;
  column-gap: 2rem;
  display: grid;
  font-size: 1.25rem;
  grid-auto-flow: column;
  justify-content: space-between;
}
header > * nav .button.secondary {
  color: inherit;
}
@media (min-width: 801px) {
  header > * nav .button {
    display: none;
  }
}
header > * nav .button i {
  font-size: 12px;
}
header > * nav ul {
  display: none;
}
@media (min-width: 801px) {
  header > * nav ul {
    display: grid;
    grid-auto-flow: column;
    column-gap: 1rem;
  }
}
@media (min-width: 801px) and (min-width: 60rem) {
  header > * nav ul {
    column-gap: calc(10vw - 5rem);
  }
}
@media (min-width: 801px) and (min-width: 70rem) {
  header > * nav ul {
    column-gap: 2rem;
  }
}
header > * nav li {
  display: none;
}
@media (min-width: 801px) {
  header > * nav li.primary {
    display: list-item;
  }
}
@media (min-width: 881px) {
  header > * nav li.secondary {
    display: list-item;
  }
}
header > * nav a {
  font-weight: 700;
  display: inline-block;
  position: relative;
  text-decoration: none;
  will-change: opacity, transform;
}
header > * nav a::after {
  content: "";
  background-color: #692B2B;
  bottom: -2px;
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scale(0.5);
  transform-origin: center;
  transition-duration: 200ms;
  transition-property: opacity, transform;
  transition-timing-function: ease-out;
  width: 100%;
}
header > * nav a:hover, header > * nav a:focus {
  text-decoration: none;
}
header > * nav a:hover::after, header > * nav a:focus::after {
  opacity: 1;
  transform: scale(1);
}

.logo {
  display: block;
  font-family: "Suez One", serif;
  font-size: 1.25rem;
  line-height: 1.1;
  white-space: nowrap;
}
@media (min-width: 20rem) {
  .logo {
    font-size: calc(3.75vw + 0.5rem);
  }
}
@media (min-width: 40rem) {
  .logo {
    font-size: 2rem;
  }
}
.logo > * {
  display: block;
}
.logo > *:last-child {
  left: 13.3333333333%;
  position: relative;
}

main {
  font-size: 1.25rem;
}
main > .container {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 75rem) [content-end] minmax(1.5rem, 1fr) [full-end];
}
main > .container.narrow {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 60rem) [content-end] minmax(1.5rem, 1fr) [full-end];
}
main > .container > * {
  grid-column: content-start/content-end;
}
main .content ul,
main .content ol {
  display: grid;
  row-gap: 1rem;
}
@media (min-width: 50rem) {
  main .content ul,
main .content ol {
    row-gap: calc(1vw + 0.5rem);
  }
}
@media (min-width: 75rem) {
  main .content ul,
main .content ol {
    row-gap: 1.25rem;
  }
}
main .content ul li,
main .content ol li {
  align-items: baseline;
  column-gap: 0.5rem;
  display: grid;
  grid-template-columns: 1em 1fr;
}
@media (min-width: 50rem) {
  main .content ul li,
main .content ol li {
    column-gap: calc(1vw + 0rem);
  }
}
@media (min-width: 75rem) {
  main .content ul li,
main .content ol li {
    column-gap: 0.75rem;
  }
}
main .content ul li::before {
  content: "▪";
  text-align: center;
  transform: scale(1.5) rotate(-15deg) translateY(1px);
}
main .content ol {
  counter-reset: Numbers;
}
main .content ol li::before {
  counter-increment: Numbers;
  content: counter(Numbers) ".";
  text-align: right;
}
main :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) {
  hyphens: auto;
}
main :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) + :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) {
  margin-top: 1rem;
}
@media (min-width: 50rem) {
  main :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) + :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) {
    margin-top: calc(1vw + 0.5rem);
  }
}
@media (min-width: 75rem) {
  main :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) + :is(h1, h2, h3, h4, h5, h6, p, ul, ol, address) {
    margin-top: 1.25rem;
  }
}

footer {
  background-color: #692B2B;
  color: #FFF;
}
footer .footer.site {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 75rem) [content-end] minmax(1.5rem, 1fr) [full-end];
}
footer .footer.site > * {
  grid-column: content-start/content-end;
}
footer .footer.site > * {
  display: grid;
  gap: 1.5rem;
  grid-auto-flow: row;
}
@media (min-width: 20rem) {
  footer .footer.site > * {
    gap: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  footer .footer.site > * {
    gap: 3rem;
  }
}
@media (min-width: 801px) {
  footer .footer.site > * {
    grid-auto-flow: unset;
    grid-template-columns: 1fr 1fr;
  }
}
footer .footer.site > * > * {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 20rem) {
  footer .footer.site > * > * {
    gap: calc(2.1428571429vw + 1.0714285714rem);
  }
}
@media (min-width: 90rem) {
  footer .footer.site > * > * {
    gap: 3rem;
  }
}
footer .footer.site > * > :not(nav) {
  grid-auto-flow: row;
}
footer .footer.site > * > nav {
  grid-auto-flow: column;
}
footer .footer.legal {
  display: grid;
  grid-template-columns: [full-start] minmax(1.5rem, 1fr) [content-start] minmax(17rem, 75rem) [content-end] minmax(1.5rem, 1fr) [full-end];
  background-color: #572323;
}
footer .footer.legal > * {
  grid-column: content-start/content-end;
}
footer .footer.legal p + p {
  margin-top: 1.25rem;
}
@media (min-width: 20rem) {
  footer .footer.legal p + p {
    margin-top: calc(-3.3333333333vw + 1.9166666667rem);
  }
}
@media (min-width: 50rem) {
  footer .footer.legal p + p {
    margin-top: 0.25rem;
  }
}
footer h2 {
  font-size: 1.25rem;
}
footer h2 + ul {
  margin-top: 1rem;
}
footer a:hover, footer a:focus {
  text-decoration-color: inherit;
}
footer i {
  color: inherit;
}

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