.nourish-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #FDFAF6;
  border-bottom: 1px solid #E8E2D9;
}
.nourish-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.nourish-header__logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2C2C2A;
  text-decoration: none;
}
.nourish-header__logo:hover {
  color: #B87A5A;
  transition: color 150ms ease;
}
.nourish-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nourish-header__nav-link {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A4845;
  text-decoration: none;
  transition: color 150ms ease;
}
.nourish-header__nav-link:hover, .nourish-header__nav-link.active {
  color: #2C2C2A;
}
.nourish-header__cta {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FDFAF6;
  background-color: #2C2C2A;
  border: 1px solid #2C2C2A;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease;
}
.nourish-header__cta:hover {
  background-color: #B87A5A;
  border-color: #B87A5A;
}
.nourish-header__nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #2C2C2A;
}
@media (max-width: 768px) {
  .nourish-header__nav {
    display: none;
  }
  .nourish-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FDFAF6;
    border-bottom: 1px solid #E8E2D9;
    padding: 1.5rem;
    gap: 1rem;
  }
  .nourish-header__nav-toggle {
    display: block;
  }
  .nourish-header__cta {
    display: none;
  }
}

.nourish-footer {
  background-color: #2C2C2A;
  color: #C4B49A;
  padding: 4rem 1.5rem 2rem;
}
.nourish-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .nourish-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.nourish-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nourish-footer__logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 1.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FDFAF6;
  text-decoration: none;
}
.nourish-footer__strapline {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #C4B49A;
  max-width: 28ch;
}
.nourish-footer__collection {
  margin-top: 1rem;
}
.nourish-footer__collection h4 {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 0.5rem;
}
.nourish-footer__collection ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nourish-footer__collection li {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #C4B49A;
  line-height: 1.8;
}
.nourish-footer__col-heading {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 1rem;
}
.nourish-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nourish-footer__nav-link {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #C4B49A;
  text-decoration: none;
  transition: color 150ms ease;
}
.nourish-footer__nav-link:hover {
  color: #FDFAF6;
}
.nourish-footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 180, 154, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .nourish-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nourish-footer__legal {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(196, 180, 154, 0.6);
}

.nourish-menu {
  background: #F7F3EE;
  min-height: 100vh;
}
.nourish-menu__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.nourish-menu__week-panel {
  display: none;
}
.nourish-menu__week-panel.is-active {
  display: block;
}
.nourish-menu__tab-panel {
  display: none;
}
.nourish-menu__tab-panel.is-active {
  display: block;
  animation: nourishFadeUp 0.35s ease both;
}

.nourish-menu--no-js .nourish-menu__week-panel,
.nourish-menu--no-js .nourish-menu__tab-panel {
  display: block;
}

.nourish-week-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem 0.75rem;
  position: sticky;
  top: 61px;
  z-index: 60;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin: 0 -1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.nourish-week-selector::-webkit-scrollbar {
  display: none;
}
.nourish-week-selector__pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid #E8E2D9;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 250ms ease;
  white-space: nowrap;
  min-width: 92px;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-week-selector__pill:hover {
  border-color: #C4B49A;
}
.nourish-week-selector__pill.is-active, .nourish-week-selector__pill[aria-pressed=true] {
  background: #2C2C2A;
  border-color: #2C2C2A;
}
.nourish-week-selector__pill.is-active .nourish-week-selector__pill-label, .nourish-week-selector__pill[aria-pressed=true] .nourish-week-selector__pill-label {
  color: #C4944A;
}
.nourish-week-selector__pill.is-active .nourish-week-selector__pill-theme, .nourish-week-selector__pill[aria-pressed=true] .nourish-week-selector__pill-theme {
  color: #F7F3EE;
}
.nourish-week-selector__pill-label {
  font-size: 0.5025rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4B49A;
  margin-bottom: 1px;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-week-selector__pill-theme {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.75rem;
  font-style: italic;
  color: #4A4845;
}

.nourish-menu-header {
  padding: 2.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: nourishFadeDown 0.5s ease;
}
.nourish-menu-header__wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #4D6152;
}
.nourish-menu-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 5px 1rem;
  border: 1px solid #C4B49A;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4A4845;
}
.nourish-menu-header__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #B87A5A;
  display: inline-block;
  flex-shrink: 0;
}
.nourish-menu-header__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 7.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #2C2C2A;
  margin-top: 1rem;
}
.nourish-menu-header__title em {
  font-style: italic;
  color: #4D6152;
}
.nourish-menu-header__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: #4A4845;
  margin-top: 0.75rem;
}
.nourish-menu-header__rule {
  width: 48px;
  height: 1px;
  background: #C4B49A;
  margin-top: 1.5rem;
}
.nourish-menu-header__order-window {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 9999px;
}
@media (max-width: 500px) {
  .nourish-menu-header__order-window {
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }
}
.nourish-menu-header__order-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nourish-menu-header__order-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4B49A;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-menu-header__order-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #4D6152;
}
.nourish-menu-header__order-arrow {
  color: #C4B49A;
  font-size: 0.75rem;
}

.nourish-menu-nav {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.5rem;
  border-bottom: 1px solid #E8E2D9;
  overflow-x: auto;
  scrollbar-width: none;
}
.nourish-menu-nav::-webkit-scrollbar {
  display: none;
}
.nourish-menu-nav__tab {
  background: none;
  border: none;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4B49A;
  transition: all 250ms ease;
  white-space: nowrap;
}
.nourish-menu-nav__tab:hover {
  color: #4A4845;
}
.nourish-menu-nav__tab.is-active {
  color: #4D6152;
  border-bottom-color: #4D6152;
  font-weight: 400;
}

.nourish-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.nourish-section-label__text {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #B87A5A;
  white-space: nowrap;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-section-label__line {
  flex: 1;
  height: 1px;
  background: #E8E2D9;
}

.nourish-dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) {
  .nourish-dish-grid {
    grid-template-columns: 1fr;
  }
}

.nourish-dish-card {
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 250ms ease, box-shadow 250ms ease;
  animation: nourishFadeUp 0.45s ease both;
}
.nourish-dish-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(44, 44, 42, 0.1);
}
.nourish-dish-card--featured {
  background: #4D6152;
  border-color: transparent;
  padding: 2rem;
  margin-bottom: 1rem;
}
.nourish-dish-card--featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(44, 44, 42, 0.12);
}
.nourish-dish-card--featured .nourish-dish-card__number {
  color: rgba(247, 243, 238, 0.4);
}
.nourish-dish-card--featured .nourish-dish-card__name {
  color: #F7F3EE;
  font-size: 1.875rem;
}
.nourish-dish-card--featured .nourish-dish-card__description {
  color: rgba(247, 243, 238, 0.8);
}
.nourish-dish-card--featured .nourish-dish-card__ingredient {
  background: rgba(247, 243, 238, 0.1);
  border-color: rgba(247, 243, 238, 0.15);
  color: rgba(247, 243, 238, 0.85);
}
.nourish-dish-card--featured .nourish-dish-card__wellness {
  background: rgba(247, 243, 238, 0.08);
  color: rgba(247, 243, 238, 0.75);
  border-left-color: #C4944A;
}
.nourish-dish-card--featured .nourish-dish-card__prep-btn {
  border-color: rgba(247, 243, 238, 0.25);
  color: rgba(247, 243, 238, 0.8);
}
.nourish-dish-card--featured .nourish-dish-card__prep-btn:hover {
  border-color: #C4944A;
  color: #C4944A;
}
.nourish-dish-card__featured-label {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4944A;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-dish-card__featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .nourish-dish-card__featured-grid {
    grid-template-columns: 1fr;
  }
}
.nourish-dish-card__number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 11px;
  color: #C4B49A;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.nourish-dish-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: #2C2C2A;
  margin-bottom: 0.75rem;
}
.nourish-dish-card__description {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.75;
  color: #4A4845;
  margin-bottom: 1rem;
}
.nourish-dish-card__ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.nourish-dish-card__ingredient {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4A4845;
  padding: 4px 0.75rem;
  background: #F7F3EE;
  border-radius: 9999px;
  border: 1px solid #E8E2D9;
}
.nourish-dish-card__wellness {
  font-size: 10px;
  font-weight: 300;
  font-style: italic;
  color: #4D6152;
  line-height: 1.6;
  padding: 0.5rem 0.75rem;
  background: rgba(138, 158, 140, 0.08);
  border-left: 2px solid #8A9E8C;
  border-radius: 0 4px 4px 0;
  margin-bottom: 0.75rem;
}
.nourish-dish-card__wellness-icon {
  margin-right: 4px;
  opacity: 0.7;
}
.nourish-dish-card__prep-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 0;
  background: none;
  border: 1px solid #E8E2D9;
  border-radius: 2px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4A4845;
  cursor: pointer;
  transition: all 150ms ease;
  font-weight: 300;
}
.nourish-dish-card__prep-btn:hover {
  border-color: #4D6152;
  color: #4D6152;
}
.nourish-dish-card__prep-btn:hover .nourish-dish-card__prep-arrow {
  transform: translateX(2px);
}
.nourish-dish-card__prep-arrow {
  font-size: 11px;
  transition: transform 150ms ease;
}

.nourish-bowl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .nourish-bowl-grid {
    grid-template-columns: 1fr;
  }
}

.nourish-bowl-card__tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 0.75rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}

.nourish-bowl-philosophy {
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  margin-bottom: 2.5rem;
}
.nourish-bowl-philosophy__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: #2C2C2A;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.nourish-bowl-philosophy__text {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.8;
  color: #4A4845;
}

.nourish-addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .nourish-addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nourish-addon-card {
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 150ms ease;
  animation: nourishFadeUp 0.4s ease both;
}
.nourish-addon-card:hover {
  transform: translateY(-2px);
}
.nourish-addon-card__emoji {
  font-size: 22px;
  display: block;
  margin-bottom: 0.75rem;
}
.nourish-addon-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  color: #2C2C2A;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  font-weight: 400;
}
.nourish-addon-card__desc {
  font-size: 10px;
  font-weight: 300;
  color: #C4B49A;
  line-height: 1.5;
  font-family: "Jost", system-ui, sans-serif;
}

.nourish-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) {
  .nourish-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nourish-price-card {
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: #FDFAF6;
  transition: all 250ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.nourish-price-card:hover {
  border-color: #4D6152;
  transform: translateY(-2px);
}
.nourish-price-card--popular {
  background: #4D6152;
  border-color: transparent;
}
.nourish-price-card--popular .nourish-price-card__name,
.nourish-price-card--popular .nourish-price-card__serves,
.nourish-price-card--popular .nourish-price-card__amount,
.nourish-price-card--popular .nourish-price-card__includes {
  color: #F7F3EE;
}
.nourish-price-card--popular .nourish-price-card__per {
  color: rgba(247, 243, 238, 0.6);
}
.nourish-price-card--popular .nourish-price-card__cta {
  background: #F7F3EE;
  color: #4D6152;
  border-color: transparent;
}
.nourish-price-card__popular-tag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #B87A5A;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FDFAF6;
  padding: 5px 0;
  text-align: center;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-price-card__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: #2C2C2A;
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
  font-weight: 400;
}
.nourish-price-card__serves {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4B49A;
  margin-bottom: 1rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-price-card__amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #2C2C2A;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.nourish-price-card__amount sup {
  font-size: 1.125rem;
  vertical-align: super;
}
.nourish-price-card__per {
  font-size: 9px;
  color: #C4B49A;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-price-card__includes {
  font-size: 10px;
  font-weight: 300;
  color: #4A4845;
  line-height: 1.6;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-price-card__cta {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 0;
  background: none;
  border: 1px solid #4D6152;
  border-radius: 2px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4D6152;
  cursor: pointer;
  transition: opacity 150ms ease;
  text-align: center;
  text-decoration: none;
}
.nourish-price-card__cta:hover {
  opacity: 0.75;
}

.nourish-collection-block {
  background: #2C2C2A;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}
.nourish-collection-block__eyebrow {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C4944A;
  margin-bottom: 0.75rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-collection-block__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: #F7F3EE;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.nourish-collection-block__title em {
  color: #C4B49A;
  font-style: italic;
}
.nourish-collection-block__body {
  font-size: 0.75rem;
  line-height: 1.8;
  color: rgba(247, 243, 238, 0.7);
  max-width: 520px;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-collection-block__slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .nourish-collection-block__slots {
    grid-template-columns: 1fr;
  }
}
.nourish-collection-block__slot {
  padding: 1.25rem;
  border: 1px solid rgba(247, 243, 238, 0.15);
  border-radius: 4px;
  background: rgba(247, 243, 238, 0.03);
}
.nourish-collection-block__slot-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
  margin-bottom: 0.5rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-collection-block__slot-day {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: #F7F3EE;
  margin-bottom: 2px;
  font-weight: 300;
}
.nourish-collection-block__slot-time {
  font-size: 11px;
  color: rgba(247, 243, 238, 0.7);
  letter-spacing: 0.08em;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-collection-block__note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 238, 0.1);
  font-size: 11px;
  color: rgba(247, 243, 238, 0.65);
  line-height: 1.7;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}

.nourish-social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem 0 0;
  padding: 1.25rem 0;
  border-top: 1px solid #E8E2D9;
  border-bottom: 1px solid #E8E2D9;
  flex-wrap: wrap;
}
.nourish-social-strip__text {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C4B49A;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-social-strip__tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  font-style: italic;
  color: #4D6152;
}
.nourish-social-strip__sep {
  color: #C4B49A;
  font-size: 0.75rem;
}

.nourish-menu-footer-note {
  text-align: center;
  padding: 2rem 0 0;
  border-top: 1px solid #E8E2D9;
  margin-top: 2rem;
}
.nourish-menu-footer-note p {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #C4B49A;
  margin-bottom: 0.5rem;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-menu-footer-note strong {
  font-weight: 400;
  color: #4A4845;
}
.nourish-menu-footer-note__delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B87A5A;
}

.nourish-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 42, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
}
.nourish-modal-overlay.is-open {
  display: flex;
  animation: nourishOverlayFade 0.25s ease;
}
@media (min-width: 700px) {
  .nourish-modal-overlay {
    align-items: center;
  }
}

.nourish-modal {
  background: #F7F3EE;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  animation: nourishModalSlide 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -8px 60px rgba(0, 0, 0, 0.2);
}
@media (min-width: 700px) {
  .nourish-modal {
    border-radius: 16px;
    animation: nourishModalPop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.nourish-modal__hero {
  background: #4D6152;
  padding: 2.5rem 2rem;
  position: relative;
  color: #F7F3EE;
}
.nourish-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(247, 243, 238, 0.15);
  border: none;
  border-radius: 50%;
  color: #F7F3EE;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: background 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nourish-modal__close:hover {
  background: rgba(247, 243, 238, 0.25);
}
.nourish-modal__eyebrow {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C4944A;
  margin-bottom: 0.75rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-modal__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.nourish-modal__desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(247, 243, 238, 0.75);
  font-weight: 300;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-modal__body {
  padding: 2rem 2rem 2.5rem;
}
.nourish-modal__prep-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  overflow: hidden;
  background: #FDFAF6;
  margin-bottom: 2rem;
}
.nourish-modal__prep-meta-item {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid #E8E2D9;
}
.nourish-modal__prep-meta-item:last-child {
  border-right: none;
}
.nourish-modal__prep-meta-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C4B49A;
  margin-bottom: 0.25rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-modal__prep-meta-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  color: #2C2C2A;
  line-height: 1.2;
  font-weight: 400;
}
.nourish-modal__section {
  margin-bottom: 1.5rem;
}
.nourish-modal__section-title {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #B87A5A;
  margin-bottom: 0.75rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-modal__instructions {
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 1rem;
}
.nourish-modal__reheat {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E8E2D9;
}
.nourish-modal__reheat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nourish-modal__reheat:first-child {
  padding-top: 0;
}
.nourish-modal__reheat-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.nourish-modal__reheat-body {
  flex: 1;
}
.nourish-modal__reheat-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.875rem;
  color: #2C2C2A;
  margin-bottom: 2px;
  font-weight: 400;
}
.nourish-modal__reheat-text {
  font-size: 11px;
  line-height: 1.6;
  color: #4A4845;
  font-weight: 300;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-modal__allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nourish-modal__allergen {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B87A5A;
  padding: 5px 0.75rem;
  background: rgba(184, 122, 90, 0.08);
  border: 1px solid rgba(184, 122, 90, 0.2);
  border-radius: 9999px;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-modal__allergen-none {
  font-size: 11px;
  color: #8A9E8C;
  font-style: italic;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.nourish-modal__storage-note {
  font-size: 11px;
  line-height: 1.7;
  color: #4A4845;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-left: 2px solid #8A9E8C;
  padding: 0.75rem 1rem;
  border-radius: 0 4px 4px 0;
  font-weight: 300;
  font-family: "Jost", system-ui, sans-serif;
}
.nourish-modal__chef-tip {
  background: #2C2C2A;
  color: #F7F3EE;
  padding: 1rem 1.25rem;
  border-radius: 4px;
}
.nourish-modal__chef-tip-label {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #C4944A;
  margin-bottom: 0.5rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
}
.nourish-modal__chef-tip-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(247, 243, 238, 0.9);
  font-weight: 300;
}

@keyframes nourishFadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nourishFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nourishOverlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes nourishModalSlide {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes nourishModalPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.nourish-page-hero {
  background: #F7F3EE;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.nourish-page-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nourish-page-hero__eyebrow {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
}
.nourish-page-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  color: #2C2C2A;
}
.nourish-page-hero__title em {
  font-style: italic;
  color: #B87A5A;
}
.nourish-page-hero__sub {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4A4845;
  max-width: 52ch;
  margin-top: 0.5rem;
}
.nourish-page-hero__rule {
  width: 40px;
  height: 1px;
  background: #C4B49A;
  margin-top: 1rem;
}
.nourish-page-hero--dark {
  background: #2C2C2A;
}
.nourish-page-hero--dark .nourish-page-hero__eyebrow {
  color: #C4944A;
}
.nourish-page-hero--dark .nourish-page-hero__title {
  color: #F7F3EE;
}
.nourish-page-hero--dark .nourish-page-hero__sub {
  color: rgba(247, 243, 238, 0.7);
}
.nourish-page-hero--dark .nourish-page-hero__rule {
  background: rgba(247, 243, 238, 0.2);
}
.nourish-page-hero--sage {
  background: #4D6152;
}
.nourish-page-hero--sage .nourish-page-hero__eyebrow {
  color: #C4944A;
}
.nourish-page-hero--sage .nourish-page-hero__title {
  color: #F7F3EE;
}
.nourish-page-hero--sage .nourish-page-hero__title em {
  color: #C4B49A;
}
.nourish-page-hero--sage .nourish-page-hero__sub {
  color: rgba(247, 243, 238, 0.75);
}

.nourish-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nourish-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .nourish-form__row {
    grid-template-columns: 1fr;
  }
}
.nourish-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.nourish-form__label {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4A4845;
}
.nourish-form__input, .nourish-form__select, .nourish-form__textarea {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #2C2C2A;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  transition: border-color 150ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.nourish-form__input::placeholder, .nourish-form__select::placeholder, .nourish-form__textarea::placeholder {
  color: #C4B49A;
}
.nourish-form__input:focus, .nourish-form__select:focus, .nourish-form__textarea:focus {
  outline: none;
  border-color: #8A9E8C;
}
.nourish-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4845' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.nourish-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.nourish-form__submit {
  align-self: flex-start;
}
.nourish-form__note {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #C4B49A;
  line-height: 1.6;
}
.nourish-form--inline {
  flex-direction: row;
  align-items: flex-end;
  gap: 0.75rem;
}
.nourish-form--inline .nourish-form__field {
  flex: 1;
}
@media (max-width: 500px) {
  .nourish-form--inline {
    flex-direction: column;
  }
  .nourish-form--inline .nourish-form__submit {
    align-self: stretch;
  }
}

.nourish-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: #F7F3EE;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.nourish-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 900px) {
  .nourish-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.nourish-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nourish-hero__eyebrow {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
}
.nourish-hero__headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1.05;
  color: #2C2C2A;
}
.nourish-hero__headline em {
  font-style: italic;
  color: #B87A5A;
}
@media (max-width: 1100px) {
  .nourish-hero__headline {
    font-size: 3.75rem;
  }
}
@media (max-width: 768px) {
  .nourish-hero__headline {
    font-size: 3rem;
  }
}
.nourish-hero__sub {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4A4845;
  max-width: 44ch;
}
.nourish-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.nourish-hero__image {
  aspect-ratio: 4/5;
  background-color: #E8E2D9;
  border-radius: 16px;
  overflow: hidden;
}
.nourish-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nourish-hero__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4B49A;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.nourish-how {
  padding: 6rem 1.5rem;
  background-color: #FDFAF6;
}
.nourish-how__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nourish-how__header {
  text-align: center;
  margin-bottom: 4rem;
}
.nourish-how__eyebrow {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 0.75rem;
}
.nourish-how__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 2.25rem;
  color: #2C2C2A;
}
.nourish-how__heading em {
  font-style: italic;
  color: #B87A5A;
}
.nourish-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .nourish-how__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .nourish-how__steps {
    grid-template-columns: 1fr;
  }
}
.nourish-how__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nourish-how__step-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 3rem;
  color: #E8E2D9;
  line-height: 1;
}
.nourish-how__step-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2C2C2A;
}
.nourish-how__step-body {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4845;
}

.nourish-this-week {
  padding: 6rem 1.5rem;
  background-color: #F7F3EE;
}
.nourish-this-week__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nourish-this-week__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nourish-this-week__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 2.25rem;
  color: #2C2C2A;
}
.nourish-this-week__heading em {
  font-style: italic;
  color: #B87A5A;
}
.nourish-this-week__placeholder {
  text-align: center;
  padding: 5rem 1.5rem;
  border: 1px dashed #E8E2D9;
  border-radius: 16px;
  color: #4A4845;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
}

.nourish-cta-band {
  padding: 6rem 1.5rem;
  background-color: #4D6152;
  text-align: center;
}
.nourish-cta-band__inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nourish-cta-band__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 2.25rem;
  color: #FDFAF6;
  line-height: 1.2;
}
.nourish-cta-band__heading em {
  font-style: italic;
}
.nourish-cta-band__sub {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(253, 250, 246, 0.75);
  line-height: 1.7;
}

.nourish-story__section {
  padding: 5rem 1.5rem;
}
.nourish-story__section--alt {
  background: #F7F3EE;
}
.nourish-story__inner {
  max-width: 680px;
  margin: 0 auto;
}
.nourish-story__inner--wide {
  max-width: 1200px;
  margin: 0 auto;
}
.nourish-story__lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.35;
  color: #2C2C2A;
  margin-bottom: 2rem;
}
.nourish-story__lead em {
  font-style: italic;
  color: #B87A5A;
}
.nourish-story__body p {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A4845;
  margin-bottom: 1.5rem;
}
.nourish-story__body p:last-child {
  margin-bottom: 0;
}
.nourish-story__rule {
  width: 40px;
  height: 1px;
  background: #C4B49A;
  margin: 2.5rem 0;
}
.nourish-story__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .nourish-story__values {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.nourish-story__value {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
}
.nourish-story__value-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #E8E2D9;
  line-height: 1;
}
.nourish-story__value-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #2C2C2A;
}
.nourish-story__value-text {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4845;
}
.nourish-story__quote {
  border-left: 2px solid #B87A5A;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: #F7F3EE;
  border-radius: 0 4px 4px 0;
}
.nourish-story__quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #2C2C2A;
  font-weight: 300;
}

.nourish-ethics__section {
  padding: 5rem 1.5rem;
}
.nourish-ethics__section--alt {
  background: #F7F3EE;
}
.nourish-ethics__section--dark {
  background: #2C2C2A;
  color: #F7F3EE;
}
.nourish-ethics__inner {
  max-width: 680px;
  margin: 0 auto;
}
.nourish-ethics__inner--wide {
  max-width: 1200px;
  margin: 0 auto;
}
.nourish-ethics__section-eyebrow {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 1rem;
}
.nourish-ethics__section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #2C2C2A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.nourish-ethics__section-title em {
  font-style: italic;
  color: #B87A5A;
}
.nourish-ethics__section-body {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A4845;
  margin-bottom: 2.5rem;
}
.nourish-ethics__principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .nourish-ethics__principles {
    grid-template-columns: 1fr;
  }
}
.nourish-ethics__principle {
  padding: 1.5rem;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nourish-ethics__principle-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.nourish-ethics__principle-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #2C2C2A;
}
.nourish-ethics__principle-text {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4845;
}
.nourish-ethics__commitment {
  background: #4D6152;
  border-radius: 4px;
  padding: 2.5rem 2rem;
  color: #F7F3EE;
}
.nourish-ethics__commitment p {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(247, 243, 238, 0.8);
  margin-top: 1rem;
}
.nourish-ethics__commitment-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: #F7F3EE;
  line-height: 1.2;
}
.nourish-ethics__commitment-title em {
  font-style: italic;
  color: #C4B49A;
}

.nourish-faq__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.nourish-faq__group {
  margin-bottom: 3rem;
}
.nourish-faq__group-title {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E8E2D9;
}
.nourish-faq__item {
  border-bottom: 1px solid #E8E2D9;
}
.nourish-faq__item:first-of-type {
  border-top: 1px solid #E8E2D9;
}
.nourish-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #2C2C2A;
  transition: color 150ms ease;
}
.nourish-faq__question:hover {
  color: #4D6152;
}
.nourish-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: #C4B49A;
  transition: transform 250ms ease, color 150ms ease;
}
.nourish-faq__icon::before, .nourish-faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 250ms ease, opacity 150ms ease;
}
.nourish-faq__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nourish-faq__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nourish-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 250ms ease;
}
.nourish-faq__answer p {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: #4A4845;
  padding-bottom: 1.25rem;
}
.nourish-faq__answer a {
  color: #4D6152;
  text-decoration: underline;
  text-decoration-color: rgba(77, 97, 82, 0.4);
}
.nourish-faq__answer a:hover {
  text-decoration-color: #4D6152;
}
.nourish-faq__item.is-open .nourish-faq__answer {
  max-height: 500px;
}
.nourish-faq__item.is-open .nourish-faq__icon {
  color: #4D6152;
}
.nourish-faq__item.is-open .nourish-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.nourish-faq__item.is-open .nourish-faq__question {
  color: #4D6152;
}

.nourish-faq--no-js .nourish-faq__answer {
  max-height: none;
}

.nourish-contact__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .nourish-contact__body {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.nourish-contact__form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nourish-contact__form-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #2C2C2A;
}
.nourish-contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2.5rem;
}
@media (max-width: 900px) {
  .nourish-contact__sidebar {
    padding-top: 0;
  }
}
.nourish-contact__info-block {
  padding: 1.5rem;
  background: #F7F3EE;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nourish-contact__info-title {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
}
.nourish-contact__info-content {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4845;
}
.nourish-contact__info-content a {
  color: #4D6152;
  text-decoration: underline;
  text-decoration-color: rgba(77, 97, 82, 0.4);
}
.nourish-contact__info-content a:hover {
  text-decoration-color: #4D6152;
}
.nourish-contact__info-content strong {
  font-weight: 400;
  color: #2C2C2A;
  display: block;
  margin-bottom: 0.25rem;
}
.nourish-contact__slots {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nourish-contact__slot {
  padding: 1rem;
  background: #FDFAF6;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
}
.nourish-contact__slot-label {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C4B49A;
  margin-bottom: 0.25rem;
}
.nourish-contact__slot-day {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  color: #2C2C2A;
  font-weight: 400;
}
.nourish-contact__slot-time {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #4A4845;
}
.nourish-contact__success {
  padding: 1.5rem;
  background: rgba(138, 158, 140, 0.08);
  border: 1px solid rgba(138, 158, 140, 0.2);
  border-radius: 4px;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #4D6152;
  display: none;
}
.nourish-contact__success.is-visible {
  display: block;
}

.nourish-waitlist__body {
  max-width: 480px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.nourish-waitlist__form-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.nourish-waitlist__perks {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  padding-top: 1.5rem;
  border-top: 1px solid #E8E2D9;
}
.nourish-waitlist__perks-title {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 0.5rem;
}
.nourish-waitlist__perk {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #4A4845;
  line-height: 1.5;
}
.nourish-waitlist__perk-icon {
  color: #8A9E8C;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.875rem;
}
.nourish-waitlist__success {
  padding: 2rem;
  background: #F7F3EE;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  display: none;
  text-align: center;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.nourish-waitlist__success.is-visible {
  display: flex;
}
.nourish-waitlist__success-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #2C2C2A;
}
.nourish-waitlist__success-text {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #4A4845;
  line-height: 1.6;
}

.nourish-kitchen__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.nourish-kitchen__filter {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.nourish-kitchen__filter-btn {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4B49A;
  background: none;
  border: 1px solid #E8E2D9;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.nourish-kitchen__filter-btn:hover, .nourish-kitchen__filter-btn.is-active {
  background: #2C2C2A;
  border-color: #2C2C2A;
  color: #FDFAF6;
}
.nourish-kitchen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .nourish-kitchen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .nourish-kitchen__grid {
    grid-template-columns: 1fr;
  }
}
.nourish-kitchen__empty {
  text-align: center;
  padding: 5rem 1.5rem;
  color: #4A4845;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  grid-column: 1/-1;
}

.nourish-post-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.nourish-post-card:hover .nourish-post-card__image-wrap img {
  transform: scale(1.03);
}
.nourish-post-card:hover .nourish-post-card__title {
  color: #4D6152;
}
.nourish-post-card__image-wrap {
  aspect-ratio: 3/2;
  background: #E8E2D9;
  border-radius: 4px;
  overflow: hidden;
}
.nourish-post-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.nourish-post-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #C4B49A;
  text-transform: uppercase;
}
.nourish-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nourish-post-card__type {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B87A5A;
}
.nourish-post-card__date {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #C4B49A;
}
.nourish-post-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2C2C2A;
  transition: color 150ms ease;
}
.nourish-post-card__excerpt {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #4A4845;
}
.nourish-post-card__read-more {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4D6152;
  margin-top: auto;
}

.nourish-post__hero {
  background: #F7F3EE;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.nourish-post__hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nourish-post__type {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B87A5A;
}
.nourish-post__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  color: #2C2C2A;
}
.nourish-post__meta {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: #C4B49A;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nourish-post__meta-sep {
  color: #E8E2D9;
}
.nourish-post__image {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nourish-post__image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 4px;
}
.nourish-post__body {
  max-width: 680px;
  margin: 4rem auto 6rem;
  padding: 0 1.5rem;
}

.nourish-prose h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: #2C2C2A;
  margin: 3rem 0 1rem;
  line-height: 1.2;
}
.nourish-prose h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2C2C2A;
  margin: 2rem 0 0.75rem;
}
.nourish-prose p {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A4845;
  margin-bottom: 1.5rem;
}
.nourish-prose strong {
  font-weight: 400;
  color: #2C2C2A;
}
.nourish-prose em {
  font-style: italic;
}
.nourish-prose a {
  color: #4D6152;
  text-decoration: underline;
  text-decoration-color: rgba(77, 97, 82, 0.4);
}
.nourish-prose a:hover {
  text-decoration-color: #4D6152;
}
.nourish-prose ul, .nourish-prose ol {
  margin: 0 0 1.5rem 1.5rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A4845;
}
.nourish-prose blockquote {
  border-left: 2px solid #B87A5A;
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: #F7F3EE;
  border-radius: 0 4px 4px 0;
}
.nourish-prose blockquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #2C2C2A;
  margin: 0;
}
.nourish-prose hr {
  border: none;
  height: 1px;
  background: #E8E2D9;
  margin: 2.5rem 0;
}

.nourish-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E8E2D9;
}
.nourish-post-tags__label {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C4B49A;
  align-self: center;
  margin-right: 0.5rem;
}
.nourish-post-tags__tag {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #4D6152;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(77, 97, 82, 0.3);
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 150ms ease;
}
.nourish-post-tags__tag:hover {
  background: rgba(77, 97, 82, 0.06);
}

.nourish-recipe__hero {
  background: #4D6152;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  color: #F7F3EE;
}
.nourish-recipe__hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.nourish-recipe__type {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C4944A;
}
.nourish-recipe__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  color: #F7F3EE;
}
.nourish-recipe__excerpt {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(247, 243, 238, 0.8);
  max-width: 52ch;
}
.nourish-recipe__meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 238, 0.15);
}
@media (max-width: 500px) {
  .nourish-recipe__meta-strip {
    gap: 1.25rem;
  }
}
.nourish-recipe__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.nourish-recipe__meta-label {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.5);
}
.nourish-recipe__meta-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.125rem;
  color: #F7F3EE;
  font-weight: 300;
}
.nourish-recipe__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) {
  .nourish-recipe__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.nourish-recipe__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 5rem;
}
.nourish-recipe__sidebar-block {
  background: #F7F3EE;
  border: 1px solid #E8E2D9;
  border-radius: 4px;
  padding: 1.5rem;
}
.nourish-recipe__sidebar-title {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A9E8C;
  margin-bottom: 1rem;
}
.nourish-recipe__ingredients {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nourish-recipe__ingredient {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #4A4845;
  line-height: 1.5;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E8E2D9;
}
.nourish-recipe__ingredient:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nourish-recipe__ingredient strong {
  font-weight: 400;
  color: #2C2C2A;
}
.nourish-recipe__allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nourish-recipe__allergen {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B87A5A;
  padding: 4px 0.75rem;
  background: rgba(184, 122, 90, 0.08);
  border: 1px solid rgba(184, 122, 90, 0.2);
  border-radius: 9999px;
}
.nourish-recipe__wellness-note {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.6;
  color: #4D6152;
  padding: 1rem;
  background: rgba(138, 158, 140, 0.06);
  border-left: 2px solid #8A9E8C;
  border-radius: 0 4px 4px 0;
}
.nourish-recipe__main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.nourish-recipe__steps-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 300;
  color: #2C2C2A;
  margin-bottom: 2rem;
}
.nourish-recipe__step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E8E2D9;
}
.nourish-recipe__step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nourish-recipe__step-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  color: #E8E2D9;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.nourish-recipe__step-text {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A4845;
  padding-top: 0.5rem;
}
.nourish-recipe__step-text strong {
  font-weight: 400;
  color: #2C2C2A;
}
.nourish-recipe__chef-tip {
  background: #2C2C2A;
  border-radius: 4px;
  padding: 1.5rem 2rem;
}
.nourish-recipe__chef-tip-label {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C4944A;
  margin-bottom: 0.75rem;
}
.nourish-recipe__chef-tip-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(247, 243, 238, 0.9);
  font-weight: 300;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  color: #2C2C2A;
  background-color: #FDFAF6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.nourish-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.nourish-btn--primary {
  background-color: #2C2C2A;
  color: #FDFAF6;
  border-color: #2C2C2A;
}
.nourish-btn--primary:hover {
  background-color: #B87A5A;
  border-color: #B87A5A;
}
.nourish-btn--outline {
  background-color: transparent;
  color: #2C2C2A;
  border-color: #2C2C2A;
}
.nourish-btn--outline:hover {
  background-color: #2C2C2A;
  color: #FDFAF6;
}
.nourish-btn--light {
  background-color: #FDFAF6;
  color: #2C2C2A;
  border-color: #FDFAF6;
}
.nourish-btn--light:hover {
  background-color: #F7F3EE;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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