:root {
  --cream: #efe3cf;
  --flour: #fff8ec;
  --linen: #f8efe1;
  --wheat: #d8a557;
  --honey: #c98d37;
  --gold: #e2b968;
  --toast: #b5673f;
  --crust: #6d3a24;
  --cocoa: #211712;
  --olive: #2f442f;
  --sage: #758864;
  --sage-dark: #35492f;
  --berry: #763348;
  --charcoal: #221d18;
  --paper: rgba(255, 248, 236, 0.84);
  --paper-strong: rgba(255, 248, 236, 0.96);
  --line: rgba(109, 58, 36, 0.17);
  --line-strong: rgba(109, 58, 36, 0.32);
  --shadow: 0 28px 72px rgba(35, 24, 18, 0.14);
  --deep-shadow: 0 38px 94px rgba(35, 24, 18, 0.24);
  --button-shadow: 0 18px 38px rgba(35, 24, 18, 0.24);
  --radius: 0.5rem;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Trebuchet MS", sans-serif;
  --script: "Homemade Apple", cursive;
  --scroll-progress: 0;
  --hero-shift: 0px;
  --page-drift: 0px;
  --motion-tilt: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background:
    linear-gradient(128deg, rgba(255, 248, 236, 0.98), rgba(248, 239, 225, 0.9) 38%, rgba(229, 211, 187, 0.9)),
    linear-gradient(62deg, transparent 0 30%, rgba(226, 185, 104, 0.14) 30% 31%, transparent 31% 70%, rgba(47, 68, 47, 0.09) 70% 71%, transparent 71%),
    repeating-linear-gradient(90deg, rgba(109, 58, 36, 0.026) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(47, 68, 47, 0.022) 0 1px, transparent 1px 58px),
    linear-gradient(180deg, var(--flour), var(--cream) 52%, #e7d2b8);
  color: var(--charcoal);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(109, 58, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 68, 47, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 248, 236, 0.3) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(47, 68, 47, 0.12), transparent 33%, rgba(118, 51, 72, 0.07), rgba(181, 103, 63, 0.08));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--gold), var(--toast), var(--berry), var(--olive));
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 248, 236, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(35, 24, 18, 0);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 248, 236, 0.94);
  box-shadow: 0 16px 42px rgba(35, 24, 18, 0.12);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(226, 185, 104, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(226, 185, 104, 0.24), transparent 42%),
    var(--olive);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.brand-mark small {
  display: block;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(0.85rem, 2vw, 2rem);
  color: var(--cocoa);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-links a:hover,
.footer-links a:hover,
.nav-links a.is-active {
  color: var(--berry);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 0.12rem;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(47, 68, 47, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.14), transparent),
    var(--olive);
  color: var(--flour);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-order-bar {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.6rem);
  min-height: calc(100vh - 4.75rem);
  padding: clamp(2.2rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 248, 236, 0.64), transparent 46%),
    repeating-linear-gradient(90deg, rgba(226, 185, 104, 0.055) 0 1px, transparent 1px 7.5rem);
}

.hero::before {
  content: "grace & grain";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 1.25rem;
  color: rgba(118, 51, 72, 0.075);
  font-family: var(--script);
  font-size: clamp(2.8rem, 7vw, 7rem);
  letter-spacing: 0;
  pointer-events: none;
  transform: translateY(var(--page-drift));
}

.hero-copy {
  max-width: 43rem;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.1rem;
  left: -1.3rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(226, 185, 104, 0.72), rgba(118, 51, 72, 0.3), transparent);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--cocoa);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(4.2rem, 9.8vw, 9.35rem);
  max-width: 10ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 5vw, 5.4rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.hero-tagline {
  max-width: 36rem;
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.hero-description,
.section-heading p,
.split-copy > p,
.form-copy > p,
.final-cta p {
  color: rgba(43, 29, 20, 0.76);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 250, 241, 0.18) 48%, transparent 76%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 240ms ease, transform 500ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(30%);
}

.button:focus-visible,
.nav-links a:focus-visible,
.product-row a:focus-visible,
.nav-cta:focus-visible,
.contact-card a:focus-visible {
  outline: 3px solid rgba(157, 100, 52, 0.42);
  outline-offset: 0.22rem;
}

.button-primary {
  background:
    linear-gradient(135deg, rgba(226, 185, 104, 0.18), transparent 42%),
    var(--cocoa);
  color: var(--flour);
  box-shadow: var(--button-shadow);
}

.button-primary:hover {
  background:
    linear-gradient(135deg, rgba(226, 185, 104, 0.22), transparent 42%),
    #19110d;
}

.button-secondary {
  border-color: rgba(118, 51, 72, 0.26);
  background: rgba(255, 248, 236, 0.68);
  color: var(--cocoa);
}

.button-secondary:hover {
  border-color: rgba(118, 51, 72, 0.42);
  background: rgba(118, 51, 72, 0.08);
  color: var(--berry);
}

.button-light {
  background: var(--flour);
  color: var(--cocoa);
  box-shadow: 0 14px 28px rgba(47, 33, 24, 0.15);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0;
  max-width: 39rem;
}

.hero-facts div {
  min-height: 6.4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.72), rgba(239, 227, 207, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.6);
}

.hero-facts dt {
  color: var(--sage-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.4rem 0 0;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.9rem 0 1.2rem;
}

.hero-trust span {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(47, 68, 47, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.62);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0 0 1.1rem;
  max-width: 39rem;
}

.hero-status div {
  position: relative;
  min-height: 5.8rem;
  padding: 0.95rem;
  border: 1px solid rgba(93, 53, 31, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.86), rgba(239, 227, 207, 0.62)),
    rgba(255, 248, 236, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.66), 0 10px 28px rgba(35, 24, 18, 0.06);
  overflow: hidden;
}

.hero-status div::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(125, 143, 101, 0.18);
  border-radius: 50%;
}

.hero-status span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 0.96;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: min(72vh, 45rem);
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--deep-shadow);
}

.hero-visual:hover img {
  transform: translateY(var(--hero-shift)) scale(1.016);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(35, 24, 18, 0.42), transparent 52%),
    linear-gradient(120deg, rgba(255, 248, 236, 0.22), transparent 36%),
    linear-gradient(42deg, transparent 54%, rgba(226, 185, 104, 0.12));
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(var(--hero-shift)) scale(1.011);
  transition: transform 2200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.score-line {
  position: absolute;
  width: 0.12rem;
  height: 15rem;
  border-radius: 999px;
  background:
    linear-gradient(to bottom, transparent, rgba(255, 250, 240, 0.44), transparent),
    linear-gradient(to right, rgba(255, 250, 240, 0.02), rgba(244, 223, 181, 0.24));
  filter: blur(1.3px);
  opacity: 0;
  transform: rotate(38deg) translateY(1.4rem);
  animation: score-flash 15s ease-in-out infinite;
}

.score-one {
  top: 18%;
  right: 27%;
}

.score-two {
  top: 31%;
  right: 38%;
  height: 13rem;
  animation-delay: 2600ms;
}

.score-three {
  top: 45%;
  right: 50%;
  height: 10rem;
  animation-delay: 5200ms;
}

.proof-ring {
  position: absolute;
  top: 8%;
  left: -12%;
  width: 24rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(255, 248, 236, 0.16) 47% 49%, transparent 50%),
    conic-gradient(from 24deg, transparent, rgba(226, 185, 104, 0.28), transparent 42%, rgba(255, 248, 236, 0.2), transparent 72%);
  filter: blur(14px);
  opacity: 0.6;
  transform: translate3d(0, 0, 0) rotate(var(--motion-tilt));
  animation: proof-turn 24s ease-in-out infinite alternate;
}

.proof-ring::before,
.proof-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 248, 236, 0.18);
  border-radius: 50%;
  opacity: 0.58;
  animation: starter-breathe 9s ease-in-out infinite;
}

.proof-ring::after {
  inset: 34%;
  border-color: rgba(226, 185, 104, 0.22);
  animation-delay: 1800ms;
}

.flour-sweep {
  position: absolute;
  right: -42%;
  bottom: 5%;
  width: 82%;
  height: 18%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.22), rgba(226, 185, 104, 0.08), transparent);
  filter: blur(14px);
  opacity: 0;
  transform: rotate(-8deg);
  animation: flour-sweep 20s ease-in-out infinite;
}

.light-beam {
  position: absolute;
  top: -22%;
  width: 28%;
  height: 150%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.18), rgba(226, 185, 104, 0.08), transparent);
  filter: blur(22px);
  opacity: 0.24;
  transform: rotate(19deg) translate3d(0, 0, 0);
  animation: chapel-light 18s ease-in-out infinite alternate;
}

.beam-one {
  right: 14%;
}

.beam-two {
  right: 45%;
  width: 18%;
  opacity: 0.16;
  animation-duration: 24s;
  animation-delay: -6s;
}

.flour-mote,
.starter-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.82);
  box-shadow: 0 0 18px rgba(255, 248, 236, 0.38);
  opacity: 0;
}

.flour-mote {
  width: 0.38rem;
  aspect-ratio: 1;
  filter: blur(0.3px);
  animation: flour-drift 16s ease-in-out infinite;
}

.mote-one {
  left: 12%;
  bottom: 12%;
}

.mote-two {
  left: 28%;
  bottom: 6%;
  width: 0.26rem;
  animation-delay: -4s;
  animation-duration: 19s;
}

.mote-three {
  right: 34%;
  bottom: 18%;
  width: 0.32rem;
  animation-delay: -8s;
  animation-duration: 21s;
}

.mote-four {
  right: 18%;
  bottom: 28%;
  width: 0.22rem;
  animation-delay: -12s;
  animation-duration: 18s;
}

.mote-five {
  left: 48%;
  bottom: 2%;
  width: 0.3rem;
  animation-delay: -15s;
  animation-duration: 24s;
}

.starter-bubble {
  width: 0.72rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 236, 0.4);
  background: rgba(226, 185, 104, 0.12);
  filter: blur(0.2px);
  animation: bubble-rise 14s ease-in-out infinite;
}

.bubble-one {
  right: 24%;
  bottom: 18%;
}

.bubble-two {
  right: 18%;
  bottom: 10%;
  width: 0.5rem;
  animation-delay: -6s;
  animation-duration: 18s;
}

.sourdough-spin {
  position: absolute;
  left: 1.1rem;
  bottom: 1.05rem;
  z-index: 3;
  width: min(13rem, 30vw);
  height: 9rem;
  pointer-events: none;
  perspective: 780px;
  transform: translate3d(0, 0, 0);
}

.loaf-stage {
  position: absolute;
  inset: 0.35rem 0.35rem 1.7rem;
  transform-style: preserve-3d;
  transform-origin: 50% 62%;
  animation: loaf-turn 13.5s ease-in-out infinite;
}

.loaf-body {
  position: absolute;
  inset: 0.7rem 0.35rem 0.85rem;
  border: 1px solid rgba(255, 220, 150, 0.28);
  border-radius: 54% 46% 43% 48% / 60% 57% 42% 40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 229, 156, 0.9), transparent 18%),
    radial-gradient(circle at 74% 28%, rgba(255, 248, 236, 0.36), transparent 16%),
    radial-gradient(circle at 52% 88%, rgba(73, 35, 20, 0.5), transparent 32%),
    linear-gradient(140deg, #efbd68 0%, #bd6f35 34%, #7a3f22 70%, #4a2819 100%);
  box-shadow:
    inset 0 0.95rem 1.6rem rgba(255, 230, 165, 0.32),
    inset 0 -1rem 1.25rem rgba(45, 24, 16, 0.48),
    0 1.2rem 2.2rem rgba(22, 13, 8, 0.28);
  overflow: hidden;
  transform: rotateX(58deg) rotateZ(-7deg) translateZ(1.2rem);
  transform-style: preserve-3d;
}

.loaf-body::before {
  content: "";
  position: absolute;
  inset: 9% 12% auto 14%;
  height: 42%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 248, 236, 0.4), transparent 38%),
    linear-gradient(100deg, rgba(255, 239, 184, 0.34), transparent 70%);
  filter: blur(0.6px);
  opacity: 0.8;
}

.loaf-body::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-radial-gradient(circle at 38% 38%, rgba(255, 248, 236, 0.15) 0 1px, transparent 1px 9px),
    linear-gradient(90deg, transparent, rgba(255, 248, 236, 0.18), transparent);
  opacity: 0.58;
  transform: translateX(-40%);
  animation: loaf-glint 13.5s ease-in-out infinite;
}

.loaf-score {
  position: absolute;
  z-index: 1;
  width: 0.72rem;
  height: 4rem;
  border-radius: 999px;
  background:
    linear-gradient(to bottom, rgba(255, 248, 236, 0.95), rgba(255, 229, 170, 0.44) 45%, rgba(89, 45, 26, 0.34)),
    #fff4dc;
  box-shadow:
    0 0 0.7rem rgba(255, 248, 236, 0.28),
    inset 0.08rem 0 rgba(255, 255, 255, 0.46),
    inset -0.12rem 0 rgba(75, 38, 22, 0.3);
  opacity: 0.82;
  transform: rotate(32deg) skewY(-8deg);
}

.loaf-score-one {
  top: 14%;
  left: 29%;
}

.loaf-score-two {
  top: 20%;
  left: 47%;
  height: 4.35rem;
}

.loaf-score-three {
  top: 28%;
  left: 65%;
  height: 3.55rem;
}

.loaf-shadow {
  position: absolute;
  right: 10%;
  bottom: 0.8rem;
  left: 8%;
  height: 1.4rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(18, 10, 6, 0.34), rgba(18, 10, 6, 0) 72%);
  filter: blur(0.5rem);
  opacity: 0.88;
  animation: loaf-shadow 13.5s ease-in-out infinite;
}

.hero-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  width: min(14rem, calc(100% - 2.5rem));
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: var(--radius);
  background: rgba(43, 29, 20, 0.78);
  color: var(--flour);
  backdrop-filter: blur(16px);
  animation: quiet-float 8s ease-in-out infinite alternate;
}

.hero-batch-card {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  display: grid;
  gap: 0.2rem;
  max-width: 15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 250, 241, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.88);
  color: var(--cocoa);
  box-shadow: 0 18px 44px rgba(43, 29, 20, 0.18);
  backdrop-filter: blur(14px);
}

.hero-batch-card span,
.hero-batch-card small {
  color: rgba(43, 29, 20, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-batch-card strong {
  font-family: var(--serif);
  font-size: 1.72rem;
  line-height: 0.94;
}

.script {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--toast);
  font-family: var(--script);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.hero-note .script {
  color: #eed7a8;
}

.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 0.9;
}

.hero-note small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 250, 240, 0.78);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(33, 23, 18, 0.98), rgba(47, 68, 47, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.08) 0 1px, transparent 1px 4rem);
  color: var(--flour);
}

.intro-strip p {
  margin: 0;
  padding: 1rem;
  border-right: 1px solid rgba(255, 250, 241, 0.14);
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.intro-strip p:last-child {
  border-right: 0;
}

.faith-note {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr) minmax(16rem, 0.46fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.6rem, 6vw, 4.6rem) clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 248, 236, 0.9), rgba(239, 227, 207, 0.68)),
    linear-gradient(58deg, transparent 0 62%, rgba(226, 185, 104, 0.15) 62% 63%, transparent 63%),
    repeating-linear-gradient(90deg, rgba(109, 58, 36, 0.032) 0 1px, transparent 1px 4.5rem);
  overflow: hidden;
}

.faith-note::after {
  content: "grace";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: -1.6rem;
  color: rgba(118, 51, 72, 0.06);
  font-family: var(--script);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  pointer-events: none;
}

.faith-note .script {
  margin-bottom: 0;
  color: var(--toast);
}

.faith-note h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

.faith-note p:last-child {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.72);
  color: rgba(43, 29, 20, 0.74);
}

.promise-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(1rem, 5vw, 5rem);
  background: var(--line);
  box-shadow: 0 16px 50px rgba(43, 29, 20, 0.07);
}

.promise-band div {
  min-height: 9rem;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(248, 239, 225, 0.68)),
    var(--cream);
  transition: background 260ms ease, transform 260ms ease;
}

.promise-band div:hover {
  background: var(--paper-strong);
  transform: translateY(-0.1rem);
}

.promise-band span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: 0.95;
}

.promise-band p {
  margin: 0;
  color: rgba(43, 29, 20, 0.7);
}

.bake-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(33, 23, 18, 0.96), rgba(47, 68, 47, 0.91)),
    url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1600&q=85");
  background-position: center;
  background-size: cover;
  color: var(--flour);
  isolation: isolate;
}

.bake-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.06) 0 1px, transparent 1px 6rem),
    linear-gradient(90deg, transparent, rgba(226, 185, 104, 0.18), rgba(118, 51, 72, 0.08));
}

.bake-board .eyebrow,
.bake-board h2 {
  color: var(--flour);
}

.bake-board h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

.bake-board-copy p:not(.eyebrow) {
  max-width: 35rem;
  color: rgba(255, 250, 240, 0.76);
}

.bake-board-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.bake-board-steps article {
  display: grid;
  align-content: space-between;
  min-height: 17rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.15), rgba(255, 248, 236, 0.05)),
    rgba(255, 248, 236, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.18), 0 16px 38px rgba(0, 0, 0, 0.08);
}

.bake-board-steps span {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  background: var(--flour);
  color: var(--cocoa);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bake-board-steps strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--flour);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 0.98;
}

.bake-board-steps p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.bake-status-band {
  display: grid;
  grid-template-columns: minmax(14rem, 0.9fr) repeat(3, minmax(10rem, 1fr)) auto;
  gap: 1px;
  align-items: stretch;
  padding: 1px clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(93, 53, 31, 0.24), rgba(63, 80, 56, 0.22)),
    var(--line);
}

.bake-status-band > div,
.bake-status-band > a {
  min-height: 8rem;
}

.bake-status-band > div {
  display: grid;
  align-content: center;
  padding: 1.05rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.94), rgba(244, 234, 219, 0.76)),
    var(--flour);
}

.bake-status-band .status-kicker {
  background:
    linear-gradient(135deg, rgba(43, 29, 20, 0.96), rgba(93, 53, 31, 0.9)),
    var(--cocoa);
  color: var(--flour);
}

.bake-status-band span {
  margin-bottom: 0.3rem;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bake-status-band .status-kicker span {
  color: #f4dfb5;
}

.bake-status-band strong {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 0.96;
}

.bake-status-band .status-kicker strong {
  color: var(--flour);
}

.bake-status-band p {
  margin: 0.45rem 0 0;
  color: rgba(43, 29, 20, 0.66);
  font-size: 0.9rem;
  line-height: 1.35;
}

.bake-status-band > a {
  border-radius: 0;
  background: var(--sage-dark);
  color: var(--flour);
}

.bake-status-band > a:hover {
  background: var(--cocoa);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-menu {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.34), rgba(239, 227, 207, 0.78)),
    linear-gradient(120deg, transparent 0 54%, rgba(118, 51, 72, 0.05) 54% 55%, transparent 55%),
    repeating-linear-gradient(115deg, rgba(109, 58, 36, 0.028) 0 1px, transparent 1px 5rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 2rem;
  margin: 0 auto 2.2rem;
  max-width: 82rem;
}

.section-menu .section-heading {
  position: relative;
}

.section-menu .section-heading::after {
  content: "";
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(89, 58, 36, 0.22), transparent);
}

.section-menu .section-heading > p:last-child {
  position: relative;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.58), 0 14px 34px rgba(35, 24, 18, 0.06);
}

.section-heading.compact {
  display: block;
  max-width: 48rem;
  margin-inline: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  max-width: 82rem;
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 31rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 248, 236, 0.98), rgba(255, 248, 236, 0.78)),
    var(--flour);
  box-shadow: 0 18px 52px rgba(35, 24, 18, 0.1), inset 0 1px 0 rgba(255, 248, 236, 0.64);
  transition: border-color 420ms ease, box-shadow 420ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.38), transparent 34%);
  opacity: 0.62;
}

.product-card:hover {
  border-color: rgba(118, 51, 72, 0.32);
  box-shadow: 0 24px 62px rgba(35, 24, 18, 0.15);
  transform: translateY(-0.12rem);
}

.product-card.is-selected {
  border-color: rgba(118, 51, 72, 0.58);
  box-shadow: 0 26px 64px rgba(35, 24, 18, 0.16), 0 0 0 3px rgba(118, 51, 72, 0.14);
  animation: selected-loaf 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-card:nth-child(2) {
  background:
    linear-gradient(150deg, rgba(255, 248, 236, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(47, 68, 47, 0.98), rgba(33, 23, 18, 0.96)),
    var(--olive);
  border-color: rgba(226, 185, 104, 0.28);
  box-shadow: 0 28px 78px rgba(35, 24, 18, 0.22);
  color: var(--flour);
}

.product-card:nth-child(2)::after {
  content: "signature";
  position: absolute;
  right: 1rem;
  top: 12.5rem;
  z-index: 2;
  color: rgba(226, 185, 104, 0.38);
  font-family: var(--script);
  font-size: 1.28rem;
  letter-spacing: 0;
  pointer-events: none;
}

.product-card:nth-child(2) h3,
.product-card:nth-child(2) .price strong {
  color: var(--flour);
}

.product-card:nth-child(2) .product-content p,
.product-card:nth-child(2) .product-meta li,
.product-card:nth-child(2) .price span {
  color: rgba(255, 248, 236, 0.78);
}

.product-card:nth-child(2) .badge {
  border-color: rgba(226, 185, 104, 0.35);
  background: rgba(226, 185, 104, 0.12);
  color: #f5d997;
}

.product-card:nth-child(2) .product-availability span {
  border-color: rgba(255, 248, 236, 0.16);
  background: rgba(255, 248, 236, 0.08);
  color: rgba(255, 248, 236, 0.82);
}

.product-card:nth-child(2) .product-row {
  border-top-color: rgba(255, 248, 236, 0.18);
}

.product-card:nth-child(2) .product-row a {
  border-color: rgba(226, 185, 104, 0.34);
  background: rgba(226, 185, 104, 0.14);
  color: #f5d997;
}

.product-card:nth-child(2) .product-row a:hover {
  background: var(--gold);
  color: var(--cocoa);
}

.product-card.featured {
  grid-column: span 2;
}

.product-card {
  flex-direction: column;
}

.product-image {
  min-height: 14rem;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -80px 90px rgba(43, 29, 20, 0.12);
  transition: filter 1200ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image {
  filter: saturate(1.035) contrast(1.015);
  transform: scale(1.018);
}

.featured .product-image {
  flex: 0 0 52%;
}

.product-card:not(.featured) .product-image {
  flex: 0 0 14rem;
}

.classic {
  background-image: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1000&q=85");
}

.rosemary {
  background-image: url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73?auto=format&fit=crop&w=1000&q=85");
}

.everything {
  background-image:
    linear-gradient(180deg, rgba(43, 29, 20, 0.08), rgba(43, 29, 20, 0.16)),
    url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1000&q=85");
}

.cheddar {
  background-image: url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1000&q=85");
}

.raisin {
  background-image: url("https://images.unsplash.com/photo-1589367920969-ab8e050bbb04?auto=format&fit=crop&w=1000&q=85");
}

.honey {
  background-image: url("https://images.unsplash.com/photo-1523294587484-bae6cc870010?auto=format&fit=crop&w=1000&q=85");
}

.product-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.product-content p {
  color: rgba(43, 29, 20, 0.72);
}

.product-meta {
  display: grid;
  gap: 0.45rem;
  margin: 0.25rem 0 1.15rem;
  padding: 0;
  list-style: none;
}

.product-meta li {
  position: relative;
  padding-left: 1rem;
  color: rgba(43, 29, 20, 0.66);
  font-size: 0.88rem;
  line-height: 1.35;
}

.product-meta li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--sage);
}

.badge {
  align-self: flex-start;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(125, 141, 104, 0.42);
  border-radius: 999px;
  background: rgba(125, 141, 104, 0.13);
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-bottom: 0.95rem;
}

.product-availability span {
  padding: 0.34rem 0.52rem;
  border: 1px solid rgba(93, 53, 31, 0.13);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  color: rgba(43, 29, 20, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.price {
  display: grid;
  gap: 0.2rem;
}

.price strong {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.price span {
  color: rgba(43, 29, 20, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-row a {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(168, 102, 52, 0.3);
  border-radius: 999px;
  background: rgba(168, 102, 52, 0.08);
  color: var(--toast);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-row a:hover {
  border-color: rgba(43, 29, 20, 0.28);
  background: rgba(43, 29, 20, 0.06);
  color: var(--cocoa);
  transform: translateX(0.18rem);
}

.seasonal-card {
  min-height: 20rem;
  background:
    linear-gradient(145deg, rgba(43, 29, 20, 0.92), rgba(93, 53, 31, 0.84)),
    url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73?auto=format&fit=crop&w=1000&q=85");
  background-position: center;
  background-size: cover;
  color: var(--flour);
}

.seasonal-card h3,
.seasonal-card .product-row strong {
  color: var(--flour);
}

.seasonal-card p,
.seasonal-card .product-row a,
.seasonal-card .product-meta li,
.seasonal-card .price span {
  color: rgba(255, 250, 240, 0.84);
}

.seasonal-card .product-row a {
  border-color: rgba(255, 250, 241, 0.28);
  background: rgba(255, 250, 241, 0.1);
}

.seasonal-card .product-meta li::before {
  background: #f4dfb5;
}

.seasonal-card .badge {
  border-color: rgba(255, 250, 240, 0.35);
  background: rgba(255, 250, 240, 0.12);
  color: #f4dfb5;
}

.seasonal-card .product-row {
  border-top-color: rgba(255, 250, 240, 0.2);
}

.menu-note {
  max-width: 82rem;
  margin: 1.1rem auto 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  color: rgba(43, 29, 20, 0.68);
  font-size: 0.95rem;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.72), rgba(244, 234, 219, 0.46)),
    repeating-linear-gradient(0deg, rgba(93, 53, 31, 0.032) 0 1px, transparent 1px 4rem);
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 38rem;
  border: 1px solid rgba(93, 53, 31, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.split-image:hover img {
  transform: scale(1.018);
}

.split-stamp {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(16rem, calc(100% - 2rem));
  padding: 1rem;
  border: 1px solid rgba(255, 250, 241, 0.36);
  border-radius: var(--radius);
  background: rgba(43, 29, 20, 0.72);
  color: var(--flour);
  backdrop-filter: blur(14px);
}

.split-stamp span {
  display: block;
  margin-bottom: 0.25rem;
  color: #f4dfb5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-stamp strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 0.95;
}

.split-copy {
  max-width: 48rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.15rem 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.feature-list span {
  grid-row: span 2;
  color: var(--toast);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.feature-list strong {
  color: var(--cocoa);
}

.feature-list p {
  margin-bottom: 0;
  color: rgba(43, 29, 20, 0.7);
}

.story-section {
  display: grid;
  place-items: center;
  min-height: 42rem;
  background:
    linear-gradient(90deg, rgba(244, 234, 219, 0.92), rgba(244, 234, 219, 0.32) 42%, rgba(244, 234, 219, 0.88)),
    url("https://images.unsplash.com/photo-1598373182133-52452f7691ef?auto=format&fit=crop&w=1800&q=85");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.story-card {
  position: relative;
  max-width: 46rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(255, 250, 241, 0.68);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.94), rgba(248, 239, 225, 0.86)),
    rgba(255, 248, 236, 0.9);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(12px);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(226, 185, 104, 0.22);
  border-radius: 0.35rem;
  pointer-events: none;
}

.story-card p:not(.script) {
  color: rgba(43, 29, 20, 0.74);
  font-size: 1.05rem;
}

.story-signature {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.story-signature span {
  color: var(--toast);
  font-family: var(--script);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.story-signature small {
  color: rgba(43, 29, 20, 0.62);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.story-highlights span {
  display: grid;
  place-items: center;
  min-height: 3rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(47, 68, 47, 0.08);
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bake-drop {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.72fr) minmax(13rem, 0.46fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(135deg, rgba(47, 68, 47, 0.98), rgba(33, 23, 18, 0.93)),
    repeating-linear-gradient(90deg, rgba(255, 248, 236, 0.08) 0 1px, transparent 1px 5rem);
  color: var(--flour);
}

.bake-drop h2,
.bake-drop .eyebrow {
  color: var(--flour);
}

.bake-drop h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.bake-status {
  display: inline-flex;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(244, 223, 181, 0.42);
  border-radius: 999px;
  color: #f4dfb5;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bake-drop p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.82);
}

.drop-stats {
  display: grid;
  gap: 0.45rem;
}

.drop-stats span {
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 76rem;
}

.steps article {
  position: relative;
  min-height: 17rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
  box-shadow: 0 14px 38px rgba(43, 29, 20, 0.08);
  overflow: hidden;
}

.steps article::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(93, 53, 31, 0.12);
  border-radius: 50%;
}

.steps span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--cocoa);
  color: var(--flour);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.steps p {
  color: rgba(43, 29, 20, 0.7);
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(33, 23, 18, 0.95), rgba(47, 68, 47, 0.86), rgba(109, 58, 36, 0.76)),
    url("https://images.unsplash.com/photo-1608198093002-ad4e005484ec?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
  color: var(--flour);
}

.order-shell h2,
.order-shell .eyebrow {
  color: var(--flour);
}

.form-copy {
  position: sticky;
  top: 6.5rem;
}

.form-copy > p {
  color: rgba(255, 250, 240, 0.8);
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 0.5rem;
  background: rgba(255, 250, 240, 0.08);
}

.contact-card a {
  color: #f4dfb5;
  text-decoration: none;
}

.order-notes {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.order-notes div {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 0.5rem;
  background: rgba(255, 250, 240, 0.08);
}

.order-notes span {
  display: block;
  margin-bottom: 0.2rem;
  color: #f4dfb5;
  font-weight: 700;
}

.order-notes p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.98), rgba(248, 239, 225, 0.92)),
    rgba(255, 248, 236, 0.94);
  color: var(--cocoa);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.form-banner {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(118, 51, 72, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(118, 51, 72, 0.08), transparent 64%),
    rgba(226, 185, 104, 0.12);
}

.form-banner span {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-banner strong {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--cocoa);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(93, 53, 31, 0.24);
  border-radius: 0.35rem;
  background: var(--flour);
  color: var(--charcoal);
  outline: none;
}

input,
select {
  min-height: 3.2rem;
  padding: 0 0.9rem;
}

textarea {
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(125, 141, 104, 0.22);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.5rem;
  color: var(--sage-dark);
  font-weight: 700;
}

.order-estimate {
  padding: 0.9rem 1rem;
  border: 1px dashed rgba(93, 53, 31, 0.28);
  border-radius: 0.35rem;
  background: rgba(125, 141, 104, 0.1);
  color: var(--sage-dark);
  font-weight: 700;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.62), rgba(244, 234, 219, 0.7)),
    repeating-linear-gradient(90deg, rgba(93, 53, 31, 0.03) 0 1px, transparent 1px 5rem);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 82rem;
}

blockquote {
  position: relative;
  margin: 0;
  min-height: 18rem;
  padding: 3rem 1.4rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 16px 44px rgba(43, 29, 20, 0.08);
}

blockquote::before {
  content: "\"";
  position: absolute;
  top: 0.65rem;
  left: 1.25rem;
  color: rgba(168, 102, 52, 0.34);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

blockquote p {
  color: var(--cocoa);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

cite {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 700;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 1fr 0.75fr;
  gap: 0.7rem;
  padding: 0 clamp(1rem, 5vw, 5rem) clamp(4rem, 8vw, 7rem);
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(93, 53, 31, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(43, 29, 20, 0.12);
}

.gallery img {
  width: 100%;
  height: clamp(16rem, 32vw, 29rem);
  object-fit: cover;
  transition: filter 900ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery figure:hover img {
  filter: saturate(1.035) contrast(1.015);
  transform: scale(1.018);
}

.gallery figure:nth-child(even) {
  margin-top: 3rem;
}

.gallery figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 250, 241, 0.26);
  border-radius: 0.4rem;
  background: rgba(43, 29, 20, 0.68);
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 76rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
  box-shadow: 0 12px 34px rgba(43, 29, 20, 0.06);
  transition: background 180ms ease, border-color 180ms ease;
}

details[open] {
  border-color: rgba(63, 80, 56, 0.32);
  background: rgba(255, 250, 241, 0.92);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  color: var(--cocoa);
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--toast);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: rgba(43, 29, 20, 0.72);
}

.final-cta {
  display: grid;
  place-items: center;
  padding: clamp(4.5rem, 8vw, 7.5rem) 1rem;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.82), rgba(255, 248, 236, 0.96)),
    linear-gradient(120deg, rgba(47, 68, 47, 0.2), transparent 42%, rgba(118, 51, 72, 0.1)),
    url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73?auto=format&fit=crop&w=1600&q=85");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.final-cta h2 {
  max-width: 60rem;
}

.final-cta p {
  max-width: 39rem;
}

.final-cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0.4rem 0 1.35rem;
}

.final-cta-meta span {
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(109, 58, 36, 0.2);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.7);
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(226, 185, 104, 0.08), transparent 46%),
    linear-gradient(90deg, var(--cocoa), var(--olive));
  color: var(--cream);
}

.site-footer strong {
  font-family: var(--serif);
  font-size: 1.8rem;
}

.site-footer p,
.site-footer small {
  color: rgba(246, 239, 227, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
}

.reveal {
  animation: rise-in 800ms ease both;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 1200ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--stagger, 0ms);
}

.motion-ready .motion-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  animation-delay: 120ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes quiet-float {
  from {
    transform: translate3d(0, 0.18rem, 0);
  }

  to {
    transform: translate3d(0, -0.18rem, 0);
  }
}

@keyframes score-flash {
  0%,
  100% {
    opacity: 0;
    transform: rotate(38deg) translateY(1.4rem) scaleY(0.88);
  }

  38% {
    opacity: 0.16;
    transform: rotate(38deg) translateY(0.35rem) scaleY(0.96);
  }

  58% {
    opacity: 0.34;
    transform: rotate(38deg) translateY(-0.4rem) scaleY(1);
  }

  78% {
    opacity: 0.08;
    transform: rotate(38deg) translateY(-1.2rem) scaleY(0.92);
  }
}

@keyframes proof-turn {
  from {
    opacity: 0.42;
    transform: translate3d(-1.2rem, 0.4rem, 0) rotate(var(--motion-tilt)) scale(0.96);
  }

  to {
    opacity: 0.68;
    transform: translate3d(1.1rem, -0.35rem, 0) rotate(var(--motion-tilt)) scale(1.04);
  }
}

@keyframes starter-breathe {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.94);
  }

  48% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes flour-sweep {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(-8deg) scaleX(0.95);
  }

  42% {
    opacity: 0.2;
    transform: translateX(-24%) rotate(-8deg) scaleX(1);
  }

  64% {
    opacity: 0.1;
    transform: translateX(-42%) rotate(-8deg) scaleX(1.04);
  }
}

@keyframes chapel-light {
  from {
    opacity: 0.14;
    transform: rotate(19deg) translate3d(-0.8rem, -1.5rem, 0) scaleY(0.96);
  }

  to {
    opacity: 0.34;
    transform: rotate(19deg) translate3d(1.1rem, 1rem, 0) scaleY(1.04);
  }
}

@keyframes flour-drift {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }

  18% {
    opacity: 0.72;
  }

  56% {
    opacity: 0.46;
    transform: translate3d(1.2rem, -8.5rem, 0) scale(1);
  }

  82% {
    opacity: 0;
    transform: translate3d(-0.8rem, -13rem, 0) scale(0.86);
  }
}

@keyframes bubble-rise {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.74);
  }

  28% {
    opacity: 0.52;
  }

  62% {
    opacity: 0.28;
    transform: translate3d(-0.5rem, -5.2rem, 0) scale(1.08);
  }

  84% {
    opacity: 0;
    transform: translate3d(0.4rem, -8.4rem, 0) scale(0.9);
  }
}

@keyframes loaf-turn {
  0%,
  100% {
    transform: rotateX(6deg) rotateY(-24deg) rotateZ(-2deg) translate3d(0, 0, 0);
  }

  34% {
    transform: rotateX(7deg) rotateY(18deg) rotateZ(1deg) translate3d(0.16rem, -0.12rem, 0);
  }

  68% {
    transform: rotateX(5deg) rotateY(42deg) rotateZ(-1deg) translate3d(-0.1rem, 0.08rem, 0);
  }
}

@keyframes loaf-glint {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-42%);
  }

  38% {
    opacity: 0.58;
    transform: translateX(8%);
  }

  68% {
    opacity: 0.34;
    transform: translateX(36%);
  }
}

@keyframes loaf-shadow {
  0%,
  100% {
    opacity: 0.68;
    transform: scaleX(0.88);
  }

  42% {
    opacity: 0.9;
    transform: scaleX(1.06);
  }

  70% {
    opacity: 0.74;
    transform: scaleX(0.96);
  }
}

@keyframes selected-loaf {
  0% {
    transform: translateY(0) scale(1);
  }

  34% {
    transform: translateY(-0.18rem) scale(1.01);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero,
  .faith-note,
  .split-section,
  .order-shell,
  .bake-board,
  .bake-status-band,
  .bake-drop {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-visual,
  .split-image {
    min-height: 31rem;
  }

  .proof-ring {
    width: 18rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-grid,
  .testimonial-grid,
  .bake-board-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.featured {
    grid-column: 1 / -1;
  }

  .form-copy {
    position: static;
  }

  .bake-drop .button {
    justify-self: start;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 4.6rem;
  }

  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 0.62rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 0.25rem;
  }

  .nav-cta {
    padding-inline: 0.85rem;
  }

  .mobile-order-bar {
    position: fixed;
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 3.45rem;
    padding: 0.55rem 0.62rem 0.55rem 0.95rem;
    border: 1px solid rgba(226, 185, 104, 0.3);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(226, 185, 104, 0.16), transparent 42%),
      rgba(33, 23, 18, 0.94);
    color: var(--flour);
    box-shadow: 0 18px 48px rgba(35, 24, 18, 0.28);
    backdrop-filter: blur(16px);
    animation: mobile-bar-rise 780ms 500ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .mobile-order-bar span {
    min-width: 0;
    color: rgba(255, 248, 236, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-order-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.38rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--cocoa);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
  }

  .hero {
    padding-top: 1.5rem;
    background:
      linear-gradient(to bottom, rgba(255, 248, 236, 0.78), rgba(255, 248, 236, 0.95) 44%, var(--cream) 84%),
      linear-gradient(135deg, rgba(226, 185, 104, 0.18), transparent 44%, rgba(118, 51, 72, 0.08)),
      url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1100&q=85");
    background-position: center top;
    background-size: cover;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.5rem);
  }

  .hero-facts,
  .hero-status,
  .hero-trust,
  .intro-strip,
  .faith-note,
  .promise-band,
  .bake-board-steps,
  .product-grid,
  .steps,
  .order-form,
  .testimonial-grid,
  .gallery,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    display: grid;
  }

  .faith-note p:last-child {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-facts div {
    min-height: auto;
  }

  .hero-status div {
    min-height: auto;
  }

  .hero::before {
    display: none;
  }

  .bake-board-steps article {
    min-height: 13rem;
  }

  .intro-strip p {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  }

  .product-card,
  .product-card.featured {
    flex-direction: column;
    min-height: 0;
  }

  .featured .product-image,
  .product-card:not(.featured) .product-image,
  .product-card .product-image {
    flex: 0 0 15rem;
  }

  .hero-visual,
  .split-image {
    min-height: 24rem;
  }

  .sourdough-spin {
    left: 0.75rem;
    bottom: 0.65rem;
    width: min(9.2rem, 34vw);
    height: 6.6rem;
    opacity: 0.9;
  }

  .loaf-score {
    width: 0.5rem;
    height: 2.9rem;
  }

  .loaf-score-two {
    height: 3.15rem;
  }

  .loaf-score-three {
    height: 2.65rem;
  }

  .hero-visual img {
    transform: translateY(calc(var(--hero-shift) * 0.35)) scale(1.006);
  }

  .hero-visual:hover img,
  .split-image:hover img,
  .product-card:hover .product-image,
  .gallery figure:hover img {
    transform: scale(1.006);
  }

  .hero-batch-card {
    top: 0.85rem;
    left: 0.85rem;
    max-width: 13rem;
    padding: 0.85rem;
  }

  .hero-batch-card strong {
    font-size: 1.45rem;
  }

  .score-line {
    height: 10rem;
    opacity: 0;
  }

  .proof-ring {
    top: 8%;
    left: -18%;
    width: 15rem;
    opacity: 0.42;
  }

  .light-beam {
    opacity: 0.13;
    filter: blur(18px);
  }

  .beam-two,
  .mote-four,
  .mote-five,
  .bubble-two {
    display: none;
  }

  .flour-mote {
    width: 0.24rem;
    animation-duration: 20s;
  }

  .story-section {
    background-attachment: scroll;
  }

  .story-highlights {
    grid-template-columns: 1fr;
  }

  .steps article,
  blockquote {
    min-height: auto;
  }

  .gallery figure:nth-child(even) {
    margin-top: 0;
  }

  .gallery img {
    height: 18rem;
  }

  .gallery figcaption {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .motion-ready .motion-reveal {
    transform: translateY(0.55rem);
    transition-duration: 900ms;
  }
}

@media (max-width: 480px) {
  .brand-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .brand-mark strong {
    font-size: 1.08rem;
  }

  .nav-cta {
    padding: 0.68rem 0.82rem;
    font-size: 0.82rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status strong,
  .hero-facts dd {
    font-size: 1.22rem;
  }

  .section,
  .order-shell {
    padding-inline: 0.85rem;
  }

  .hero-note {
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.9rem;
  }

  .bake-status-band {
    padding-inline: 0.85rem;
  }

  .bake-status-band > div,
  .bake-status-band > a {
    min-height: auto;
  }

  .hero-note strong {
    font-size: 2.6rem;
  }

  .form-banner strong {
    font-size: 1.25rem;
  }

  .final-cta-meta {
    display: grid;
    width: 100%;
    max-width: 22rem;
  }

  .mobile-order-bar {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
  }

  .mobile-order-bar span {
    font-size: 0.7rem;
  }

  .sourdough-spin {
    width: 7.8rem;
    height: 5.8rem;
  }
}

@keyframes mobile-bar-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 0.8rem, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-progress,
  .hero-motion {
    display: none;
  }

  .loaf-stage,
  .loaf-body::after,
  .loaf-shadow {
    animation: none;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }
}
