:root {
  --cream: #fff8f2;
  --cream-deep: #f5eadf;
  --paper: #fffdf9;
  --blush: #f7cbd0;
  --rose: #dd7187;
  --rose-deep: #b94764;
  --cocoa: #4b241a;
  --cocoa-soft: #704238;
  --chocolate: #2b130e;
  --gold: #c7974a;
  --green: #1f9d55;
  --ink-muted: #7c625b;
  --border: rgba(75, 36, 26, 0.14);
  --shadow: 0 28px 80px rgba(85, 44, 32, 0.14);
  --display: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: min(1180px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; overflow-x: clip; }
body {
  margin: 0;
  color: var(--cocoa);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 8rem 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  color: white;
  background: var(--cocoa);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 2.75rem; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--blush); }
.section-heading h2 {
  max-width: 720px;
  margin-bottom: 1.4rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}
.section-heading > p:last-child { max-width: 580px; color: var(--ink-muted); }
.section-heading.centered { display: flex; align-items: center; flex-direction: column; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--rose-deep); box-shadow: 0 14px 35px rgba(185, 71, 100, 0.28); }
.button-primary:hover { background: #a93d59; box-shadow: 0 18px 42px rgba(185, 71, 100, 0.36); }
.button-cream { color: var(--cocoa); background: var(--cream); box-shadow: 0 14px 35px rgba(17, 6, 3, 0.22); }
.button-cream:hover { background: white; }
.button-outline { border-color: var(--cocoa); }
.button-outline:hover { color: white; background: var(--cocoa); }
.button-outline:hover img { filter: brightness(0) invert(1); }
.button:focus-visible, .text-link:focus-visible, .nav-links a:focus-visible, summary:focus-visible, .floating-order:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.scrolled, .site-header.menu-active {
  border-color: var(--border);
  background: rgba(255, 248, 242, 0.94);
  box-shadow: 0 10px 35px rgba(75, 36, 26, 0.08);
  backdrop-filter: blur(16px);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 5.25rem;
  margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 3.6rem; height: 3.6rem; border: 1px solid rgba(199, 151, 74, 0.35); border-radius: 50%; box-shadow: 0 6px 22px rgba(75, 36, 26, 0.12); }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 1.28rem; font-weight: 400; letter-spacing: -0.025em; }
.brand-by { display: flex; align-items: center; gap: 0.42rem; width: fit-content; margin-top: 0.34rem; font-family: var(--sans); line-height: 1; }
.brand-by::before { content: ""; width: 1.05rem; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(199, 151, 74, 0.25)); }
.brand-by span { color: var(--cocoa-soft); font-size: 0.48rem; font-weight: 600; letter-spacing: 0.3em; }
.brand-by b { position: relative; color: var(--rose-deep); font-family: var(--display); font-size: 0.96rem; font-style: italic; font-weight: 400; letter-spacing: -0.09em; transform: skewX(-7deg) translateY(-0.02rem); }
.brand-by b::after { content: ""; position: absolute; right: -0.22rem; bottom: -0.16rem; left: 0.04rem; height: 1px; background: linear-gradient(90deg, var(--rose-deep), rgba(185, 71, 100, 0)); transform: skewX(7deg); transform-origin: left; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.25rem); }
.nav-links > a { position: relative; font-size: 0.84rem; font-weight: 600; text-decoration: none; }
.nav-links > a:not(.nav-order)::after { content: ""; position: absolute; right: 0; bottom: -0.4rem; left: 0; height: 1px; background: var(--rose-deep); transform: scaleX(0); transform-origin: right; transition: transform 180ms ease; }
.nav-links > a:not(.nav-order):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-order { padding: 0.7rem 1.15rem; border-radius: 999px; color: white; background: var(--cocoa); }
.menu-toggle { display: none; width: 3rem; height: 3rem; padding: 0.7rem; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--cocoa); transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(900px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: #f4c8b9;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img { object-fit: cover; object-position: center center; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 248, 242, 0.98) 0%, rgba(255, 248, 242, 0.91) 29%, rgba(255, 248, 242, 0.26) 59%, rgba(43, 19, 14, 0.04) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.11;
  background-image: radial-gradient(rgba(75, 36, 26, 0.28) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  pointer-events: none;
}
.hero-content { padding-top: 7rem; }
.hero-eyebrow { animation: enter-up 700ms ease both 100ms; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  animation: enter-up 780ms ease both 180ms;
}
.hero h1 em { color: var(--rose-deep); font-weight: 400; }
.hero-intro { max-width: 560px; margin-bottom: 2rem; color: var(--cocoa-soft); font-size: clamp(1.05rem, 1.5vw, 1.2rem); animation: enter-up 780ms ease both 260ms; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; animation: enter-up 780ms ease both 340ms; }
.text-link { font-size: 0.9rem; font-weight: 700; text-underline-offset: 5px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.3rem; color: var(--cocoa-soft); font-size: 0.78rem; font-weight: 600; animation: enter-up 780ms ease both 420ms; }
.hero-notes span { display: flex; align-items: center; gap: 0.55rem; }
.hero-notes i { color: var(--gold); font-style: normal; }
.hero-scroll { position: absolute; right: 2.3rem; bottom: 2rem; display: flex; align-items: center; gap: 0.8rem; color: rgba(255,255,255,0.88); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll span { width: 1px; height: 3rem; background: currentColor; animation: scroll-pulse 1.8s ease-in-out infinite; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr); gap: 6rem; align-items: end; }
.intro-copy { padding-bottom: 0.5rem; }
.intro-copy p { color: var(--ink-muted); font-size: 1.05rem; }
.intro-copy p:last-child { margin-bottom: 0; }

.products { position: relative; background: var(--cream); overflow: hidden; }
.products::before { content: ""; position: absolute; top: 4rem; right: -8rem; width: 24rem; height: 24rem; border-radius: 50%; background: radial-gradient(circle, rgba(247,203,208,0.48), transparent 70%); pointer-events: none; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; margin-top: 4rem; }
.product-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 8px 30px rgba(75, 36, 26, 0.06); transition: transform 260ms ease, box-shadow 260ms ease; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-image { position: relative; height: 22rem; overflow: hidden; background: var(--cream-deep); }
.product-image picture { display: block; width: 100%; height: 100%; }
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 650ms cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-image img { transform: scale(1.045); }
.product-image::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(transparent, rgba(43,19,14,0.45)); }
.product-number { position: absolute; z-index: 1; top: 1.1rem; left: 1.2rem; color: rgba(255,255,255,0.85); font-family: var(--display); font-size: 1.8rem; }
.product-badge { position: absolute; z-index: 1; right: 1rem; bottom: 1rem; padding: 0.46rem 0.8rem; border: 1px solid rgba(255,255,255,0.38); border-radius: 999px; color: white; background: rgba(43,19,14,0.45); backdrop-filter: blur(10px); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-copy { padding: 2rem; }
.product-copy h3 { margin-bottom: 0.8rem; font-family: var(--display); font-size: 2.35rem; font-weight: 400; }
.product-copy p { min-height: 3.4rem; color: var(--ink-muted); }
.product-copy a { display: inline-flex; gap: 0.4rem; margin-top: 0.4rem; color: var(--rose-deep); font-size: 0.85rem; font-weight: 700; text-underline-offset: 5px; }

.promise { background: var(--paper); }
.promise-shell { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.promise-visual { position: relative; }
.promise-visual picture { display: block; height: min(700px, 72vw); overflow: hidden; border-radius: 48% 48% 2rem 2rem; box-shadow: var(--shadow); }
.promise-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
.promise-seal { position: absolute; right: -2rem; bottom: 3rem; display: grid; place-content: center; width: 9rem; height: 9rem; border: 1px solid rgba(255,255,255,0.6); border-radius: 50%; color: white; background: var(--rose-deep); text-align: center; box-shadow: 0 20px 45px rgba(185,71,100,0.26); transform: rotate(-7deg); }
.promise-seal::before { content: ""; position: absolute; inset: 0.45rem; border: 1px dashed rgba(255,255,255,0.55); border-radius: 50%; }
.promise-seal strong { font-family: var(--display); font-size: 1.75rem; font-weight: 400; line-height: 1; }
.promise-seal span { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.promise-content h2 { margin-bottom: 1.35rem; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.4rem); font-weight: 400; letter-spacing: -0.05em; }
.promise-lead { max-width: 600px; color: var(--ink-muted); font-size: 1.05rem; }
.promise-list { margin: 2.5rem 0 0; padding: 0; list-style: none; }
.promise-list li { display: grid; grid-template-columns: 3.25rem 1fr; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--border); }
.promise-list li:last-child { border-bottom: 1px solid var(--border); }
.promise-list > li > span { color: var(--gold); font-family: var(--display); font-size: 1.15rem; }
.promise-list h3 { margin-bottom: 0.35rem; font-size: 1rem; }
.promise-list p { margin-bottom: 0; color: var(--ink-muted); font-size: 0.92rem; }

.order { position: relative; color: white; background: var(--chocolate); overflow: hidden; }
.order::before, .order::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(221,113,135,0.28), transparent 70%); }
.order::before { top: -10rem; left: -8rem; width: 32rem; height: 32rem; }
.order::after { right: -10rem; bottom: -14rem; width: 38rem; height: 38rem; }
.order .section-heading { position: relative; z-index: 1; }
.order-steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 4rem 0 3rem; padding: 0; background: rgba(255,255,255,0.16); list-style: none; }
.order-steps li { min-height: 18rem; padding: 2.3rem; background: var(--chocolate); }
.order-steps span { display: inline-grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 3.3rem; border: 1px solid rgba(255,255,255,0.24); border-radius: 50%; color: var(--blush); font-family: var(--display); }
.order-steps h3 { margin-bottom: 0.8rem; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.order-steps p { color: rgba(255,255,255,0.64); }
.order-action { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.order-action p { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.84rem; }

.instagram { background: var(--blush); }
.instagram-shell { position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; min-height: 34rem; padding: clamp(2rem, 5vw, 5rem); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0.24)); overflow: hidden; }
.instagram-logo { position: relative; z-index: 1; padding: 0.75rem; border: 1px solid rgba(199,151,74,0.45); border-radius: 50%; background: rgba(255,255,255,0.48); box-shadow: var(--shadow); }
.instagram-logo img { width: clamp(10rem, 19vw, 14rem); border-radius: 50%; }
.instagram-copy { position: relative; z-index: 1; max-width: 600px; }
.instagram-copy h2 { margin-bottom: 1rem; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 400; letter-spacing: -0.045em; }
.instagram-copy > p:not(.eyebrow) { color: var(--cocoa-soft); }
.instagram-words { position: absolute; right: -1rem; bottom: -0.55em; color: rgba(255,255,255,0.38); font-family: var(--display); font-size: clamp(4.5rem, 10vw, 9rem); line-height: 0.72; text-align: right; pointer-events: none; }
.instagram-words span { display: block; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-list details { border-top: 1px solid var(--border); }
.faq-list details:last-child { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 5.2rem; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; flex: 0 0 2rem; width: 2rem; height: 2rem; border: 1px solid var(--border); border-radius: 50%; color: var(--rose-deep); font-size: 1.25rem; transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary span { color: white; background: var(--rose-deep); transform: rotate(45deg); }
.faq-list details > p { max-width: 640px; padding: 0 3rem 1.5rem 0; color: var(--ink-muted); }
.faq-list a { color: var(--rose-deep); font-weight: 700; }

.closing { position: relative; padding: 8rem 0; color: white; background: linear-gradient(135deg, rgba(43,19,14,0.94), rgba(75,36,26,0.86)), url("/assets/hero-desserts-1280.webp") center 56% / cover; text-align: center; }
.closing-content { display: flex; align-items: center; flex-direction: column; }
.closing h2 { margin-bottom: 0.7rem; font-family: var(--display); font-size: clamp(3.4rem, 7vw, 6rem); font-weight: 400; letter-spacing: -0.045em; }
.closing p:not(.eyebrow) { margin-bottom: 2rem; color: rgba(255,255,255,0.72); }

.site-footer { padding: 4.5rem 0 1.2rem; color: rgba(255,255,255,0.78); background: #180a07; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 4rem; padding-bottom: 3.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1.25rem; }
.footer-brand img { width: 5.3rem; height: 5.3rem; border-radius: 50%; }
.footer-brand strong { color: white; font-family: var(--display); font-size: 1.8rem; font-weight: 400; }
.footer-brand p { max-width: 360px; margin: 0.35rem 0 0; color: rgba(255,255,255,0.48); font-size: 0.86rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-links h2 { margin-bottom: 1rem; color: var(--blush); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links a { display: block; width: fit-content; margin: 0.55rem 0; font-size: 0.86rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.74rem; }
.footer-bottom p { margin: 0; }

.floating-order { position: fixed; z-index: 90; right: max(1.1rem, env(safe-area-inset-right)); bottom: max(1.1rem, env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 0.6rem; min-height: 3.55rem; padding: 0.45rem 1.2rem 0.45rem 0.45rem; border: 1px solid rgba(255,255,255,0.32); border-radius: 999px; color: white; background: var(--green); box-shadow: 0 16px 40px rgba(16,93,50,0.32); font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease; }
.floating-order:hover { transform: translateY(-3px) scale(1.015); box-shadow: 0 20px 48px rgba(16,93,50,0.42); }
.floating-icon { display: grid; place-items: center; width: 2.65rem; height: 2.65rem; border-radius: 50%; background: rgba(255,255,255,0.13); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.reveal-delay { transition-delay: 130ms; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes enter-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scroll-pulse { 0%, 100% { transform: scaleY(0.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }

@media (max-width: 980px) {
  :root { --container: min(100% - 2rem, 760px); }
  .section { padding: 6.5rem 0; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.8rem; width: 100%; height: 100vh; height: 100dvh; min-height: 100%; padding: calc(5.5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom)); background: rgb(255,248,242); overflow-y: auto; overscroll-behavior: contain; opacity: 0; visibility: hidden; transform: translateY(-1rem); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links > a { font-family: var(--display); font-size: 1.8rem; font-weight: 400; }
  .nav-links .nav-order { padding: 0.85rem 1.5rem; color: white; font-family: var(--sans); font-size: 0.92rem; font-weight: 700; }
  .hero { min-height: 820px; align-items: end; }
  .hero-media img { object-position: 60% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(255,248,242,0.5) 0%, rgba(255,248,242,0.64) 35%, rgba(255,248,242,0.98) 74%, var(--cream) 100%); }
  .hero-content { padding-top: 8rem; padding-bottom: 5.4rem; }
  .hero h1 { font-size: clamp(4.2rem, 13vw, 7rem); }
  .hero-scroll { display: none; }
  .intro-grid, .promise-shell, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-copy { max-width: 640px; }
  .promise-visual { max-width: 610px; }
  .promise-visual picture { height: min(680px, 105vw); }
  .promise-seal { right: 1rem; }
  .order-steps { grid-template-columns: 1fr; }
  .order-steps li { min-height: 0; }
  .order-steps span { margin-bottom: 2rem; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 1.5rem, 590px); --radius-lg: 1.45rem; }
  .section { padding: 5.2rem 0; }
  .nav-shell { min-height: 4.8rem; }
  .brand img { width: 3.25rem; height: 3.25rem; }
  .brand-copy strong { font-size: 1.05rem; }
  .product-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .product-image { height: 19rem; }
  .product-copy { padding: 1.5rem; }
  .product-copy p { min-height: 0; }
  .instagram-shell { grid-template-columns: 1fr; min-height: 0; text-align: center; }
  .instagram-logo { width: fit-content; margin-inline: auto; }
  .instagram-copy { display: flex; align-items: center; flex-direction: column; }
  .instagram-copy .eyebrow { justify-content: center; }
  .instagram-words { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(3.75rem, 18vw, 5.15rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-notes { align-items: flex-start; flex-direction: column; gap: 0.65rem; }
  .section-heading h2, .promise-content h2 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .product-image { height: 17.5rem; }
  .promise-seal { right: 0.4rem; bottom: 1rem; width: 7.5rem; height: 7.5rem; }
  .promise-visual picture { border-radius: 42% 42% 1.5rem 1.5rem; }
  .order-steps li { padding: 1.7rem; }
  .order-action { flex-direction: column; text-align: center; }
  .instagram-shell { padding: 2.1rem 1.2rem; }
  .faq-list summary { min-height: 4.8rem; font-size: 0.92rem; }
  .footer-brand { align-items: flex-start; }
  .floating-order { min-height: 3.25rem; padding-right: 1rem; }
  .floating-icon { width: 2.35rem; height: 2.35rem; }
}

@media (max-width: 420px) {
  :root { --container: calc(100% - 1.1rem); }
  .brand-copy { display: none; }
  .hero { min-height: 710px; }
  .hero h1 { font-size: clamp(3.35rem, 18vw, 4.4rem); }
  .hero-media img { object-position: 64% center; }
  .hero-eyebrow { font-size: 0.68rem; }
  .product-image { height: 16.5rem; }
  .product-badge { right: 0.7rem; bottom: 0.7rem; font-size: 0.62rem; }
  .floating-order { right: max(0.7rem, env(safe-area-inset-right)); bottom: max(0.7rem, env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
