@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --black: #2B2B2B;
  --white: #fff;
  --cream: #DFD1C4;
  --gold: #C49A6C;
  --dark: #76232F;
  --brown: #512F2E;
  --body-font: var(--wp--preset--font-family--body);
  --heading-font: var(--wp--preset--font-family--heading);
  --button-font: var(--heading-font);
  --responsive-wide-padding: 20px;
}

@media (min-width: 1320px) {
  :root {
    --responsive-wide-padding: calc(50vw - 640px);
  }
}
/* general */
* > * {
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  /* scrollbar is red on black */
  scrollbar-color: var(--dark) rgba(0, 0, 0, 0);
  /* scroll-snap-type: y proximity; */
}

/* chrome scrollbar is red and black, too */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark);
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0);
}

.snap {
  scroll-margin-top: 60px;
}

h1 {
  scroll-margin-top: 30px;
}

h2, h3, h4, h5,
section {
  scroll-margin-top: 20px;
}

html, body {
  margin: 0;
  font: 500 16px/1.3 var(--body-font), sans-serif;
  color: var(--black);
  background-color: var(--cream);
}

*:focus {
  outline-style: auto;
  outline-width: 2px;
  outline-color: var(--dark);
}

li,
p {
  font-size: var(--wp--preset--font-size--body);
}

p:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* body section,
body #primary {
  background-color: var(--white);
} */
section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

strong {
  font-weight: 600;
}

@media (max-width: 800px) {
  html, body {
    font: 300 16px/1.3 var(--body-font), sans-serif;
  }
  strong {
    font-weight: 600;
  }
}
html.locked, body.locked {
  max-height: 100%;
  overflow: hidden;
}

a {
  text-decoration: underline;
  color: var(--black);
}

a:hover {
  text-decoration: none;
}

li > ul,
li > ol {
  margin-left: 2rem;
  margin-bottom: 0 !important;
}

ul.wp-block-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0; /* Remove default padding */
  margin-bottom: 1.5rem;
}

ul.wp-block-list > li {
  list-style: none !important;
  position: relative;
  padding-left: 1.5em; /* Space for the custom bullet */
}

ul.wp-block-list > li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

ul.wp-block-list > li::before {
  content: "✔"; /* Custom bullet */
  font-weight: bold;
  position: absolute;
  left: 0;
}

nav li {
  list-style: none inside;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 781px) {
  .mobile-only {
    display: none !important;
  }
}
.screen-reader-response,
.wpcf7-response-output,
.wpcf7-spinner,
.wpcf7-not-valid-tip {
  display: none !important;
}

:where(.editor-styles-wrapper) p,
:where(.editor-styles-wrapper) h1, :where(.editor-styles-wrapper) h2, :where(.editor-styles-wrapper) h3, :where(.editor-styles-wrapper) h4, :where(.editor-styles-wrapper) h5, :where(.editor-styles-wrapper) h6 {
  margin: unset;
}

body h1, body .h1 {
  font-size: var(--wp--preset--font-size--h-1);
}
body h2, body .h2 {
  font-size: var(--wp--preset--font-size--h-2);
}
body h3, body .h3 {
  font-size: var(--wp--preset--font-size--h-3);
}
body .h3-5 {
  font-size: var(--wp--preset--font-size--h-3-5);
}
body h4, body .h4 {
  font-size: var(--wp--preset--font-size--h-4);
}
body h5, body .h5 {
  font-size: var(--wp--preset--font-size--h-5);
}
body h6, body .h6 {
  font-size: var(--wp--preset--font-size--h-6);
}

ol.wp-block-list {
  padding-left: 1rem;
}
ol.wp-block-list li {
  list-style: decimal outside;
}

ul.wp-block-list {
  padding-left: 1rem;
}
ul.wp-block-list li {
  list-style: disc outside;
}

.is-style-justify,
.is-style-justify > * {
  text-align: justify;
  text-align-last: justify;
}

@media (max-width: 800px) {
  .is-style-justify,
  .is-style-justify > * {
    text-align-last: left;
  }
}
.wpcf7 form > p {
  display: flex;
  border: solid 3px var(--brown);
  background-color: var(--brown);
  max-width: 100%;
}
.wpcf7 input:not([type=submit]),
.wpcf7 textarea {
  border: none;
  border-right: solid 3px var(--brown);
  background-color: var(--cream);
  padding: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown);
  width: 100%;
  height: 100%;
  resize: none;
  text-transform: uppercase;
}
.wpcf7 input:not([type=submit])::placeholder,
.wpcf7 textarea::placeholder {
  color: var(--brown);
  opacity: 0.5;
}
.wpcf7 .wpcf7-form-control-wrap:nth-child(3) input {
  border-right: none;
}
.wpcf7 input[type=submit] {
  background-color: var(--brown);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: none;
  text-align: center;
  flex: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
.wpcf7 .wpcf7-form-control-wrap {
  max-width: 300px;
  max-height: 40px;
  opacity: 1;
  transition: all 0.3s;
}
.wpcf7 form.sent .wpcf7-form-control-wrap {
  max-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s;
}
@media (max-width: 651px) {
  .wpcf7 form > p {
    flex-direction: column;
    align-items: stretch;
  }
  .wpcf7 .wpcf7-form-control-wrap {
    max-width: 100%;
  }
  .wpcf7 input {
    border-right: none !important;
  }
  .wpcf7 input:not([type=submit]),
  .wpcf7 textarea {
    border: none;
    border-bottom: solid 3px var(--brown);
    background-color: var(--cream);
  }
}

.wp-block-columns.is-style-justify-center {
  justify-content: center;
}

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