:root {
  --cream: #fff3de;
  --cream-deep: #f5dfbd;
  --blush: #f7c7c3;
  --blush-soft: #fde3df;
  --chocolate: #2f170f;
  --chocolate-soft: #5b2c1d;
  --rust: #b6471f;
  --rust-dark: #833018;
  --olive: #55613a;
  --butter: #f0c845;
  --paper: #fff9ef;
  --line: rgba(47, 23, 15, 0.16);
  --shadow: 0 24px 60px rgba(47, 23, 15, 0.13);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--chocolate);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(247, 199, 195, 0.74), rgba(255, 243, 222, 0.96) 34rem),
    var(--cream);
  color: var(--chocolate);
}

body::before {
  content: none;
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 249, 239, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  gap: 0.1rem;
  text-decoration: none;
}

.brand-mark__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 0.9;
}

.brand-mark__subline,
.nav-links,
.eyebrow,
.button,
.placeholder-kicker,
.product-card__meta,
.site-footer {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark__subline {
  color: var(--rust);
}

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

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  gap: 0.22rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.88);
  color: var(--chocolate);
  cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--rust);
  outline: none;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
}

.nav-links a,
.site-footer a,
.cart-link,
.footer-cart {
  text-decoration: none;
}

.nav-links a,
.cart-link {
  padding: 0.45rem 0;
  color: rgba(47, 23, 15, 0.76);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible,
.cart-link:hover,
.cart-link:focus-visible,
.footer-cart:hover,
.footer-cart:focus-visible {
  color: var(--rust);
  outline: none;
}

.cart-link,
.footer-cart {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-link span,
.footer-cart span {
  display: inline-grid;
  place-items: center;
  min-width: 1.4rem;
  min-height: 1.4rem;
  margin-left: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--rust);
  font-size: 0.7rem;
}

.nav-social {
  color: var(--rust);
}

.hero-section,
.purchase-hero,
.confirmation-section {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.hero-section {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
  min-height: min(800px, calc(100vh - 4.5rem));
}

.purchase-hero,
.confirmation-section {
  min-height: 34rem;
  align-content: center;
  gap: 0;
  max-width: 980px;
}

.purchase-hero p,
.confirmation-section p {
  max-width: 44rem;
}

.purchase-hero .eyebrow,
.confirmation-section .eyebrow,
.signup-hero .eyebrow {
  margin-bottom: 0.7rem;
}

.purchase-hero h1,
.confirmation-section h1,
.signup-hero h1 {
  margin-bottom: 1.25rem;
}

.purchase-hero > p:not(.eyebrow),
.confirmation-section > p:not(.eyebrow),
.signup-hero > p:not(.eyebrow) {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.purchase-hero .season-note {
  margin-top: 0.3rem;
}

.checkout-alert {
  width: fit-content;
  margin-top: 1.3rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(182, 71, 31, 0.28);
  border-radius: 0.8rem;
  background: rgba(255, 249, 239, 0.78);
  color: var(--rust-dark);
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rust);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 11vw, 9rem);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.hero-lede,
.guide-hero p,
.section-heading,
.detail-layout p,
.flavor-card p,
.product-card p,
.principle-grid p,
.component-grid p,
.burndown-list {
  color: rgba(47, 23, 15, 0.72);
}

.hero-lede {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.sample-row,
.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  border-color: var(--rust);
  background: var(--rust);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(131, 48, 24, 0.22);
}

.button--secondary {
  background: rgba(255, 249, 239, 0.68);
  color: var(--chocolate);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(182, 71, 31, 0.5);
  background: var(--paper);
}

.render-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px dashed rgba(47, 23, 15, 0.28);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.9), rgba(247, 199, 195, 0.38)),
    repeating-linear-gradient(45deg, rgba(240, 200, 69, 0.22) 0 8px, transparent 8px 16px);
  color: var(--chocolate);
  text-align: center;
  box-shadow: var(--shadow);
}

.render-placeholder::before {
  content: "";
  position: absolute;
  width: 56%;
  aspect-ratio: 1;
  border: 1px solid rgba(85, 97, 58, 0.24);
  border-radius: 999px;
}

.render-placeholder strong,
.render-placeholder small,
.render-placeholder span {
  position: relative;
  z-index: 1;
}

.render-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
}

.render-placeholder small {
  color: rgba(47, 23, 15, 0.62);
}

.render-placeholder--hero {
  min-height: clamp(28rem, 58vw, 40rem);
  border-radius: 2rem;
}

.hero-product {
  display: grid;
  align-items: center;
}

.hero-product__image {
  display: block;
  width: min(82vw, 24rem);
  max-height: min(62vh, 36rem);
  height: auto;
  justify-self: center;
  border-radius: 1.5rem;
  filter: drop-shadow(0 24px 44px rgba(47, 23, 15, 0.18));
}

.hero-product__image--label {
  --hero-shift-x: -4rem;
  --hero-shift-y: -0.75rem;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  width: min(84vw, 34rem);
  border-radius: 1.2rem;
  cursor: pointer;
  transform: translate(var(--hero-shift-x), var(--hero-shift-y)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-origin: center;
  transition: transform 140ms ease-out, filter 160ms ease;
  will-change: transform;
}

.hero-product__image--label:hover {
  filter: drop-shadow(0 30px 52px rgba(47, 23, 15, 0.22));
}

.hero-product__image--label.is-dancing {
  animation: matzah-dance 620ms cubic-bezier(0.2, 0.82, 0.22, 1);
}

.section-block {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
}

.section-block--tint {
  background: rgba(255, 249, 239, 0.48);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.season-note {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--rust-dark);
  font-weight: 800;
}

.season-note a {
  color: var(--rust);
}

.product-grid,
.flavor-grid,
.principle-grid,
.component-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-card,
.flavor-card,
.principle-grid article,
.component-grid article,
.detail-panel {
  background: rgba(255, 249, 239, 0.76);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.product-card {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.product-card__image {
  min-height: 22rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.product-card__image--photo {
  display: grid;
  place-items: center;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 243, 222, 0.9), rgba(247, 199, 195, 0.34));
}

.product-card__image--photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}

.product-card__body,
.flavor-card,
.principle-grid article,
.component-grid article,
.detail-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.product-card__body {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  align-items: flex-start;
}

.product-card__body p:last-of-type {
  margin-bottom: auto;
}

.product-card__meta {
  color: var(--olive);
}

.product-grid--purchase {
  align-items: start;
}

.product-card--buy .product-card__body {
  min-height: 34rem;
}

.product-facts {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  margin: 1.1rem 0 0;
}

.product-facts div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.product-facts dt {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  color: rgba(47, 23, 15, 0.72);
}

.purchase-controls {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin-top: auto;
  padding-top: 1.2rem;
}

.purchase-controls label {
  display: grid;
  gap: 0.35rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-controls input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--chocolate);
  font: inherit;
  font-weight: 800;
  text-align: center;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
}

.flavor-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(85, 97, 58, 0.28);
  border-radius: 999px;
  background: rgba(255, 243, 222, 0.72);
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
}

.flavor-grid,
.principle-grid,
.component-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flavor-dot {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.flavor-dot--salt {
  background: var(--paper);
}

.flavor-dot--pecan {
  background: #9a562a;
}

.flavor-dot--coconut {
  background: linear-gradient(135deg, var(--paper), #b02f32);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.detail-layout > div {
  max-width: 760px;
}

.detail-panel h3 {
  margin-bottom: 1.2rem;
}

.detail-panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.detail-panel div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.detail-panel dt {
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 0.25rem 0 0;
}

.social-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--chocolate);
  color: var(--paper);
}

.social-band .eyebrow {
  color: var(--blush);
}

.social-band h2 {
  max-width: 760px;
}

.delivery-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
}

.delivery-callout h2,
.delivery-callout p {
  max-width: 760px;
}

.delivery-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.signup-hero {
  display: grid;
  align-content: center;
  min-height: 32rem;
  max-width: 980px;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.signup-hero p {
  max-width: 44rem;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.signup-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 249, 239, 0.76);
}

.signup-form label {
  display: grid;
  gap: 0.4rem;
}

.signup-form span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signup-form small {
  color: rgba(47, 23, 15, 0.58);
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--paper);
  color: var(--chocolate);
  font: inherit;
  padding: 0.85rem 1rem;
}

.signup-form input {
  min-height: 3rem;
  border-radius: 999px;
}

.signup-form textarea {
  resize: vertical;
}

.signup-form__message {
  min-height: 1.35rem;
  margin: 0;
  color: var(--rust-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(47, 23, 15, 0.34);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(31rem, 100vw);
  padding: 1.1rem;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(47, 23, 15, 0.18);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.cart-drawer[aria-hidden="false"] {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
  font-size: 2.5rem;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--chocolate);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cart-drawer__items {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  overflow: auto;
  padding: 1rem 0;
}

.cart-empty {
  padding: 1rem 0;
  color: rgba(47, 23, 15, 0.64);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--cream);
}

.cart-item h3 {
  font-size: 1.55rem;
}

.cart-item p {
  margin: 0.3rem 0 0;
  color: rgba(47, 23, 15, 0.64);
}

.cart-item__controls {
  display: grid;
  grid-template-columns: 2.2rem 2.2rem 2.2rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  text-align: center;
}

.cart-item__controls button,
.cart-item__remove {
  border: 0;
  background: transparent;
  color: var(--chocolate);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.cart-item__remove {
  grid-column: 1 / -1;
  justify-self: start;
  color: var(--rust);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer__footer {
  display: grid;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-drawer__footer p {
  margin: 0;
  color: rgba(47, 23, 15, 0.64);
  font-size: 0.9rem;
}

.delivery-gate {
  display: grid;
  gap: 0.4rem;
}

.delivery-gate span {
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-gate input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--chocolate);
  font: inherit;
  font-weight: 800;
  padding: 0.75rem 1rem;
}

.delivery-gate small {
  color: rgba(47, 23, 15, 0.64);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
}

.cart-message {
  min-height: 1.35rem;
  color: var(--rust-dark);
  font-weight: 700;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

@keyframes matzah-dance {
  0% {
    transform: translate(var(--hero-shift-x), var(--hero-shift-y)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(0deg) scale(1);
  }
  16% {
    transform: translate(calc(var(--hero-shift-x) - 0.15rem), calc(var(--hero-shift-y) - 0.2rem)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(-4deg) scale(1.025);
  }
  34% {
    transform: translate(calc(var(--hero-shift-x) + 0.18rem), calc(var(--hero-shift-y) - 0.42rem)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(4.5deg) scale(1.035);
  }
  52% {
    transform: translate(calc(var(--hero-shift-x) - 0.1rem), calc(var(--hero-shift-y) - 0.18rem)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(-2.5deg) scale(1.02);
  }
  72% {
    transform: translate(calc(var(--hero-shift-x) + 0.08rem), calc(var(--hero-shift-y) - 0.28rem)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(2deg) scale(1.018);
  }
  100% {
    transform: translate(var(--hero-shift-x), var(--hero-shift-y)) perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) rotateZ(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product__image--label {
    transition: none;
    will-change: auto;
  }

  .hero-product__image--label.is-dancing {
    animation: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem 1rem;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-menu-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .cart-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(47, 23, 15, 0.1);
  }

  .nav-links a:last-child,
  .cart-link:last-child {
    border-bottom: 0;
  }

  .hero-section,
  .product-grid,
  .flavor-grid,
  .principle-grid,
  .component-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-product__image--label {
    --hero-shift-x: 0rem;
    --hero-shift-y: 0rem;
    justify-self: center;
  }

  .purchase-hero,
  .confirmation-section {
    min-height: auto;
  }

  .hero-actions,
  .sample-row,
  .social-band,
  .delivery-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer > span:first-child {
    justify-self: start;
  }

  .footer-cart,
  .site-footer a {
    justify-self: center;
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .purchase-controls,
  .product-facts div,
  .signup-layout {
    grid-template-columns: 1fr;
  }
}
