/* ============================================
   BAKE MY WAY — Design System & Styles
   ============================================ */

:root {
  /* color */
  --cream: #f5efe3;
  --cream-2: #ebe2cf;
  --ink: #221912;
  --ink-soft: #4a3a2c;
  --grape: #5b2a86;
  --grape-deep: #3d1c5c;
  --caramel: #c97a3e;
  --rose: #d6516b;
  --pistachio: #8aa05a;
  --line: rgba(34, 25, 18, 0.14);

  /* type */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  /* type scale */
  --fs-display: clamp(52px, 9vw, 140px);
  --fs-h2: clamp(44px, 5vw, 72px);
  --fs-h2-large: clamp(48px, 6vw, 84px);
  --fs-h3: 26px;
  --fs-h4: 15px;
  --fs-body: 17px;
  --fs-lead: 19px;
  --fs-small: 14px;
  --fs-micro: 12px;
  --fs-script-sm: 20px;
  --fs-script-lg: 30px;
  --fs-mega-footer: clamp(120px, 22vw, 320px);

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --r-circle: 50%;

  /* shadows */
  --sh-card: 6px 6px 0 var(--ink);
  --sh-card-hover: 10px 10px 0 var(--ink);
  --sh-card-grape: 6px 6px 0 var(--grape-deep);
  --sh-card-grape-hover: 10px 10px 0 var(--grape-deep);
  --sh-tag: 4px 4px 0 var(--ink);
  --sh-photo-deep: 0 30px 60px -20px rgba(34, 25, 18, 0.35);

  /* spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 56px;
  --space-9: 80px;
  --space-10: 120px;
}

/* ============ RESET ============ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
}

.hand { font-family: var(--font-script); }

/* ============ UTILITIES ============ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--caramel);
  margin-bottom: var(--space-4);
}

.eyebrow-dark {
  color: var(--caramel);
}

.cream-text { color: var(--cream); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-7);
}

h2 em, h1 em {
  font-style: italic;
  color: var(--caramel);
}

.h2-large {
  font-size: var(--fs-h2-large);
}

/* ============ BUTTONS ============ */

.order-btn {
  display: inline-block;
  background: var(--grape);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
}

.order-btn:hover {
  background: var(--grape-deep);
}

.order-btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ============ CHIP ============ */

.chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--ink-soft);
  border-radius: var(--r-pill);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  transition: all 0.18s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-8);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--r-circle);
  background-size: 180%;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a:not(.order-btn) {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav-links a:not(.order-btn):hover {
  color: var(--ink);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.18s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */

.hero {
  padding: 0;
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: blur(28px) saturate(1.05);
  transform: scale(1.15);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,239,227,0.35) 0%, rgba(245,239,227,0.55) 60%, rgba(245,239,227,0.85) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 70px 56px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 760px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-copy h1 .squiggle {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 700;
  font-size: 0.55em;
  color: var(--caramel);
  display: block;
  margin-top: 10px;
  margin-left: 8px;
  letter-spacing: 0;
}

.hero-copy .lead {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}

.hero-badges .b {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}

.hero-badges .b strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--grape);
  font-weight: 600;
  margin-bottom: 4px;
}

/* hero visual — polaroid + mini + tags */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.hero-frame {
  position: absolute;
  inset: 4% 4% 12% 4%;
  background: var(--cream);
  padding: 18px 18px 70px;
  border-radius: 4px;
  box-shadow: 0 40px 80px -24px rgba(34, 25, 18, 0.45), 0 8px 24px -8px rgba(34,25,18,0.2);
  transform: rotate(-2deg);
}

.hero-frame .ph {
  width: 100%;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: cover;
  border-radius: 2px;
}

.hero-frame .cap {
  position: absolute;
  bottom: 14px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.hero-frame .cap .ttl {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--ink);
  line-height: 1;
}

.hero-frame .cap small {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-mini {
  position: absolute;
  width: 36%;
  aspect-ratio: 4/5;
  background: var(--cream);
  padding: 10px 10px 36px;
  box-shadow: 0 20px 40px -12px rgba(34, 25, 18, 0.4);
  bottom: -10px;
  right: -30px;
  transform: rotate(7deg);
  z-index: 3;
}

.hero-mini .ph2 {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.hero-mini .lbl {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: 18px;
  color: var(--ink);
}

.hero-tag {
  position: absolute;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--ink);
  z-index: 2;
  box-shadow: var(--sh-tag);
  white-space: nowrap;
}

.hero-tag.t1 {
  top: -18px;
  left: -28px;
  transform: rotate(-7deg);
  background: var(--caramel);
  color: var(--cream);
  border-color: var(--ink);
}

.hero-tag.t2 {
  bottom: 30px;
  right: -32px;
  transform: rotate(5deg);
}

/* doodle squiggles */
.doodle {
  position: absolute;
  pointer-events: none;
  color: var(--ink);
  opacity: 0.7;
}
.doodle.heart-1 { top: 10%; left: 48%; transform: rotate(-15deg); }
.doodle.spark-1 { top: 50%; right: 5%; }

/* ============ VALUES STRIP ============ */

.values {
  background: var(--ink);
  color: var(--cream);
  padding: 36px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.values .v {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.values .v .num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--caramel);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.values .v h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.values .v p {
  font-size: 13px;
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.4;
}

/* ============ LOAVES ============ */

.loaves {
  padding: var(--space-10) var(--space-8);
}

.loaves-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.loaf-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--sh-card);
  transition: all 0.18s ease;
  cursor: default;
}

.loaf-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--sh-card-hover);
}

.loaf-featured {
  background: var(--grape);
  border-color: var(--grape-deep);
  box-shadow: var(--sh-card-grape);
}

.loaf-featured:hover {
  box-shadow: var(--sh-card-grape-hover);
}

.loaf-featured .loaf-info { color: var(--cream); }
.loaf-featured h3 { color: var(--cream); }
.loaf-featured .loaf-price { color: var(--cream); }
.loaf-featured .loaf-desc { color: rgba(245, 239, 227, 0.8); }
.loaf-featured .chip {
  background: rgba(245, 239, 227, 0.15);
  color: var(--cream);
}

.loaf-img-wrap {
  overflow: hidden;
}

.loaf-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.loaf-card:hover .loaf-img-wrap img {
  transform: scale(1.03);
}

.loaf-info {
  padding: var(--space-4) var(--space-4) var(--space-5);
}

.loaf-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-2);
  gap: var(--space-2);
}

.loaf-header h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.2;
}

.loaf-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
}

.loaf-desc {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--space-3);
}

.loaf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.loaves-more {
  text-align: center;
  margin-top: var(--space-7);
}

/* ============ STORY ============ */

.story {
  padding: var(--space-10) var(--space-8);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.story-text h2 {
  margin-bottom: var(--space-6);
}

.story-text .lead {
  margin-bottom: var(--space-5);
}

.story-text p:last-child {
  color: var(--ink-soft);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-photo-deep);
}

/* ============ MADE WITH LOVE ============ */

.made-with {
  padding: var(--space-10) var(--space-8);
  text-align: center;
}

.stamps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-7);
}

.stamp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stamp {
  width: 110px;
  height: 110px;
  border-radius: var(--r-circle);
  background: var(--caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  margin-bottom: var(--space-4);
  border: 2px solid var(--ink);
}

.stamp-item h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.stamp-item p {
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ============ TICKER ============ */

.ticker {
  background: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  animation: scroll-ticker 38s linear infinite;
}

.ticker-item {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--caramel);
  padding-right: 16px;
}

@keyframes scroll-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ TASTEBOOK ============ */

.tastebook {
  padding: var(--space-10) var(--space-8);
}

.tastebook .eyebrow {
  color: var(--caramel);
}

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

.tastebook h2 em {
  color: var(--caramel);
}

.tastebook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.tb-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(245, 239, 227, 0.06);
  border: 1px solid rgba(245, 239, 227, 0.1);
  transition: all 0.18s ease;
}

.tb-card:hover {
  background: rgba(245, 239, 227, 0.1);
  transform: translate(-2px, -2px);
}

.tb-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.tb-info {
  padding: var(--space-3) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
}

.tb-info h4 {
  font-family: var(--font-serif);
  font-size: var(--fs-h4);
  font-weight: 500;
  color: var(--cream);
}

.tb-price {
  font-family: var(--font-serif);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--caramel);
  white-space: nowrap;
}

.tastebook-cta {
  text-align: center;
  margin-top: var(--space-7);
}

/* ============ TESTIMONIALS ============ */

.testimonials {
  padding: var(--space-10) var(--space-8);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.test-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  background: var(--cream);
  box-shadow: var(--sh-card);
  transition: all 0.18s ease;
}

.test-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--sh-card-hover);
}

.test-featured {
  background: var(--grape);
  border-color: var(--grape-deep);
  box-shadow: var(--sh-card-grape);
}

.test-featured:hover {
  box-shadow: var(--sh-card-grape-hover);
}

.test-featured .test-quote,
.test-featured .test-name {
  color: var(--cream);
}

.test-stars {
  font-size: 18px;
  color: var(--caramel);
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.test-quote {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

.test-name {
  font-family: var(--font-serif);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.t-tag {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--caramel);
  letter-spacing: 0.01em;
}

.t-tag::before {
  content: "— ";
  opacity: 0.7;
}

/* ============ ORDER CTA ============ */

.order-cta {
  padding: var(--space-10) var(--space-8);
}

.order-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-9);
  align-items: center;
}

.order-cta-text h2 {
  margin-bottom: var(--space-5);
}

.order-cta-text .lead {
  margin-bottom: var(--space-6);
  max-width: 500px;
}

.order-cta-buttons {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

.order-cta-qr img {
  width: 200px;
  height: 200px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--ink);
  box-shadow: var(--sh-card);
}

/* ============ FAQ ============ */

.faq {
  padding: var(--space-10) var(--space-8);
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform 0.18s ease;
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item summary:hover {
  color: var(--grape);
}

.faq-answer {
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ FOOTER ============ */

.footer {
  padding: var(--space-10) var(--space-8) var(--space-6);
  color: var(--cream);
}

.footer-mega {
  font-family: var(--font-serif);
  font-size: var(--fs-mega-footer);
  font-weight: 800;
  line-height: 0.9;
  color: var(--cream);
  opacity: 0.15;
  text-align: center;
  margin-bottom: var(--space-4);
  overflow: hidden;
}

.footer-tagline {
  text-align: center;
  font-size: var(--fs-script-lg);
  color: var(--caramel);
  margin-bottom: var(--space-9);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-9);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.footer-col a {
  display: block;
  font-size: var(--fs-small);
  color: rgba(245, 239, 227, 0.75);
  margin-bottom: var(--space-3);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bot {
  border-top: 1px solid rgba(245, 239, 227, 0.15);
  padding-top: var(--space-5);
  text-align: center;
}

.footer-bot p {
  font-size: var(--fs-micro);
  color: rgba(245, 239, 227, 0.5);
}

/* ============ MOBILE ============ */

@media (max-width: 920px) {

  .nav-inner {
    padding: 12px var(--space-5);
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: var(--space-6) var(--space-5);
    gap: var(--space-5);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(34, 25, 18, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero { min-height: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 18px 48px;
    gap: 32px;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 64px);
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.15;
  }

  .hero-mini { width: 32%; right: -16px; }
  .hero-tag.t1 { left: -12px; top: -10px; font-size: 18px; }
  .hero-tag.t2 { right: -12px; bottom: 20px; font-size: 18px; }
  .doodle { display: none; }

  .hero-badges { flex-direction: column; gap: 16px; }

  .values {
    grid-template-columns: 1fr 1fr;
    padding: 28px 18px;
    gap: 20px;
  }

  .loaves,
  .story,
  .made-with,
  .tastebook,
  .testimonials,
  .order-cta,
  .faq,
  .footer {
    padding: 64px var(--space-5);
  }

  .loaves-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .loaf-header {
    flex-direction: column;
    gap: var(--space-1);
  }

  .loaf-header h3 {
    font-size: 20px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .story-photo {
    order: -1;
  }

  .stamps-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .stamp {
    width: 90px;
    height: 90px;
    font-size: 34px;
  }

  .tastebook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .order-cta-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  .order-cta-buttons {
    justify-content: center;
  }

  .order-cta-qr {
    display: flex;
    justify-content: center;
  }

  .order-cta-qr img {
    width: 160px;
    height: 160px;
  }

  .footer-mega {
    font-size: clamp(60px, 18vw, 200px);
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }

  h2 {
    font-size: clamp(36px, 8vw, 56px);
  }

  .h2-large {
    font-size: clamp(38px, 9vw, 64px);
  }
}
