:root {
  --cream: #f4eadb;
  --flour: #fffaf1;
  --wheat: #d9ad69;
  --honey: #c99045;
  --toast: #a86634;
  --crust: #5d351f;
  --cocoa: #2b1d14;
  --sage: #7b8f65;
  --sage-dark: #3f5038;
  --charcoal: #242019;
  --paper: rgba(255, 250, 241, 0.82);
  --paper-strong: rgba(255, 250, 241, 0.94);
  --line: rgba(93, 53, 31, 0.18);
  --line-strong: rgba(93, 53, 31, 0.3);
  --shadow: 0 24px 70px rgba(43, 29, 20, 0.15);
  --deep-shadow: 0 34px 90px rgba(43, 29, 20, 0.22);
  --button-shadow: 0 16px 34px rgba(43, 29, 20, 0.22);
  --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(115deg, rgba(255, 250, 241, 0.96), rgba(244, 234, 219, 0.88) 46%, rgba(236, 219, 194, 0.92)),
    repeating-linear-gradient(90deg, rgba(93, 53, 31, 0.028) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(93, 53, 31, 0.022) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, var(--flour), var(--cream) 52%, #ebdac1);
  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.34;
  background-image:
    linear-gradient(rgba(93, 53, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 53, 31, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  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.22;
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 250, 241, 0.28) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(63, 80, 56, 0.12), transparent 28%, rgba(168, 102, 52, 0.08));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--toast), var(--sage), var(--cocoa));
  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, 250, 241, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(43, 29, 20, 0);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.93);
  box-shadow: 0 12px 34px rgba(43, 29, 20, 0.1);
}

.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(93, 53, 31, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.11), transparent),
    var(--cocoa);
  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(--toast);
}

.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(93, 53, 31, 0.35);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.12), transparent),
    var(--sage-dark);
  color: var(--flour);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.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;
}

.hero::before {
  content: "naturally leavened";
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
  bottom: 1.25rem;
  color: rgba(89, 58, 36, 0.08);
  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(93, 53, 31, 0.28), transparent);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--sage-dark);
  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(--crust);
  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;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-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: var(--cocoa);
  color: var(--flour);
  box-shadow: var(--button-shadow);
}

.button-primary:hover {
  background: #20160f;
}

.button-secondary {
  border-color: rgba(93, 53, 31, 0.35);
  background: rgba(255, 250, 241, 0.58);
  color: var(--cocoa);
}

.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: rgba(255, 250, 241, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.48);
}

.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(63, 80, 56, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.54);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(43, 29, 20, 0.35), transparent 50%),
    linear-gradient(120deg, rgba(255, 250, 241, 0.18), transparent 36%);
}

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

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

.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 13s 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:
    conic-gradient(from 24deg, transparent, rgba(244, 223, 181, 0.2), transparent 42%, rgba(255, 250, 241, 0.18), transparent 72%);
  filter: blur(18px);
  opacity: 0.58;
  transform: translate3d(0, 0, 0) rotate(var(--motion-tilt));
  animation: proof-turn 18s ease-in-out infinite alternate;
}

.proof-ring::before,
.proof-ring::after {
  content: "";
  display: none;
}

.proof-ring::after {
  display: none;
}

.flour-sweep {
  position: absolute;
  right: -42%;
  bottom: 5%;
  width: 82%;
  height: 18%;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 241, 0.18), transparent);
  filter: blur(14px);
  opacity: 0;
  transform: rotate(-8deg);
  animation: flour-sweep 17s 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(43, 29, 20, 0.96), rgba(93, 53, 31, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 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, 250, 241, 0.88), rgba(244, 234, 219, 0.64)),
    repeating-linear-gradient(90deg, rgba(93, 53, 31, 0.035) 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(93, 53, 31, 0.065);
  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, 250, 241, 0.66);
  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, 250, 241, 0.9), rgba(255, 250, 241, 0.66)),
    var(--cream);
  transition: background 260ms ease, transform 260ms ease;
}

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

.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(43, 29, 20, 0.96), rgba(93, 53, 31, 0.9)),
    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, 250, 241, 0.06) 0 1px, transparent 1px 6rem),
    linear-gradient(90deg, transparent, rgba(201, 144, 69, 0.16));
}

.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, 250, 241, 0.14), rgba(255, 250, 241, 0.05)),
    rgba(255, 250, 241, 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);
}

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

.section-menu {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.18), rgba(244, 234, 219, 0.76)),
    repeating-linear-gradient(115deg, rgba(93, 53, 31, 0.03) 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, 250, 241, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 250, 241, 0.5);
}

.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, 250, 241, 0.96), rgba(255, 250, 241, 0.76)),
    var(--flour);
  box-shadow: 0 16px 48px rgba(43, 29, 20, 0.1), inset 0 1px 0 rgba(255, 250, 241, 0.52);
  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(157, 100, 52, 0.34);
  box-shadow: 0 22px 54px rgba(43, 29, 20, 0.14);
  transform: translateY(-0.12rem);
}

.product-card.is-selected {
  border-color: rgba(63, 80, 56, 0.62);
  box-shadow: 0 24px 60px rgba(43, 29, 20, 0.14), 0 0 0 3px rgba(125, 143, 101, 0.14);
}

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

.product-card:not(.featured) {
  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");
}

.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: 1rem;
  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-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: rgba(255, 250, 241, 0.9);
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(12px);
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(157, 100, 52, 0.16);
  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(125, 143, 101, 0.09);
  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(63, 80, 56, 0.98), rgba(43, 29, 20, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 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(43, 29, 20, 0.94), rgba(93, 53, 31, 0.82)),
    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: rgba(255, 250, 241, 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(63, 80, 56, 0.2);
  border-radius: var(--radius);
  background: rgba(125, 143, 101, 0.1);
}

.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;
}

.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, 250, 241, 0.82), rgba(255, 250, 241, 0.96)),
    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(93, 53, 31, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.64);
  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(255, 250, 241, 0.05), transparent),
    var(--cocoa);
  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(1rem);
  transition: opacity 1100ms ease, transform 1100ms 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 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);
  }
}

@media (max-width: 1100px) {
  .hero,
  .faith-note,
  .split-section,
  .order-shell,
  .bake-board,
  .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) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

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

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

  .hero {
    padding-top: 1.5rem;
    background:
      linear-gradient(to bottom, rgba(255, 250, 241, 0.72), rgba(255, 250, 241, 0.92) 42%, var(--cream) 82%),
      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-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::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 {
    flex: 0 0 15rem;
  }

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

  .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: 11rem;
  }

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

  .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;
  }
}

@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%;
  }

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

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

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

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

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

@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;
  }

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