.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  background: url('/img/slide-1.webp');
  background-size: cover;
  background-position: center;
}
.slideshow-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
}
.slideshow-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-light);
}
.slideshow-overlay h1 {
  font-family: var(--font-header);
  font-weight: 700;
  background: linear-gradient(to right, #ffd343, #ffd343);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.slideshow-overlay p {
  font-family: var(--font-header);
  font-weight: 500;
  background: linear-gradient(to right, var(--color-almost-white), var(--color-body-white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 40s infinite ease-in-out, zoomIn 40s infinite ease-in-out;
}
.slide-1 {
  background-image: url("/img/slide-1.webp");
  animation-delay: 0s, 0s;
}
.slide-2 {
  background-image: url("/img/slide-2.webp");
  animation-delay: 8s, 8s;
}
.slide-3 {
  background-image: url("/img/slide-3.webp");
  animation-delay: 16s, 16s;
}
.slide-4 {
  background-image: url("/img/slide-4.webp");
  animation-delay: 24s, 24s;
}
.slide-5 {
  background-image: url("/img/slide-5.webp");
  animation-delay: 32s, 32s;
}
@keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.home .hero {
  background-color: var(--buttermilk-beige);
  padding: 4rem 2rem;
  text-align: center;
}
.home .hero h1 {
  font-size: 2.5rem;
  color: var(--rustic-brown);
}
.home .hero p {
  font-size: 1.1rem;
  color: var(--clay-taupe);
  margin-bottom: 1.5rem;
}
.about-preview,
.schedule-teaser {
  padding: 3rem 2rem;
  background-color: var(--parchment-flour);
}
.about-preview .text p,
.schedule-teaser p {
  color: var(--dusty-cornflower);
  font-size: 1rem;
}
.about-preview img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.accordion-trigger[aria-expanded="true"] {
  background-color: var(--golden-wheat);
}
.accordion-content[aria-hidden="false"] {
  grid-template-rows: 1fr;
  background-color: #FFF
}
.accordion-trigger:hover {
  background-color: var(--buttermilk-beige);
}
#how-it-works {
  position: relative;
  background-color: var(--buttermilk-beige-light);
}
.how-it-works-grid {
  padding: 1rem;
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-items: center;
}
.how-it-works-card {
  background-color: var(--parchment-flour-light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  overflow: visible;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-wrap: nowrap;
  display: flex;
  line-height: 1.6;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: -.3125px;
  font-size: clamp(.8125rem, .8275rem + .25vw, .9375rem);
  max-width: 300px;
  width: 100%;
  transition: background-color .15s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform .15s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.how-it-works-card:hover {
  /* background-color: rgba(166, 181, 155, 0.5); */
  background-color: #dee4d0;
  transform: translateY(-4px);
}
.how-it-works-card svg {
  width: 3rem;
  height: 3rem;
  margin-bottom: .75rem;
}
.works-card-h3 {
  margin-bottom: .375rem;
  letter-spacing: -.125px;
}
.works-card-p,
.works-card-h3 {
  text-wrap-style: balance;
}
.works-card-p {
  line-height: 1.5
}
.how-it-works-p {
  border-bottom: 1px solid var(--clay-taupe-dark);
}
#schedule {
  background-color: var(--sage-green-lighter);
  background-blend-mode: multiply;
  background-image: url('/img/french-stucco.png');
}
#schedule .wrapper,
#community .wrapper {
  align-items: center;
}
#how-it-works .wrapper {
  position: relative;
  z-index: 1;
}
#schedule h2 {
  text-align: center;
}
#testimonials {
  background-color: var(--blush-rose);
}
#instagram-feed {
  position: relative;
  text-align: center;
  padding: 2rem 0;
  background-image: url(/img/rice-paper-3.png);
  background-blend-mode: multiply;
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  background-color: var(--buttermilk-beige);
}
#instagram-feed h2 {
  font-family: var(--font-header);
  margin-bottom: 1rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
  max-width: 1440px;
  margin: 0 auto 1.5rem;
}
.instagram-grid img,
.instagram-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 5;
  max-height: 750px;
  border-radius: 4px;
  filter: brightness(0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: transform .2s cubic-bezier(0.455, 0.03, 0.515, 0.955), box-shadow .2s cubic-bezier(0.455, 0.03, 0.515, 0.955), filter .2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.instagram-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-insta {
  margin: 0 auto;
}
.btn-insta:hover {
  background-color: var(--warm-copper-hover);
}
.btn-insta:active {
  background-color: var(--warm-copper-active);
  transform: scale(.97);
}
#contact {
  color: var(--parchment-flour-light);
  text-align: center;
}
#contact h2 {
  color: var(--golden-wheat);
}
#contact {
  position: relative;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  filter: blur(2px);
}
.left-contact {
  display: flex;
  flex-direction: column;
  max-height: fit-content;
  margin: auto;
}
#food-law {
  background-color: var(--sage-green-lighter);
}
.food-law-header {
  display: flex;
  gap: .25rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--sage-green)
}
#food-law img {
  width: 100%;
  max-width: 12rem;
  height: auto;
  padding: .125rem;
  margin: 0 auto 1rem;
}
#food-law h2 {
  text-align: center;
  margin-bottom: 0;
}
.food-law-body {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  width: 100%;
  max-width: 700px;
}
#food-law p {
  text-align: left;
  text-wrap-style: stable;
  max-width: 700px;
  margin-left: 0;
}
#food-law p:first-of-type {
  margin-bottom: 1rem;
}
#community p {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  text-align: left;
}
#community p:last-of-type {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clay-taupe-dark);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: masonry;
  gap: 1rem;
  max-width: 1440px;
  margin: 3rem auto;
  padding: 0 1rem;
}
/* 
.bento-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(93, 117, 106, .15), rgba(93, 117, 106, .15));
  transition: opacity .5s ease;
} */
.bento-item {
  position: relative;
  overflow: hidden;
  max-height: 300px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform .5s ease, filter .5s ease;
}
.bento-item:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}
.bento-item:hover .bento-overlay {
  opacity: 0;
}
.bento-item.tall {
  grid-row: span 2;
  max-height: 616px;
}
.bento-item.wide {
  grid-column: span 2;
}
.clickable-img {
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 3rem;
  left: 0;
  top: 0;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
}
.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
}
#caption {
  margin: 1rem auto;
  text-align: center;
  color: #f1f1f1;
  font-size: 1rem;
  padding-bottom: 3.5rem;
}
.close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #bbb;
}
.prev,
.next {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--sage-green-mid);
  padding: .5rem 1.5rem;
  user-select: none;
}
.prev {
  left: 1rem;
}
.next {
  right: 1rem;
}
.prev:hover,
.next:hover {
  color: #bbb;
}
#pre-footer {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--sage-green-lighter);
}
.quote {
  font-family: var(--font-brand);
}
  h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: .5rem;
  }
  li {
    margin-bottom: .25rem;
  }
@media screen and (min-width: 769px) {
  :root {
    --location-bar: 2.625rem
  }
  .slideshow {
    max-width: 538px;
    margin: 0 auto 0 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }
  .slideshow-overlay {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.08));
  }
  .slideshow-text {
    background: radial-gradient(ellipse at 50% 45%,
        rgba(0, 0, 0, 0.4) 20%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 80%);
  }
  .slideshow-overlay h1 {
    font-size: 4.25rem;
    letter-spacing: -1.5px;
    line-height: 1.3;
  }
  .slideshow-overlay p {
    font-size: 1.4375rem;
    letter-spacing: -.5px;
    margin: 0 auto 2rem;
  }
  @keyframes zoomIn {
    0% {
      transform: scale(1);
    }
    30% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1.2);
    }
  }
  #pre-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pre-hero .bg-img {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/img/pre-hero-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
  }
  #pre-hero .bg-img::after {
    pointer-events: none;
    user-select: none;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }
  #pre-hero .wrapper {
    height: 100%;
    width: 100%;
    min-height: calc(100vh - calc(var(--header-height) + var(--location-bar)));
    max-width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0;
  }
  #pre-hero .intro-text {
    display: flex;
    flex-direction: column;
  }
  h1 {
    text-wrap-style: balance;
    text-align: center;
    max-width: 850px;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(100deg,
        var(--golden-wheat-light) 0%,
        var(--crust-brown-light) 45%,
        var(--warm-copper-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: clamp(1.5rem, 3.5rem + 1vw, 4.375rem);
  }
  #pre-hero .subtitle {
    font-size: clamp(3.25rem, 3.75rem + .25vw, 4.75rem);
    font-family: var(--font-brand);
    background: linear-gradient(90deg, var(--sage-green-header), var(--sage-green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 auto .5rem;
  }
  #pre-hero .subtitle-p {
    font-size: clamp(1rem, 1.375rem + .25vw, 1.75rem);
    background: linear-gradient(90deg, var(--buttermilk-beige-light), var(--buttermilk-beige-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--font-header);
    font-weight: 700;
    margin: 0 auto;
    line-height: 1;
  }
  .middle-pre-hero,
  .middle-hero {
    pointer-events: none;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    height: 100%;
    inset: 0;
    z-index: 0;
  }
  .pre-hero-logo {
    object-fit: cover;
    object-position: center;
    position: absolute;
    margin: auto;
    width: 100%;
    display: block;
    opacity: 0.15;
    max-width: clamp(150px, 250px + 10vh, 450px);
    height: auto;
    z-index: -1;
    user-select: none;
    pointer-events: none;
  }
  #logoStamp,
  #logoStamp3,
  #logoStamp5 {
    left: 10%;
    transform: rotate(-20deg);
    top: 20%;
  }
  #logoStamp2,
  #logoStamp4,
  #logoStamp6 {
    right: 10%;
    transform: rotate(20deg);
    top: 50%;
  }
  .location-bar {
    width: 100%;
    height: var(--location-bar);
    background-color: var(--sage-green-lighter);
    background-image: url('/img/rice-paper-3.png');
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-size: contain;
    text-align: center;
    padding: .75rem 0;
    font-family: var(--font-header);
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .125px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rustic-brown);
    border-top: 1px solid var(--sage-green-light);
    border-bottom: 1px solid var(--sage-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem
  }
  .location-bar span {
    flex: 1;
    height: 1px;
    background: var(--sage-green);
    max-width: 120px;
  }
  .location-bar span {
    display: inline-block;
    padding: 0 1rem;
  }
  .large-p {
    font-size: 1.125rem;
  }
  .prev,
  .next {
    top: 50%;
    bottom: unset;
  }
  #hero {
    background-color: var(--parchment-flour);
    position: relative;
    padding: 8rem 0
  }
  #hero h2 {
    text-align: left;
    padding-bottom: .25rem;
    border-bottom: 1px solid var(--sage-green-mid);
  }
  #hero .btn {
    margin: .25rem 0 1.5rem
  }
  .hero-bg {
    pointer-events: none;
    background-image: url('/img/hero-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    position: absolute;
    opacity: .754;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  #hero .wrapper.row {
    display: grid;
    position: relative;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
    z-index: 2;
  }
  .hero-text,
  .left-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 0 auto auto;
    padding: 1.25rem;
    max-width: 570px;
  }
  .hero-text {
    backdrop-filter: blur(2px);
  }
  .hero-text p {
    max-width: 450px;
  }
  #how-it-works,
  #schedule,
  #community {
    padding: 4rem 0;
  }
  .calendar-card {
    max-width: 350px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow .5s ease;
  }
  .calendar-card img {
    width: 100%;
    height: 100%;
    filter: brightness(.85);
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
  }
  .calendar-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.35);
  }
  .calendar-card:hover img {
    transform: scale(1.05);
    filter: brightness(.95)
  }
  .card-overlay {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 40%;
    line-height: 1;
    padding: 1rem;
    backdrop-filter: blur(2px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    color: #fff;
    text-align: left;
  }
  .card-body {
    display: flex;
    flex-direction: column;
    margin: auto 0 0;
  }
  .card-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: .25rem;
  }
  .card-tag {
    background-color: var(--_tag-bg);
    color: var(--_tag-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid var(--_tag-border);
    font-weight: 500;
    z-index: 2;
    padding: .125rem .75rem;
    text-box-trim: trim-both;
    font-size: .75rem;
    user-select: none;
    border-radius: 4px;
    letter-spacing: 0.03em;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  }
  .card-tag.pickup {
    --_tag-bg: var(--warm-copper-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.market {
    --_tag-bg: var(--sage-green-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.event {
    --_tag-bg: var(--rustic-brown-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.class {
    --_tag-bg: var(--deep-ink);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-overlay h3 {
    font-family: var(--font-header);
    color: var(--golden-wheat-light);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  }
  .overlay-p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--buttermilk-beige);
    margin: .375rem 0;
  }
  .second-deal-p p {
    font-size: .8125rem;
    color: var(--parchment-flour-light);
    font-style: italic;
    margin-bottom: 4px;
    font-weight: 400;
    opacity: 0.9;
  }
  .second-deal-p {
    margin: .25rem 0 1rem;
  }
  .event-calendar-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 3rem;
  }
  #food-law-cta {
    padding-bottom: 9rem;
  }
  #how-it-works h2 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .how-it-works-card {
    padding: 2rem;
  }
  .how-it-works-p {
    text-align: center;
    padding-bottom: 1rem;
    margin: 0 auto 2rem auto;
  }
  #final-cta p:last-of-type {
    margin-bottom: 1rem;
  }
  #contact {
    padding: 4rem 1.5rem;
  }
  .contact-bg-img {
    position: sticky;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/img/contact-us-bg.webp');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .contact-bg-img::after {
    pointer-events: none;
    user-select: none;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }
  #food-law {
    padding: 2rem;
  }
  #food-law hr {
    margin-bottom: 1rem;
  }
  #food-law p:first-of-type {
    margin-bottom: 1rem;
  }
  #food-law .wrapper {
    gap: 1rem
  }
  #food-law .wrapper-left {
    width: 100%;
    padding: 0 1rem;
  }
  #food-law .wrapper-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    padding: 0 1rem;
    width: 100%;
  }
  .quote {
    text-align: center;
    font-size: 3.5rem;
    line-height: 1.25;
    text-wrap-style: balance;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --location-bar: 2.625rem
  }
  @keyframes zoomIn {
    0% {
      transform: scale(1);
    }
    30% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1.2);
    }
  }
  .slideshow {
    order: 2;
    max-width: 98%;
    margin: 0 auto 2rem;
    max-height: 350px;
    aspect-ratio: 1/1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--buttermilk-beige);
    border-radius: .5rem;
  }
  .slideshow-overlay h1 {
    font-size: 4.25rem;
    letter-spacing: -1.5px;
    line-height: 1.3;
  }
  .slideshow-overlay p {
    font-size: 1.4375rem;
    letter-spacing: -.5px;
    margin: 0 auto 2rem;
  }
  .slide {
    background-position: 100% 25%;
  }
  .slideshow-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
  }
  .slideshow-text {
    background: radial-gradient(ellipse at 50% 50%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 80%);
  }
  .slideshow-overlay p {
    font-size: 1rem;
    letter-spacing: -.125px;
  }
  #hero .wrapper.row {
    flex-direction: column;
    padding: 0
  }
  #hero .btn {
    margin: 1.75rem auto .5rem
  }
  .small-link {
    margin: 0 auto .75rem;
    font-size: 13px;
    display: none;
    font-weight: 400;
  }
  main {
    padding-top: var(--header-height)
  }
  #pre-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #pre-hero .bg-img {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('/img/mobile-pre-hero-bg.webp');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    background-blend-mode: multiply;
  }
  #pre-hero .bg-img::after {
    pointer-events: none;
    user-select: none;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  }
  #pre-hero .wrapper {
    height: 100%;
    width: 100%;
    min-height: calc(600px - calc(var(--header-height) + var(--location-bar)));
    max-width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 0;
  }
  #pre-hero .intro-text {
    display: flex;
    flex-direction: column;
  }
  h1 {
    text-wrap-style: balance;
    font-weight: 900;
    text-align: center;
    max-width: 850px;
    line-height: 1.2;
    margin-bottom: 0;
    background: linear-gradient(100deg,
        var(--golden-wheat-light) 0%,
        var(--crust-brown-light) 45%,
        var(--warm-copper-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: clamp(1.25rem, 2.0625rem + 1vw, 2.5rem);
  }
  #pre-hero .subtitle {
    text-align: center;
    font-size: clamp(1.75rem, 2.25rem + .25vw, 3.25rem);
    font-family: var(--font-brand);
    background: linear-gradient(90deg, var(--sage-green-header), var(--sage-green-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0 auto .25rem;
  }
  #pre-hero .subtitle-p {
    font-size: clamp(1rem, 1.175rem + .25vw, 1.5rem);
    background: linear-gradient(90deg, var(--buttermilk-beige-light), var(--buttermilk-beige-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--font-header);
    font-weight: 700;
    margin: 0 auto;
    line-height: 1;
  }
  .location-bar {
    width: 100%;
    height: var(--location-bar);
    background-color: var(--sage-green-lighter);
    background-image: url('/img/rice-paper-3.png');
    background-repeat: repeat;
    background-blend-mode: multiply;
    background-size: contain;
    text-align: center;
    padding: .75rem .25rem;
    font-family: var(--font-header);
    font-size: .75rem;
    line-height: 1;
    letter-spacing: -.25px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--rustic-brown);
    border-top: 1px solid var(--sage-green-light);
    border-bottom: 1px solid var(--sage-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .25rem
  }
  .location-bar span {
    flex: 1;
    height: 1px;
    background: var(--sage-green);
    max-width: 120px;
  }
  .location-bar span {
    display: inline-block;
    padding: 0 .25rem;
  }
  .pre-hero-logo {
    object-fit: cover;
    object-position: center;
    position: absolute;
    margin: auto;
    width: 100%;
    display: block;
    opacity: 0.15;
    max-width: clamp(150px, 220px + 10vh, 350px);
    height: auto;
    z-index: -1;
    user-select: none;
    pointer-events: none;
  }
  #logoStamp,
  #logoStamp3,
  #logoStamp5 {
    left: 10%;
    transform: rotate(-20deg);
    top: 20%;
  }
  #logoStamp2,
  #logoStamp4,
  #logoStamp6 {
    right: 10%;
    transform: rotate(20deg);
    top: 50%;
  }
  .middle-pre-hero,
  .middle-hero {
    pointer-events: none;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    height: 100%;
    inset: 0;
    z-index: 0;
  }
  .hero-subtitle {
    font-weight: 400;
    font-family: var(--font-brand);
    font-size: 2.6375rem;
    letter-spacing: -.125px;
    line-height: 1;
    text-align: center;
    max-width: revert;
    margin: .85rem auto .75rem;
  }
  .hero-text {
    order: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 1rem;
  }
  .hero-text h2 {
    order: 0;
  }
  .pre-hero-logo {
    display: none;
  }
  .hero-heading {
    order: 3;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    border-top: var(--clay-taupe-dark) 1px solid;
    border-radius: 2px;
    margin-top: .25rem;
    margin-bottom: .75rem;
  }
  #schedule {
    padding: 2rem 0;
  }
  #hero {
    position: relative;
    padding-top: 0;
  }
  #how-it-works {
    padding: 2rem 0;
  }
  #how-it-works h2 {
    text-wrap-style: balance;
    margin-bottom: .5rem;
  }
  .how-it-works-grid {
    padding: 1rem 0;
    gap: 2.5rem;
    justify-items: flex-start;
  }
  .how-it-works-card {
    position: relative;
    transition: background-color .3s ease, transform .3s ease;
    padding: 3rem 1rem;
    transform: translateX(0);
  }
  .how-it-works-card:hover, .how-it-works-card.active {
    background-color: #dee4d0;
    transform: translateX(40px);
  }
  .how-it-works-p {
    text-align: center;
    padding-bottom: 1rem;
    margin: 0 auto 1rem;
  }
  .calendar-card {
    max-width: 350px;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: box-shadow .5s ease;
  }
  .calendar-card img {
    width: 100%;
    height: 100%;
    filter: brightness(.85);
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
  }
  .calendar-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.35);
  }
  .calendar-card:hover img {
    transform: scale(1.05);
    filter: brightness(.95)
  }
  .card-overlay {
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 45%;
    line-height: 1;
    padding: 1rem;
    backdrop-filter: blur(2px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    color: #fff;
    text-align: left;
  }
  .card-body {
    display: flex;
    flex-direction: column;
    margin: auto 0 0;
  }
  .card-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: .25rem;
  }
  .card-tag {
    background-color: var(--_tag-bg);
    color: var(--_tag-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid var(--_tag-border);
    font-weight: 500;
    z-index: 2;
    padding: .25rem .75rem .125rem;
    text-box-trim: trim-both;
    font-size: .75rem;
    user-select: none;
    border-radius: 4px;
    letter-spacing: 0.03em;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
  }
  .card-tag.pickup {
    --_tag-bg: var(--warm-copper-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.market {
    --_tag-bg: var(--sage-green-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.event {
    --_tag-bg: var(--rustic-brown-dark);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-tag.class {
    --_tag-bg: var(--deep-ink);
    --_tag-text: var(--parchment-flour-light);
    --_tag-border: var(--parchment-flour-light);
  }
  .card-overlay h3 {
    font-family: var(--font-header);
    color: var(--golden-wheat-light);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  }
  .overlay-p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--buttermilk-beige);
    margin: .375rem 0;
  }
  .second-deal-p p {
    font-size: .8125rem;
    color: var(--parchment-flour-light);
    font-style: italic;
    margin-bottom: 4px;
    font-weight: 400;
    opacity: 0.9;
  }
  .second-deal-p {
    margin: 4px 0 16px;
  }
  .event-calendar-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    justify-items: center;
    margin: 1.5rem auto 3rem;
  }
  .instagram-grid img, .instagram-grid video {
    max-height: 500px;
  }
  #contact {
    padding: 2rem 0 4rem;
  }
  #food-law .wrapper.row {
    flex-direction: column;
    padding: 1rem;
  }
  #food-law .wrapper-right {
    border-top: 1px solid var(--clay-taupe);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #food-law p {
    text-align: left;
  }
  #food-law img {
    max-width: 6rem;
  }
  .contact-bg {
    filter: none;
  }
  .contact-bg-img {
    position: sticky;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/img/mobile-contact-us-bg.webp');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
  .contact-bg-img::after {
    pointer-events: none;
    user-select: none;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
  }
  .contact-form {
    padding-top: 3rem;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(2px);
  }
  .contact-form button {
    border-radius: .25rem;
  }
  #community {
    padding: 2rem 0;
  }
  #legal {
    padding: 1rem 0 6rem;
  }
  #legal p,
  #legal ul li {
    line-height: 1.8;
    padding: 1rem 0;
  }
  #legal ul {
    padding-left: 1rem;
  }
  #testimonials {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  #food-law {
    padding: 2rem 0;
  }
  #food-law .wrapper {
    padding: 1rem 0;
  }
  h2 {
    text-align: center;
  }
  #contact p {
    text-align: left;
  }
  .btn.primary.desktop {
    display: none;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.tall,
  .bento-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .quote {
    text-align: center;
    line-height: 1.25;
    font-size: 2.5rem;
    text-wrap-style: balance;
  }
}
@media screen and (min-width: 1203px) {
  #pre-hero {
    min-height: calc(100vh - calc(var(--header-height) + var(--location-bar)));
  }
  #hero .small-link {
    display: none
  }
  #hero h2 {
    text-align: center;
    max-width: 500px;
    text-wrap-style: balance;
  }
  .hero-heading {
    display: none;
  }
  .slideshow {
    border: 1.25rem solid var(--buttermilk-beige-light);
  }
}
@media screen and (max-width: 1202.99px) {
  .desktop-h1 {
    display: none
  }
}
@media screen and (min-width: 769px) and (max-width: 1202.99px) {}
@media screen and (min-width: 769px) and (max-width: 1202.99px) {
  h1 {
    font-size: clamp(1.5rem, 2.5rem + 1vw, 3.25rem);
  }
  #pre-hero {
    min-height: calc(100vh - calc(var(--header-height) + var(--location-bar)));
    /* padding-top: var(--header-height) */
  }
  #pre-hero .subtitle {
    font-size: clamp(1.5rem, 2.5rem + 1vw, 3.25rem);
  }
  #hero {
    padding: 0;
  }
  .slideshow {
    order: 2;
    max-width: 98%;
    margin: 0 auto 2rem;
    max-height: 650px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 8px solid var(--buttermilk-beige);
    border-radius: .5rem;
  }
  .slide {
    background-position: 100% 25%;
  }
  .hero-text p {
    max-width: 750px;
    text-align: left;
  }
  #hero .wrapper.row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 0;
  }
  #hero h2 {
    text-align: center;
    order: 0;
  }
  .hero-text {
    order: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem 1rem;
    max-width: unset;
    margin: auto;
  }
  #hero .btn {
    margin: .5rem auto 1.25rem;
    order: 3;
  }
  .hero-subtitle {
    font-weight: 400;
    font-family: var(--font-brand);
    font-size: 3.5rem;
    letter-spacing: -.125px;
    line-height: 1;
    text-align: center;
    max-width: revert;
    margin: .875rem auto;
  }
  .hero-heading {
    order: 3;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    border-top: var(--clay-taupe-dark) 1px solid;
    border-radius: 2px;
    margin-top: .25rem;
    margin-bottom: .75rem;
  }
  .desktop-h1,
  #hero .small-link,
  .btn.desktop {
    display: none;
  }
  .how-it-works-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media screen and (min-width: 769px) and (max-width: 1202.99px) {}