/* -----------------------------BASE----------------------------------- */
html { 
  scroll-behavior: smooth; 
} 

body { 
  background: var(--cream); 
  color: var(--dark); 
  font-family: var(--body); 
  font-size: .95rem; 
  line-height: 1.75; 
} 

h1,h2,h3 { 
  color: var(--green); 
  font-family: var(--heading); 
  font-weight: 600; 
  line-height: .96; 
} 

h1 { 
  font-size: clamp(3.8rem, 7vw, 6.7rem); 
  letter-spacing: -.045em; 
} 

h2 { 
  font-size: clamp(2.8rem, 5vw, 4.35rem); 
  letter-spacing: -.035em; 
} 

h3 { 
  font-size: 2rem; 
} 

h1 em,h2 em { 
  color: var(--accent); 
} 

a { 
  color: inherit; 
  text-decoration: none; 
} 

img { 
  display: block; 
  max-width: 100%; 
  object-fit: cover; 
} 

.skip-link { 
  background: var(--green); 
  color: white; 
  left: 1rem; 
  padding: .65rem 1rem; 
  position: absolute; 
  top: -5rem; 
  z-index: 10000; 
} 

.skip-link:focus { 
  top: 1rem; 
} 

.section { 
  padding: 7rem 0; 
} 

.section-cream { 
  background: var(--cream); 
} 

.section-tan { 
  background: var(--tan); 
} 

.section-intro { 
  margin-inline: auto; 
  max-width: 40rem; 
} 

.section-intro > p:last-child, .section-copy { 
  color: #645b53; 
} 

.eyebrow { 
  color: var(--green-soft); 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .15em; 
  margin-bottom: .9rem; 
  text-transform: uppercase; 
} 

.btn { 
  border-radius: 0; 
  font-size: .76rem; 
  font-weight: 700; 
  letter-spacing: .08em; 
  padding: .9rem 1.3rem; 
  text-transform: uppercase; 
} 

.btn-primary { 
  background: var(--green); 
  border-color: var(--green); 
} 

.btn-primary:hover, .btn-primary:focus { 
  background: var(--brown); 
  border-color: var(--brown); 
} 

.btn-accent { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: var(--dark); 
} 

.btn-accent:hover, .btn-accent:focus { 
  background: #edc483; 
  border-color: #edc483; 
  color: var(--dark); 
} 

.btn-outline-primary { 
  border-color: var(--green); 
  color: var(--green); 
} 

.btn-outline-primary:hover, .btn-outline-primary:focus { 
  background: var(--green); 
  border-color: var(--green); 
} 

.text-link { 
  border-bottom: 1px solid var(--accent); 
  color: var(--green); 
  display: inline-block; 
  font-size: .78rem; 
  font-weight: 700; 
  letter-spacing: .08em; 
  padding-bottom: .3rem; 
  text-transform: uppercase; 
}

/* -----------------------------HEADER SECTION----------------------------------- */
.site-header { 
  background: rgba(255,248,242,.94); 
  border-bottom: 1px solid rgba(90,70,52,.08); 
  position: sticky; 
  top: 0; 
  z-index: 1020; 
} 

.navbar { 
  padding: .45rem 0; 
} 

.brand { 
  display: inline-flex; 
  line-height: 1; 
} 

.brand img { 
  height: 4.4rem; 
  object-fit: contain; 
  width: 4.4rem; 
} 

.nav-link { 
  color: var(--dark); 
  font-size: .76rem; 
  font-weight: 600; 
  letter-spacing: .055em; 
  padding-inline: .75rem !important; 
  text-transform: uppercase; 
} 

.nav-link:hover, .nav-link.active { 
  color: var(--green); 
} 

.navbar-toggler { 
  border: 0; 
  color: var(--green); 
  font-size: 1.75rem; 
  padding: .15rem; 
} 

.navbar-toggler:focus { 
  box-shadow: 0 0 0 .2rem rgba(49,82,54,.22); 
}

/* -----------------------------HERO SECTION----------------------------------- */
.hero { 
  overflow: hidden; 
  padding: 4.5rem 0 6rem; 
} 

.hero-copy { 
  padding: 2rem 0; 
} 

.hero .lead { 
  color: #625a52; 
  font-size: 1.04rem; 
  margin-top: 1.5rem; 
  max-width: 34rem; 
} 

.hero-image { 
  margin-left: auto; 
  max-width: 33rem; 
  position: relative; 
} 

.hero-image img,
.hero-image video {
  aspect-ratio: 4 / 4.7;
  border-radius: 10rem 10rem 1.5rem 1.5rem;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-note { 
  align-items: center; 
  background: var(--white); 
  border-radius: 50%; 
  bottom: -2.5rem; 
  box-shadow: var(--shadow); 
  color: var(--brown); 
  display: flex; 
  font-size: .72rem; 
  line-height: 1.4; 
  padding: 1rem; 
  position: absolute; 
  right: -1.5rem; 
  text-align: left; 
  transform: rotate(-8deg); 
} 

.hero-note strong { 
  color: var(--green); 
  font-family: var(--heading); 
  font-size: 1.25rem; 
} 

.hero-note-icon { 
  color: var(--accent); 
  font-size: 1.3rem; 
  margin-right: .55rem; 
}

/* -------------------------------CARDS------------------------------------ */
.bake-card { 
  background: var(--white); 
  box-shadow: 0 8px 22px rgba(68,52,36,.06); 
  display: block; 
  overflow: hidden; 
} 

.image-wrap { 
  overflow: hidden; 
} 

.bake-card img { 
  aspect-ratio: 4 / 4.9; 
  transition: transform .55s ease; 
  width: 100%; 
} 

.bake-card:hover img { 
  transform: scale(1.07); 
} 

.bake-card-body { 
  align-items: baseline; 
  display: flex; 
  justify-content: space-between; 
  padding: 1.25rem 1.3rem; 
} 

.bake-card h3 { 
  font-size: 1.8rem; 
  margin: 0; 
} 

.bake-card span { 
  color: var(--green-soft); 
  font-size: .65rem; 
  font-weight: 600; 
  letter-spacing: .04em; 
  text-align: right; 
  text-transform: uppercase; 
}

/* -----------------------------ABOUT/LOCATIONS----------------------------------- */
.purpose-image { 
  position: relative; 
} 

.purpose-image img { 
  aspect-ratio: 1.2; 
  border-radius: var(--radius); 
  width: 100%; 
} 

.purpose-stamp { 
  align-items: center; 
  background: var(--accent); 
  border-radius: 50%; 
  bottom: -2rem; 
  color: var(--green); 
  display: flex; 
  font-family: var(--heading); 
  font-size: 1.25rem; 
  height: 8rem; 
  justify-content: center; 
  line-height: 1.1; 
  position: absolute; 
  right: -1.5rem; 
  text-align: center; 
  transform: rotate(10deg); 
  width: 8rem; 
} 

.purpose-stamp strong { 
  font-size: 1.55rem; 
} 

.location-card { 
  background: rgba(255,255,255,.58); 
  height: 100%; 
  min-height: 18rem; 
  padding: 2.1rem; 
} 

.location-featured { 
  background: var(--green); 
  color: var(--cream); 
} 

.location-featured h3, .location-featured .card-kicker, .location-featured .text-link { 
  color: var(--cream); 
} 

.location-featured .text-link { 
  border-color: var(--accent); 
} 

.card-kicker { 
  color: var(--green-soft); 
  font-size: .64rem; 
  font-weight: 700; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
} 

.card-icon { 
  color: var(--accent); 
  display: block; 
  font-size: 2rem; 
  margin: 1.5rem 0; 
} 

.location-card h3 { 
  font-size: 2.1rem; 
} 

.location-card p:not(.card-kicker) { 
  font-size: .83rem; 
}

.about-values {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* -----------------------------REVIEWS/SOCIALS----------------------------------- */
.quote-card { 
  background: var(--white); 
  border-radius: var(--radius); 
  height: 100%; 
  margin: 0; 
  padding: 2.2rem; 
} 

.quote-icon { 
  color: var(--accent); 
  font-size: 2rem; 
} 

.quote-card p { 
  color: var(--brown); 
  font-family: var(--heading); 
  font-size: 1.75rem; 
  line-height: 1.15; 
  margin: 1rem 0 1.3rem; 
} 

.quote-card footer { 
  color: var(--green-soft); 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .08em; 
  text-transform: uppercase; 
} 

.instagram-section { 
  background: var(--tan); 
  padding: 5.5rem 0 0; 
} 

.instagram-section h2 a { 
  color: var(--green); 
  text-decoration: underline; 
  text-decoration-color: var(--accent); 
  text-underline-offset: .18em; 
} 

.instagram-grid { 
  display: grid; 
  grid-template-columns: repeat(5,1fr); 
} 

.instagram-grid a { 
  overflow: hidden; 
} 

.instagram-grid img { 
  aspect-ratio: 1; 
  transition: transform .5s ease; 
  width: 100%; 
} 

.instagram-grid a:hover img { 
  transform: scale(1.08); 
}

/* -----------------------------NEWSLETTER/FOOTER----------------------------------- */
.newsletter { 
  background: var(--green); 
  color: var(--cream); 
} 

.newsletter h2 { 
  color: var(--cream); 
} 

.newsletter-inner { 
  margin: auto; 
  max-width: 44rem; 
} 

.newsletter-form { 
  display: flex; 
  margin-top: 1.7rem; 
  max-width: 33rem; 
} 

.newsletter-form input { 
  border: 0; 
  flex: 1; 
  min-width: 0; 
  padding: .9rem 1rem; 
} 

.newsletter-form input:focus { 
  outline: 3px solid var(--accent); 
  outline-offset: -3px; 
} 

.newsletter .form-message { 
  font-size: .75rem; 
  min-height: 1.4rem; 
  margin: .75rem 0 0; 
} 

.cta-section { 
  background: var(--cream); 
} 

.site-footer { 
  background: var(--dark); 
  color: #ddd5cd; 
  padding: 5rem 0 1.5rem; 
} 

.footer-brand { 
  background: var(--cream); 
  border-radius: 50%; 
  padding: .2rem; 
} 

.footer-brand img { 
  height: 5.5rem; 
  width: 5.5rem; 
} 

.footer-title { 
  color: var(--cream); 
  font-family: var(--body); 
  font-size: .72rem; 
  font-weight: 700; 
  letter-spacing: .11em; 
  text-transform: uppercase; 
} 

.footer-links { 
  list-style: none; 
  margin: 1rem 0 0; 
  padding: 0; 
} 

.footer-links li { 
  margin: .5rem 0; 
} 

.footer-links a, .site-footer p { 
  color: #c8c1b9; 
  font-size: .8rem; 
} 

.footer-links a:hover { 
  color: var(--accent); 
} 

.social-links { 
  display: flex; 
  gap: .7rem; 
} 

.social-links a { 
  align-items: center; 
  border: 1px solid #70675e; 
  border-radius: 50%; 
  display: inline-flex; 
  height: 2.2rem; 
  justify-content: center; 
  transition: all .25s; 
  width: 2.2rem; 
} 

.social-links a:hover { 
  background: var(--accent); 
  border-color: var(--accent); 
  color: var(--dark); 
} 

.footer-bottom { 
  border-top: 1px solid #524b45; 
  color: #aaa29a; 
  padding-top: 1.5rem; 
} 

.back-to-top { 
  background: var(--accent); 
  border: 0; 
  border-radius: 50%; 
  bottom: 1.25rem; 
  color: var(--dark); 
  height: 2.8rem; 
  opacity: 0; 
  position: fixed; 
  right: 1.25rem; 
  transform: translateY(1rem); 
  transition: .25s; 
  visibility: hidden; 
  width: 2.8rem; 
  z-index: 10; 
} 

.back-to-top.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
  visibility: visible; 
}

/* Preorder experience */
.announcement-bar { 
  background: var(--green); 
  color: var(--cream); 
  font-size: .72rem; 
  font-weight: 600; 
  letter-spacing: .045em; 
  padding: .55rem 0; 
  text-align: center; 
}

.announcement-bar i { 
  color: var(--accent); 
  margin-right: .35rem; 
}

.order-hero { 
  background: linear-gradient(115deg, var(--cream) 0%, var(--cream) 54%, var(--tan) 54%); 
  padding: 4rem 0 5rem; 
}

.order-hero .lead { 
  color: var(--brown); 
  font-size: 1.08rem; 
  max-width: 35rem; 
}

.pickup-pill { 
  align-items: center; 
  background: rgba(255,255,255,.72); 
  border: 1px solid rgba(49,82,54,.15); 
  border-radius: 99rem; color: var(--green); 
  display: inline-flex; 
  font-size: .75rem; 
  font-weight: 700; 
  gap: .45rem; 
  margin-bottom: 1.2rem; 
  padding: .6rem .9rem; 
}

.hero-benefits { 
  display: flex; 
  flex-wrap: wrap; 
  gap: .65rem 1.2rem; 
  list-style: none; 
  margin: 1.5rem 0 0; 
  padding: 0; 
}

.hero-benefits li { 
  color: var(--brown); 
  font-size: .76rem; 
  font-weight: 600; 
}

.hero-benefits i { 
  color: var(--green-soft); 
  margin-right: .25rem; 
}

.weekly-menu { 
  background: var(--tan); 
}

.menu-product { 
  background: var(--white); 
  box-shadow: 0 8px 24px rgba(68,52,36,.07); 
  display: flex; 
  flex-direction: column; 
  height: 100%; 
  overflow: hidden; 
}

.menu-product-image { 
  overflow: hidden; 
}

.menu-product-image img { 
  aspect-ratio: 1.15; 
  transition: transform .5s ease; 
  width: 100%; 
}

.menu-product:hover .menu-product-image img { 
  transform: scale(1.05); 
}

.menu-product-body { 
  display: flex; 
  flex: 1; 
  flex-direction: column; 
  padding: 1.35rem; 
}

.menu-product-category { 
  color: var(--green-soft); 
  font-size: .63rem; 
  font-weight: 700; 
  letter-spacing: .12em; 
  margin-bottom: .35rem; 
  text-transform: uppercase; 
}

.menu-product h3 { 
  font-size: 1.9rem; 
  margin-bottom: .45rem; 
}

.menu-product p { 
  color: #665c53; 
  font-size: .8rem; 
  margin-bottom: 1rem; 
}

.menu-product-footer { 
  align-items: center; 
  display: flex; 
  justify-content: space-between; 
  margin-top: auto; 
}

.product-price { 
  color: var(--green); 
  font-family: var(--heading); 
  font-size: 1.6rem; 
  font-weight: 700; 
}

.btn-order-small { 
  font-size: .65rem; 
  padding: .65rem .8rem; 
}

.how-it-works { 
  background: var(--cream); 
}

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

.process-icon { 
  align-items: center; 
  background: var(--tan); 
  border-radius: 50%; 
  color: var(--green); 
  display: inline-flex; 
  font-size: 1.5rem; 
  height: 4.5rem; 
  justify-content: center; 
  margin-bottom: 1rem; 
  width: 4.5rem; 
}

.process-step h3 { 
  font-size: 1.8rem; 
}

.process-step p { 
  color: #665c53; 
  font-size: .82rem; 
  margin: .5rem auto 0; 
  max-width: 16rem; 
}

.preorder-cta { 
  background: var(--green); 
  color: var(--cream); 
  padding: 5rem 0; 
}

.preorder-cta h2 { 
  color: var(--cream); 
}

/*----------------------------------- ORDER FORM --------------------------------------------------------------*/

.page-hero { 
  background: var(--tan); 
  padding: 4.5rem 0; 
  text-align: center; 
}

.page-hero h1 { 
  font-size: clamp(3.5rem, 6vw, 5.4rem); 
}

.page-hero .lead { 
  color: var(--brown); 
  margin: 1rem auto 0; 
  max-width: 38rem; 
}

.order-page { 
  background: #fcf7f1; 
  padding: 4rem 0 6rem; 
}

.order-panel { 
  background: var(--white); 
  box-shadow: var(--shadow); 
  padding: clamp(1.4rem, 3vw, 2.5rem); 
}

.form-section + .form-section { 
  border-top: 1px solid #eee4d8; 
  margin-top: 2.2rem; 
  padding-top: 2.2rem; 
}

.form-section-title { 
  align-items: center; 
  display: flex; 
  gap: .65rem; 
  margin-bottom: 1.3rem; 
}

.form-section-title i { 
  color: var(--accent); 
  font-size: 1.25rem; 
}

.form-section-title h2 { 
  font-size: 2.25rem; 
  margin: 0; 
}

.form-label { 
  color: var(--green); 
  font-size: .7rem; 
  font-weight: 700; 
  letter-spacing: .06em; 
  text-transform: uppercase; 
}

.form-control,.form-select { 
  border: 1px solid #d9cfc3;
  border-radius: 0; 
  font-size: .88rem; 
  min-height: 3rem; 
}

.form-control:focus,.form-select:focus { 
  border-color: var(--green-soft); 
  box-shadow: 0 0 0 .2rem rgba(110,139,116,.15); 
}

.order-product { 
  align-items: center; 
  border: 1px solid #eadfd2; 
  display: grid; gap: 1rem; 
  grid-template-columns: 5.5rem 1fr auto; 
  margin-bottom: .9rem; 
  padding: .7rem; 
}

.order-product img { 
  aspect-ratio: 1; 
  height: 5.5rem; 
  width: 5.5rem; 
}

.order-product h3 { 
  font-size: 1.45rem; 
  margin: 0; 
}

.order-product p { 
  color: #6b6259; 
  font-size: .72rem; 
  line-height: 1.45; 
  margin: .2rem 0; 
}

.order-product .product-price { 
  font-size: 1.25rem; 
}

.quantity-control { 
  align-items: center; 
  border: 1px solid #d9cfc3; 
  display: flex; 
}

.quantity-control button { 
  background: none; 
  border: 0; 
  color: var(--green); 
  font-size: 1.2rem; 
  height: 2rem; 
  width: 2rem; 
}

.quantity-control input { 
  border: 0; 
  font-size: .82rem; 
  font-weight: 700; 
  text-align: center; 
  width: 2rem; 
}

.quantity-control input:focus { 
  outline: 0; 
}

.order-summary { 
  background: var(--green); 
  color: var(--cream); 
  padding: 1.7rem; 
  position: sticky; 
  top: 6.5rem; 
}

.order-summary h2 { 
  color: var(--cream); 
  font-size: 2.5rem; 
}

.summary-row { 
  border-bottom: 1px solid rgba(255,255,255,.18); 
  display: flex; 
  font-size: .84rem; 
  justify-content: space-between; 
  padding: .8rem 0; 
}

.summary-row.total { 
  border: 0; 
  color: var(--accent); 
  font-family: var(--heading); 
  font-size: 1.6rem; 
  font-weight: 700; 
  padding-top: 1rem; 
}

.summary-items { 
  font-size: .76rem; 
  min-height: 2rem; 
}

.summary-items p { 
  margin: .45rem 0; 
}

.order-summary .btn { 
  width: 100%; 
}

.order-disclaimer { 
  color: rgba(255,248,242,.75); 
  font-size: .66rem; 
  line-height: 1.45;
  margin: 1rem 0 0; 
  text-align: center; 
}

.modal-content { 
  border: 0; 
  border-radius: var(--radius); 
  overflow: hidden; 
}

.confirmation-icon { 
  align-items: center; 
  background: var(--tan); 
  border-radius: 50%; 
  color: var(--green); 
  display: inline-flex; 
  font-size: 2rem; 
  height: 4.5rem; 
  justify-content: center; 
  width: 4.5rem; 
}

/* Supporting pages */
.faq-list { 
  margin: 0 auto; 
  max-width: 52rem; 
}

.accordion-item { 
  background: var(--white); 
  border: 0; 
  border-bottom: 1px solid #eadfd2; 
}

.accordion-button { 
  background: var(--white); 
  box-shadow: none !important; 
  color: var(--green); 
  font-family: var(--heading); 
  font-size: 1.65rem; 
  font-weight: 600; 
  padding: 1.25rem 1rem; 
}

.accordion-button:not(.collapsed) { 
  background: var(--white); 
  color: var(--green); 
}

.accordion-body { 
  color: #655c53; 
  font-size: .87rem; 
  padding: 0 1rem 1.25rem; 
}

.contact-card { 
  background: var(--white); 
  box-shadow: var(--shadow); 
  height: 100%; 
  padding: 2rem; 
}

.contact-card i { 
  color: var(--accent); 
  font-size: 1.8rem; 
}

.contact-card h2 { 
  font-size: 2rem; 
  margin: .8rem 0 .5rem; 
}

.location-simple { 
  background: var(--green); 
  color: var(--cream); 
  padding: clamp(2rem,5vw,4rem); 
}

.location-simple h2 { 
  color: var(--cream); 
}

.location-simple .pickup-pill { 
  background: rgba(255,255,255,.12); 
  border-color: rgba(255,255,255,.25); 
  color: var(--cream); 
}

.health-notice {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 248, 242, 0.9);
  font-size: 0.7rem;
  line-height: 1.55;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.health-notice h3 {
  color: var(--accent);
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.order-window-notice {
  background: var(--tan);
  border-left: 3px solid var(--accent);
  color: var(--brown);
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
}

/* ---------------------------------Order page notice/form--------------------------------------- */
.order-window-notice strong,
.order-window-notice span {
  display: block;
}

.order-window-notice span {
  margin-top: 0.2rem;
}

#ordering-status {
  margin-bottom: 2rem;
}

.ordering-open,
.ordering-closed {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.ordering-open {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #edf7ef;
  border: 1px solid #b8d9be;
  color: #285d32;
}

.ordering-closed {
  max-width: 760px;
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
  background: #fff8f1;
  border: 1px solid #e3c6ac;
}

.ordering-closed h2 {
  margin: 0 0 1rem;
}

.ordering-closed p {
  margin-bottom: 0.75rem;
}

.ordering-label {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ordering-thank-you {
  margin-top: 1.25rem;
  font-weight: 600;
}
/* For contact form */
.hidden {
  display: none;
}