@charset "UTF-8";
@import "../../node_modules/@fortawesome/fontawesome-free/css/all.css";
.btn, .form-0 .btn {
  display: inline-block;
  margin: 0;
  width: auto;
  background: #212e20;
  color: white;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn:hover {
  background-color: rgb(69.5538461538, 96.9538461538, 67.4461538462);
}

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

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.d-none {
  display: none;
}

* {
  box-sizing: border-box;
}

h1, h2, p {
  margin: 0.75rem 0;
}

h3,
h4 {
  margin: 0;
}
h3 + p,
h4 + p {
  margin-top: 0;
}

hr {
  border: none;
  text-align: center;
  margin: 1rem 0;
  position: relative;
}

hr::before {
  content: "•••"; /* Unicode for • (U+2022) */
  color: #212e20;
  letter-spacing: 0.5em;
  font-size: 1rem;
}

ol, ul {
  margin-top: 0;
}

body {
  margin: 0;
  background-color: #212e20;
  display: flex;
  font-family: "EB Garamond", "Georgia", serif;
  font-size: 1.25rem;
  justify-content: center;
}
@media (min-width: 930px) {
  body::before {
    content: "";
    width: 180px;
  }
}
@media (min-width: 1250px) {
  body::before {
    content: none;
  }
}
body > main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 850px;
  max-width: 100%;
  min-height: 100vh;
  padding-top: 2.5rem;
}
@media (min-width: 930px) {
  body > main {
    padding-top: 0.5rem;
  }
}
body > main::before, body > main::after {
  content: "";
  width: 100%;
  padding: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: top;
  background-position-x: center;
  background-image: url("/dist/grape-frame-top-detail.png");
  padding-top: 33%;
}
@media (min-width: 600px) {
  body > main::before, body > main::after {
    background-image: url("/dist/grape-frame-top.png");
    padding-top: 20%;
  }
}
body > main::after {
  transform: scaleY(-1);
}
body > main > * {
  width: 750px;
  max-width: 100%;
}

.fancy-card,
.framed-section {
  flex-grow: 1;
  padding: 30px;
  position: relative;
  background: none;
}
.fancy-card::before,
.framed-section::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #fff5c7;
  z-index: -1;
}
.fancy-card::after,
.framed-section::after {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  border: 5px solid #212e20;
  z-index: -1;
}

.fancy-card {
  flex-grow: 0;
  text-align: center;
}
.fancy-card ul {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  text-align: left;
}
.fancy-card li {
  display: list-item;
}

.form-0 {
  flex-grow: 0;
  padding: 2rem 3rem;
  border-radius: 10px;
}
.form-0 > * {
  margin: 0;
  margin-bottom: 1rem;
}
.form-0 > *:last-child {
  margin-bottom: 0;
}
.form-0 legend,
.form-0 label {
  display: flex;
  font-size: 1rem;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  font-weight: bold;
  font-family: "EB Garamond", "Georgia", serif;
}
.form-0 legend > input,
.form-0 legend > textarea,
.form-0 legend > select,
.form-0 label > input,
.form-0 label > textarea,
.form-0 label > select {
  margin-top: 0.5rem;
}
.form-0 fieldset {
  border: none;
  padding: 0;
}
.form-0 fieldset > * {
  margin-bottom: 0.5rem;
}
.form-0 fieldset label {
  flex-direction: row;
  align-items: center;
  font-weight: normal;
}
.form-0 input,
.form-0 textarea,
.form-0 select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid rgb(183, 193.5, 163.5);
  border-radius: 4px;
}
.form-0 input.small,
.form-0 textarea.small,
.form-0 select.small {
  width: 10rem;
}
.form-0 input.medium,
.form-0 textarea.medium,
.form-0 select.medium {
  width: 20rem;
}
.form-0 input[type=checkbox] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border-radius: 0;
  border: 1px solid #95989a;
  background: white;
  position: relative;
  cursor: pointer;
  margin: 0;
  margin-right: 0.5rem;
}
.form-0 input[type=checkbox]::before {
  content: "";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #212e20;
}
.form-0 input[type=checkbox]:checked::before {
  content: "\f00c";
}
.form-0 textarea {
  resize: none;
}
.form-0 .btn {
  margin-right: 1rem;
}
.form-0 .warning {
  color: #8B0000;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-left: 5px solid #8B0000;
}

.gallery {
  padding: 0;
  column-count: 3;
  column-gap: 1rem;
  width: 90%;
  background: none;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .gallery {
    column-count: 1;
  }
}
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem 3rem;
}
.lightbox-overlay.show {
  display: flex;
}
.lightbox-overlay .lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 768px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay .lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.lightbox-overlay .lightbox-content button {
  position: absolute;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}
.lightbox-overlay .lightbox-content .lightbox-close {
  position: fixed;
  top: 0.5rem;
  right: 1rem;
}
.lightbox-overlay .lightbox-content .lightbox-prev {
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}
.lightbox-overlay .lightbox-content .lightbox-next {
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
}

.menu-toggle {
  position: fixed;
  color: #fff5c7;
  text-decoration: none;
  font-weight: bold;
  margin: 0;
  margin-right: 0.5rem;
  font-size: 2rem;
  right: 0;
  z-index: 3;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 930px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle i {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-hide {
  z-index: 1;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.75;
}
@media (min-width: 930px) {
  .menu-hide {
    display: none;
  }
}

.main-nav {
  z-index: 2;
  position: relative;
}
@media (min-width: 930px) {
  .main-nav {
    display: block;
  }
}
.main-nav nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding: 1rem 0;
  background-color: #212e20;
  bottom: 0;
  top: 0;
  transition: 0.5s;
  transform: translateX(-200%);
}
.main-nav nav.show-menu {
  transform: translateX(0);
}
@media (min-width: 930px) {
  .main-nav nav {
    padding: 0;
    padding-top: 0.5rem;
    transform: translateX(-100%);
  }
  .main-nav nav.show-menu {
    transform: translateX(-100%);
  }
}
.main-nav nav a {
  color: #fff5c7;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 1rem 0.5rem;
}
.main-nav nav a:hover {
  text-decoration: underline;
}

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