:root {
  --cream: #f5ede3;
  --paper: #fffaf4;
  --ink: #3f2d29;
  --muted: #76645d;
  --clay: #b87359;
  --clay-dark: #8c513e;
  --peach: #dfbea9;
  --line: rgba(63, 45, 41, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid transparent;
  transition: height .35s ease, background .35s ease, border-color .35s ease;
}
.site-header.scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(245, 237, 227, .88);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font: 22px/1 Georgia, serif; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 44% 56%;
  color: var(--paper);
  background: var(--clay);
  font-size: 19px;
  font-style: italic;
}
.nav { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 12px; }
.nav > a:not(.nav-cta) { position: relative; }
.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--clay);
  transition: right .25s ease;
}
.nav > a:hover::after { right: 0; }
.nav-cta { padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); transition: .25s ease; }
.nav-cta:hover { color: var(--paper); background: var(--ink); }
.nav-cart span { display: inline-grid; min-width: 18px; height: 18px; margin-left: 3px; padding-inline: 5px; place-items: center; border-radius: 999px; color: var(--paper); background: var(--clay-dark); font-size: 8px; }
.menu-button { display: none; width: 42px; height: 42px; padding: 11px 9px; border: 0; background: transparent; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ink); transition: transform .25s ease; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(540px, 1.2fr);
  align-items: center;
  column-gap: clamp(18px, 2vw, 36px);
  min-height: 0;
  padding: 84px clamp(24px, 6vw, 98px) clamp(20px, 2vw, 30px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 38vw;
  aspect-ratio: 1;
  left: -21vw;
  bottom: -22vw;
  border: 1px solid rgba(184, 115, 89, .24);
  border-radius: 50%;
}
.hero-copy { position: relative; z-index: 3; max-width: 610px; }
.eyebrow, .section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--clay-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow > span { width: 30px; height: 1px; background: currentColor; }
h1 { margin-bottom: 28px; font-size: clamp(66px, 6.7vw, 112px); line-height: .89; letter-spacing: -.06em; }
h1 em, .order h2 em { color: var(--clay); font-weight: 400; }
.hero-lede { max-width: 535px; margin-bottom: 27px; color: var(--muted); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--paper); background: var(--clay-dark); box-shadow: 0 14px 38px rgba(103, 58, 46, .18); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(63, 45, 41, .3); color: var(--muted); font-size: 13px; }
.hero-note { display: flex; align-items: center; gap: 13px; margin-top: 18px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-note p { margin: 0; }
.hero-note strong { color: var(--ink); font-weight: 650; }
.note-icon { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(184, 115, 89, .35); border-radius: 50%; color: var(--clay); }

.hero-product { position: relative; z-index: 2; width: min(65vw, 840px); aspect-ratio: 1/.92; justify-self: center; margin-right: -3vw; }
.hero-halo { position: absolute; inset: 3% 0 2% 7%; border-radius: 48% 52% 45% 55% / 55% 44% 56% 45%; background: #ead5c3; transform: rotate(-6deg); }
.hero-product img, .steel-visual img { position: absolute; mix-blend-mode: multiply; pointer-events: none; user-select: none; }
.hero-product img { mix-blend-mode: normal; }
.hero-plate { z-index: 3; top: 15%; left: 8%; width: 72%; transform: rotate(-9deg); animation: float 7s ease-in-out infinite; }
.hero-bowl { z-index: 5; right: -1%; bottom: 7%; width: 32%; transform: rotate(5deg); animation: float 6s 1s ease-in-out infinite reverse; }
.hero-cup { z-index: 4; left: 5%; bottom: 0; width: 31%; transform: rotate(-5deg); animation: float 8s .5s ease-in-out infinite; }
.hero-fork, .hero-spoon { z-index: 6; bottom: 7%; width: 9.5%; }
.hero-fork { right: 27%; transform: rotate(21deg); }
.hero-spoon { right: 18%; transform: rotate(27deg); }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(143, 81, 62, .25); border-radius: 50%; }
.orbit-one { top: 12%; left: 9%; width: 84%; height: 74%; transform: rotate(10deg); }
.orbit-two { top: 27%; left: 1%; width: 94%; height: 54%; transform: rotate(-14deg); }
.hero-caption { position: absolute; z-index: 8; top: 10%; right: 2%; display: flex; align-items: center; gap: 10px; color: var(--muted); font: italic 13px Georgia, serif; }
.hero-caption span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--paper); background: var(--clay); font: 9px Arial, sans-serif; }
.hero-lifestyle { width: min(64vw, 940px); aspect-ratio: 1.3; margin-right: -5vw; }
.hero-lifestyle .hero-halo { inset: 0 1% 0 6%; border-radius: 45% 55% 49% 51% / 54% 45% 55% 46%; transform: rotate(-3deg); }
.hero-photo-frame {
  position: absolute;
  z-index: 2;
  inset: 0 0 0 6%;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 88px 4px 4px;
  background: #d9c1ae;
  box-shadow: 0 30px 70px rgba(89,58,43,.2);
}
.hero-photo-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,250,244,.28); border-radius: inherit; pointer-events: none; }
.hero-photo-frame img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: normal; }
.hero-lifestyle .hero-caption { top: 1%; right: 9%; padding: 6px 13px 6px 6px; border-radius: 999px; background: rgba(255,250,244,.9); box-shadow: 0 10px 28px rgba(89,58,43,.1); backdrop-filter: blur(12px); }
.hero-facts {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  margin-top: 28px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
}
.hero-facts p { display: flex; align-items: center; gap: 9px; margin: 0; }
.hero-facts p + p { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-facts strong { color: var(--clay-dark); font: italic 26px Georgia, serif; }
.hero-facts span { max-width: 82px; color: var(--muted); font-size: 9px; font-weight: 650; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue { display: none; }
.scroll-cue i { position: relative; width: 1px; height: 30px; overflow: hidden; background: rgba(63, 45, 41, .15); }
.scroll-cue i::after { content: ""; position: absolute; width: 1px; height: 14px; background: var(--clay); animation: scrollLine 2s ease-in-out infinite; }

.promise-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: .76fr repeat(4, 1fr);
  min-height: 108px;
  padding: 0 clamp(24px, 6vw, 98px);
  color: var(--paper);
  background: #5b3a31;
}
.promise-strip p { display: flex; flex-direction: column; justify-content: center; min-width: 0; margin: 0; padding: 20px clamp(16px, 2vw, 30px); border-left: 1px solid rgba(255,250,244,.14); }
.promise-strip p:last-child { border-right: 1px solid rgba(255,250,244,.14); }
.promise-strip strong { margin-bottom: 7px; color: #fff6ef; font: 18px/1.1 Georgia, serif; font-weight: 400; }
.promise-strip p > span { color: rgba(255,250,244,.62); font-size: 10px; line-height: 1.45; }
.promise-strip .promise-intro { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; padding-left: 0; border-left: 0; }
.promise-intro > span { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid rgba(255,250,244,.32); border-radius: 50%; color: #efbca5 !important; }
.promise-strip .promise-intro strong { margin: 0; color: #efbca5; font: 700 9px/1.5 Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }

.intro { padding: 108px clamp(24px, 14vw, 220px) 88px; text-align: center; background: var(--paper); }
.intro .section-kicker { justify-content: center; }
.intro h2, .materials h2 { max-width: 900px; margin: 0 auto 28px; font-size: clamp(44px, 5.5vw, 80px); line-height: 1.03; letter-spacing: -.045em; }
.intro > p:last-child { max-width: 660px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.75; }

.story { position: relative; height: 210svh; background: radial-gradient(circle at 50% 32%, rgba(255,250,244,.92), transparent 43%), #eee1d4; }
.story-stage-wrap { position: sticky; top: 68px; z-index: 2; display: grid; place-items: center; width: 100%; height: calc(100svh - 68px); overflow: hidden; pointer-events: none; }
.stage-aura { position: absolute; width: min(59vw, calc(100svh - 40px), 930px); aspect-ratio: 1; border: 1px solid rgba(140,81,62,.13); border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; background: rgba(224,190,169,.32); transform: rotate(-4deg); }
.story-stage { position: relative; width: min(54vw, calc(100svh - 92px), 860px); aspect-ratio: 1; }
.stage-header, .stage-footer { position: absolute; left: 0; right: 0; z-index: 10; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.stage-header { top: 0; }
.stage-footer { bottom: 0; align-items: center; justify-content: flex-end; gap: 10px; }
.stage-count b { color: var(--ink); font-size: 13px; }
.stage-line { width: 60px; height: 1px; background: rgba(63, 45, 41, .14); }
.stage-line i { display: block; width: 14%; height: 1px; background: var(--clay); transition: width .6s var(--ease); }
.set-showcase { position: absolute; inset: 4%; overflow: hidden; border-radius: 4px 64px 4px 4px; background: #d7bda8; box-shadow: 0 28px 70px rgba(89,58,43,.2); }
.set-photo { width: 100%; height: 100%; object-fit: cover; }
.hotspots { position: absolute; inset: 0; }
.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(255,250,244,.8);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,250,244,.88);
  box-shadow: 0 5px 18px rgba(63,45,41,.16);
  font-size: 8px;
  font-weight: 750;
  transform: translate(-50%,-50%);
  transition: width .45s var(--ease), height .45s var(--ease), color .35s ease, background .35s ease, box-shadow .35s ease;
}
.hotspot::after { content: ""; position: absolute; inset: -6px; border: 1px solid rgba(255,250,244,.7); border-radius: 50%; opacity: 0; transform: scale(.7); transition: .45s var(--ease); }
.hotspot.is-active { width: 38px; height: 38px; color: var(--paper); background: var(--clay-dark); box-shadow: 0 8px 26px rgba(73,38,29,.3); }
.hotspot.is-active::after { opacity: 1; transform: scale(1); }
.steps { position: sticky; top: 68px; z-index: 3; height: calc(100svh - 68px); margin-top: calc(-100svh + 68px); pointer-events: none; }
.step { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr minmax(430px, 48vw) 1fr; align-items: center; padding: 20px clamp(28px, 5vw, 82px); }
.step.align-left .step-copy { grid-column: 1; justify-self: start; }
.step.align-right .step-copy { grid-column: 3; justify-self: end; }
.step-copy { width: min(100%, 365px); padding: 20px 22px; border: 1px solid rgba(140,81,62,.12); border-radius: 22px; background: rgba(255,250,244,.77); box-shadow: 0 16px 40px rgba(89,58,43,.07); backdrop-filter: blur(14px); opacity: .12; will-change: opacity, transform, filter; }
.step-number { display: block; margin-bottom: 12px; color: var(--clay-dark); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.step h3 { margin-bottom: 14px; font-size: clamp(34px, 3vw, 48px); line-height: .99; letter-spacing: -.045em; }
.step p { margin-bottom: 16px; color: var(--muted); font-size: 13px; line-height: 1.62; }
.detail-pill { display: inline-flex; align-items: center; align-self: flex-start; min-height: 30px; padding: 0 13px; border: 1px solid rgba(184, 115, 89, .32); border-radius: 999px; color: var(--clay-dark); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.story-snap-points { display: none; }

.life {
  position: relative;
  z-index: 5;
  padding: 38px clamp(24px, 7vw, 112px) 42px;
  background: #eee1d4;
}
.life-heading {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: end;
  gap: 80px;
  max-width: 1260px;
  margin: 0 auto 24px;
}
.life-heading h2 {
  margin-bottom: 0;
  font-size: clamp(50px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.life-heading > p {
  max-width: 470px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.life-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, .52fr);
  gap: 18px;
  max-width: 1320px;
  height: min(54vw, 600px);
  margin: 0 auto;
}
.life figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ddc9b9;
}
.life-main { border-radius: 3px 80px 3px 3px; }
.life-food { border-radius: 3px 3px 80px 3px; }
.life figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 27, 21, .48), transparent 34%);
  pointer-events: none;
}
.life figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.life figure:hover > img { transform: scale(1.025); }
.life-main > img { object-position: 49% center; }
.life-food > img { object-position: center 54%; }
.life figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
}
.life figcaption > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-size: 9px;
}
.life figcaption p { margin: 0; font-size: 11px; line-height: 1.5; }
.life figcaption strong { display: block; font: 18px Georgia, serif; }

.steel { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); align-items: center; gap: clamp(48px, 6vw, 96px); min-height: 660px; padding: 82px clamp(24px, 8vw, 124px); background: var(--paper); }
.steel-visual { position: relative; width: min(100%, 590px); aspect-ratio: 1; justify-self: start; }
.steel-visual::before { content: ""; position: absolute; inset: 3%; border-radius: 50%; background: #ead7c8; }
.steel-ring { position: absolute; inset: 12%; border: 1px solid rgba(140, 81, 62, .28); border-radius: 50%; }
.steel-visual img { z-index: 2; top: 27%; left: 8%; width: 84%; transform: rotate(-7deg); filter: drop-shadow(0 28px 30px rgba(92, 57, 45, .13)); }
.steel-visual > p { position: absolute; z-index: 3; right: 3%; bottom: 12%; width: 84px; height: 84px; padding-top: 18px; border-radius: 50%; color: var(--paper); background: var(--clay-dark); text-align: center; font: italic 12px Georgia, serif; }
.steel-visual > p strong { display: block; font-size: 25px; font-weight: 400; }
.lifestyle-visual { aspect-ratio: 4 / 5; }
.lifestyle-visual::before { display: none; }
.lifestyle-visual > img { inset: 0; width: 100%; height: 100%; border-radius: 3px 76px 3px 3px; object-fit: cover; object-position: center; mix-blend-mode: normal; transform: none; filter: none; }
.lifestyle-visual .steel-ring { z-index: 3; inset: 18px; border-color: rgba(255, 255, 255, .42); border-radius: 2px 62px 2px 2px; }
.lifestyle-visual > p { right: -18px; bottom: 22px; }
.steel-copy { max-width: 590px; justify-self: end; }
.steel-copy h2 { margin-bottom: 28px; font-size: clamp(46px, 5vw, 74px); line-height: 1.01; letter-spacing: -.05em; }
.steel-copy > p:not(.section-kicker) { color: var(--muted); font-size: 16px; line-height: 1.8; }
.steel-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 34px 0 24px; }
.steel-points span { display: grid; place-items: center; min-height: 72px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--clay-dark); text-align: center; font-size: 10px; font-weight: 700; line-height: 1.4; text-transform: uppercase; }
.steel-note { padding-top: 20px; border-top: 1px solid var(--line); font-size: 10px !important; line-height: 1.6 !important; }

.mission { position: relative; z-index: 5; padding: 68px clamp(24px, 10vw, 160px); color: var(--paper); background: var(--clay-dark); overflow: hidden; }
.mission::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(101,55,43,.98) 0%, rgba(101,55,43,.92) 40%, rgba(101,55,43,.26) 76%, rgba(101,55,43,.08) 100%); }
.mission::after { content: ""; position: absolute; width: 650px; height: 650px; right: -330px; top: -390px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.mission > :not(.mission-photo) { position: relative; z-index: 2; }
.mission-photo { position: absolute; inset: 0 0 0 auto; z-index: 0; width: 58%; }
.mission-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.mission-label { display: flex; align-items: center; gap: 18px; color: #f0c2ad; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.mission-label i { width: 60px; height: 1px; background: currentColor; }
blockquote { max-width: 820px; margin: 28px 0 34px; font: 400 clamp(44px, 5.5vw, 76px)/1.02 Georgia, serif; letter-spacing: -.052em; }
.mission-bottom { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.22); }
.mission-bottom p { max-width: 690px; margin: 0; color: rgba(255,250,244,.68); font-size: 16px; line-height: 1.75; }
.price-badge { display: grid; place-items: center; flex: 0 0 118px; width: 118px; height: 118px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; color: #ffd7c4; text-align: center; font: italic 14px/1.3 Georgia, serif; transform: rotate(-7deg); }

.materials { position: relative; z-index: 5; padding: 100px clamp(24px, 8vw, 124px); background: var(--paper); }
.materials-heading { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; margin-bottom: 58px; }
.materials-heading h2 { margin: 0; }
.material-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.material-grid article { min-height: 260px; padding: 38px 34px; }
.material-grid article + article { border-left: 1px solid var(--line); }
.material-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 40px; border: 1px solid rgba(184,115,89,.35); border-radius: 50%; color: var(--clay-dark); font: italic 11px Georgia, serif; }
.material-grid h3 { margin-bottom: 14px; font-size: 25px; }
.material-grid p { max-width: 330px; margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.shop { position: relative; z-index: 5; padding: 88px clamp(24px, 6vw, 96px); background: #f1e3d6; overflow: hidden; }
.shop::before { content: ""; position: absolute; width: 560px; height: 560px; right: -320px; top: -330px; border: 1px solid rgba(140,81,62,.16); border-radius: 50%; }
.shop-heading { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.shop-heading h2 { margin: 0; font-size: clamp(52px, 5.7vw, 86px); line-height: .96; letter-spacing: -.055em; }
.shop-heading h2 em { color: var(--clay-dark); }
.shop-intro { max-width: 500px; justify-self: end; }
.shop-intro p { margin-bottom: 18px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.shop-intro > span { display: inline-flex; padding: 9px 13px; border: 1px solid rgba(140,81,62,.22); border-radius: 999px; color: var(--clay-dark); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.product-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.product-card { min-width: 0; padding: 10px 10px 18px; border: 1px solid rgba(63,45,41,.1); border-radius: 3px 34px 3px 3px; background: rgba(255,250,244,.9); box-shadow: 0 16px 36px rgba(89,58,43,.07); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(89,58,43,.12); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; margin-bottom: 18px; border-radius: 2px 27px 2px 2px; background: #ead9cc; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-image > span { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; border-radius: 999px; color: var(--ink); background: rgba(255,250,244,.88); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.product-info { padding-inline: 6px; }
.product-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.product-title h3 { margin: 0; font-size: clamp(22px, 2vw, 29px); }
.product-title strong { color: var(--clay-dark); font: 17px/1 Georgia, serif; font-weight: 400; white-space: nowrap; }
.product-card-footer { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 9px; }
.quantity-control { display: grid; grid-template-columns: 30px 28px 30px; align-items: center; min-height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.quantity-control button { display: grid; place-items: center; width: 30px; height: 40px; padding: 0; border: 0; color: var(--ink); background: transparent; font: 16px Arial, sans-serif; cursor: pointer; }
.quantity-control output { text-align: center; font-size: 12px; font-weight: 700; }
.add-to-cart { min-height: 42px; padding: 0 13px; border: 0; border-radius: 999px; color: var(--paper); background: var(--clay-dark); font: 650 11px/1 Arial, sans-serif; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.add-to-cart:hover { background: var(--ink); transform: translateY(-1px); }
.add-to-cart.is-added { background: #65735b; }

.cart-section { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 62px); margin-top: 64px; padding: clamp(28px, 4vw, 58px); border-radius: 4px 68px 4px 4px; color: var(--paper); background: #5b3a31; box-shadow: 0 28px 70px rgba(73,43,35,.2); }
.cart-panel { display: flex; min-width: 0; flex-direction: column; }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,250,244,.16); }
.cart-header div > span, .checkout-heading > span { display: block; margin-bottom: 8px; color: #efbca5; font-size: 8px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.cart-header h3, .checkout-heading h3 { margin: 0; color: var(--paper); font-size: clamp(28px, 3vw, 40px); }
.cart-header > strong { padding: 8px 11px; border: 1px solid rgba(255,250,244,.24); border-radius: 999px; color: rgba(255,250,244,.78); font-size: 9px; font-weight: 600; }
.cart-items { flex: 1; min-height: 210px; }
.cart-empty { display: flex; align-items: center; gap: 18px; min-height: 210px; color: rgba(255,250,244,.62); }
.cart-empty > span { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border: 1px solid rgba(255,250,244,.22); border-radius: 50% 50% 44% 56%; font: italic 25px Georgia, serif; }
.cart-empty p { margin: 0; font-size: 11px; line-height: 1.6; }
.cart-empty strong { display: block; color: var(--paper); font: 21px/1.25 Georgia, serif; font-weight: 400; }
.cart-row { display: grid; grid-template-columns: 68px minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,250,244,.12); }
.cart-row img { width: 68px; height: 68px; border-radius: 4px 16px 4px 4px; object-fit: cover; }
.cart-row-copy { min-width: 0; }
.cart-row-copy strong { display: block; margin-bottom: 6px; font: 18px/1.15 Georgia, serif; font-weight: 400; }
.cart-row-copy span { color: rgba(255,250,244,.58); font-size: 10px; }
.cart-row-actions { display: flex; align-items: center; gap: 7px; }
.cart-row-actions .quantity-control { grid-template-columns: 27px 25px 27px; border-color: rgba(255,250,244,.22); background: transparent; }
.cart-row-actions .quantity-control button { width: 27px; height: 34px; color: var(--paper); }
.cart-row-actions .quantity-control output { color: var(--paper); }
.cart-remove { width: 30px; height: 30px; padding: 0; border: 0; color: rgba(255,250,244,.55); background: transparent; font-size: 16px; cursor: pointer; }
.cart-totals { padding-top: 18px; }
.cart-totals p { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 0 0 12px; color: rgba(255,250,244,.62); font-size: 10px; }
.cart-totals strong { color: rgba(255,250,244,.8); font-size: 10px; font-weight: 550; text-align: right; }
.cart-totals .cart-grand-total { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,250,244,.2); color: var(--paper); font: 19px/1 Georgia, serif; }
.cart-grand-total strong { color: #ffd2bd; font: 25px/1 Georgia, serif; font-weight: 400; }

.checkout-form { min-width: 0; padding: clamp(22px, 3vw, 38px); border: 1px solid rgba(255,255,255,.38); border-radius: 4px 48px 4px 4px; color: var(--ink); background: var(--paper); }
.checkout-heading { margin-bottom: 24px; }
.checkout-heading > span { color: var(--clay-dark); }
.checkout-heading h3 { color: var(--ink); }
.order-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-fields label { display: flex; flex-direction: column; gap: 7px; }
.order-fields label > span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.order-fields small { font-size: inherit; font-weight: 500; opacity: .65; }
.field-wide { grid-column: 1 / -1; }
.order-fields input, .order-fields select, .order-fields textarea { width: 100%; min-height: 46px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px; outline: none; color: var(--ink); background: #fffdf9; font: inherit; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.order-fields textarea { min-height: 66px; resize: vertical; }
.order-fields input:focus, .order-fields select:focus, .order-fields textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(184,115,89,.12); }
.order-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.order-consent input { flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--clay-dark); }
.order-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 54px; padding: 0 20px; border: 0; border-radius: 999px; color: var(--paper); background: var(--clay-dark); font: 650 13px/1 Arial, sans-serif; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease; }
.order-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(103,58,46,.22); }
.order-submit span { font-size: 18px; }
.order-note { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 9px; }
.payment-notice { margin-top: 18px; padding: 15px 16px; border: 1px solid rgba(140,81,62,.22); border-radius: 10px; background: #f3e6db; }
.payment-notice[hidden] { display: none; }
.payment-notice strong { display: block; margin-bottom: 5px; font: 18px/1.2 Georgia, serif; font-weight: 400; }
.payment-notice p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

footer { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 42px clamp(24px, 6vw, 96px); color: rgba(255,250,244,.63); background: #34231f; font-size: 11px; }
footer .brand { color: var(--paper); }
footer p { margin: 0; }
footer > a:last-child { padding-bottom: 4px; border-bottom: 1px solid rgba(255,250,244,.3); }

@keyframes float { 0%,100% { translate: 0 0; } 50% { translate: 0 -9px; } }
@keyframes scrollLine { 0% { top: -14px; } 55%,100% { top: 32px; } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(0,.9fr) minmax(440px,1.1fr); }
  .step { grid-template-columns: 1fr minmax(390px,48vw) 1fr; padding-inline: 24px; }
  .story-stage { width: min(54vw, calc(100svh - 92px)); }
  .stage-aura { width: min(59vw, calc(100svh - 40px)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  html.story-snap-active { scroll-snap-type: y proximity; }
  .site-header { height: 70px; padding-inline: 20px; }
  .menu-button { position: relative; z-index: 2; display: block; }
  .menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 28px; color: var(--ink); background: var(--cream); font: 28px Georgia, serif; opacity: 0; visibility: hidden; transition: .25s ease; }
  .menu-open .nav { opacity: 1; visibility: visible; }
  .nav-cta { font: 13px Arial, sans-serif; }
  .hero { grid-template-columns: minmax(0,1fr); gap: 14px; min-height: auto; padding: 86px 24px 22px; }
  .hero-copy { min-width: 0; }
  h1 { font-size: clamp(51px,13vw,72px); }
  .hero-note { margin-top: 24px; }
  .hero-facts { display: none; }
  .hero-product { width: min(94vw,670px); }
  .scroll-cue { display: none; }
  .promise-strip { display: flex; min-height: 104px; padding: 0 20px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .promise-strip::-webkit-scrollbar { display: none; }
  .promise-strip p { flex: 0 0 min(68vw,300px); min-height: 104px; padding: 16px 20px; }
  .promise-strip .promise-intro { flex-basis: min(48vw,220px); }
  .intro { padding: 82px 24px 72px; }
  .story { height: 412svh; }
  .story-snap-points { position: absolute; inset: 0; display: block; pointer-events: none; }
  .story-snap-points span { position: absolute; top: var(--snap-offset); left: 0; width: 1px; height: 1px; scroll-snap-align: start; scroll-snap-stop: always; }
  .story-stage-wrap { top: 68px; align-items: start; height: calc(100svh - 68px); background: linear-gradient(to bottom,rgba(255,250,244,.28) 60%,rgba(238,225,212,.96) 78%); }
  .stage-aura { top: 2%; width: min(98vw,510px); }
  .story-stage { width: min(94vw,490px); margin-top: 0; }
  .stage-header { top: 4px; }
  .stage-footer { bottom: 2px; }
  .steps { top: 68px; height: calc(100svh - 68px); margin-top: calc(-100svh + 68px); }
  .step { display: block; padding: calc(min(94vw, 490px) + 12px) 18px 12px; }
  .step-copy, .step.align-left .step-copy, .step.align-right .step-copy { display: flex; flex-direction: column; justify-content: center; width: min(100%,520px); min-height: max(210px, calc(100svh - 68px - min(94vw, 490px) - 24px)); margin: 0 auto; padding: 20px; background: rgba(255,250,244,.92); box-shadow: 0 14px 34px rgba(89,58,43,.11); }
  .step-number { margin-bottom: 9px; }
  .step h3 { margin-bottom: 10px; font-size: clamp(29px,8vw,39px); }
  .step p { margin-bottom: 12px; font-size: 12px; line-height: 1.5; }
  .detail-pill { min-height: 26px; }
  .life { padding: 78px 20px 84px; }
  .life-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .life-heading h2 { font-size: clamp(42px, 11vw, 60px); }
  .life-gallery { display: flex; gap: 12px; height: 560px; margin-inline: -20px; padding-inline: 20px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .life-gallery::-webkit-scrollbar { display: none; }
  .life figure { flex: 0 0 84vw; scroll-snap-align: center; }
  .life-main { border-radius: 3px 54px 3px 3px; }
  .life-food { border-radius: 3px 3px 54px 3px; }
  .life-food > img { object-position: center 55%; }
  .steel { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 78px 24px; }
  .steel-visual { width: min(92vw,560px); justify-self: center; }
  .steel-copy { justify-self: start; }
  .steel-points { grid-template-columns: 1fr; }
  .mission { padding: 82px 24px; }
  .mission::before { background: linear-gradient(180deg, rgba(101,55,43,.86), rgba(101,55,43,.95)); }
  .mission-photo { width: 100%; opacity: .44; }
  .mission-photo img { object-position: 62% center; }
  .mission-bottom { align-items: flex-start; flex-direction: column; }
  .price-badge { align-self: flex-end; }
  .materials { padding: 82px 24px; }
  .materials-heading { grid-template-columns: 1fr; margin-bottom: 62px; }
  .material-grid { grid-template-columns: 1fr; }
  .material-grid article { min-height: auto; padding: 32px 0; }
  .material-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
  .material-icon { margin-bottom: 26px; }
  .shop { padding: 74px 20px; }
  .shop-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .shop-intro { max-width: 650px; justify-self: start; }
  .product-grid { gap: 12px; }
  .cart-section { grid-template-columns: 1fr; gap: 34px; margin-top: 44px; padding: 26px 20px; border-radius: 4px 48px 4px 4px; }
  .cart-items { min-height: 150px; }
  .cart-empty { min-height: 150px; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 520px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-product { width: 100%; max-width: none; transform: scale(1.08); }
  .hero-lifestyle { width: calc(100% + 24px); aspect-ratio: 1.18; margin-inline: -12px; transform: none; }
  .hero-lifestyle .hero-halo { inset: 1% 0 0 2%; }
  .hero-photo-frame { inset: 0; border-radius: 3px 54px 3px 3px; }
  .hero-caption { right: 7%; }
  .product-grid { display: flex; gap: 12px; margin-inline: -20px; padding-inline: 20px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card { flex: 0 0 82vw; scroll-snap-align: center; }
  .product-title h3 { font-size: 25px; }
  .cart-section { margin-inline: -20px; border-radius: 0; }
  .cart-row { grid-template-columns: 58px minmax(0,1fr); }
  .cart-row img { width: 58px; height: 58px; }
  .cart-row-actions { grid-column: 2; }
  .checkout-form { padding: 24px 16px; border-radius: 4px 38px 4px 4px; }
  .order-fields { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .intro h2, .materials h2 { font-size: 43px; }
  .story-stage { width: 96vw; }
  .stage-aura { width: 102vw; }
  blockquote { font-size: 45px; }
  .life-gallery { height: 510px; }
  .life figcaption { left: 20px; right: 20px; bottom: 20px; }
}

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