:root {
  --ink: #25261f;
  --paper: #f2ecdf;
  --paper-deep: #e6ddca;
  --cream: #fbf7ef;
  --orange: #df663d;
  --mustard: #d9a428;
  --olive: #66704a;
  --brown: #7a482c;
  --line: rgba(37, 38, 31, .22);
  --serif: "Noto Serif TC", serif;
  --sans: "Outfit", "Noto Sans TC", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.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; }
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.section-pad { padding-left: clamp(24px, 5vw, 76px); padding-right: clamp(24px, 5vw, 76px); }
.kicker { margin: 0 0 15px; font-size: 11px; font-weight: 600; letter-spacing: .18em; }

.announcement {
  min-height: 38px;
  padding: 7px clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--cream);
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .08em;
}
.announcement p { margin: 0; }
.announcement p span { color: #f0b391; margin-right: 12px; }
.announcement__countdown { display: flex; gap: 10px; align-items: center; border-left: 1px solid rgba(255,255,255,.3); padding-left: 30px; }
.announcement__countdown span { opacity: .6; }
.announcement__countdown strong { color: #f4ca55; font-weight: 500; font-variant-numeric: tabular-nums; }

.site-header {
  height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.brand { justify-self: start; display: flex; align-items: center; gap: 11px; }
.brand svg { width: 43px; height: 43px; }
.brand span { display: grid; line-height: 1; }
.brand b { font: 900 22px/1 var(--serif); letter-spacing: .12em; }
.brand small { font-size: 8px; letter-spacing: .36em; margin-top: 7px; }
.main-nav { display: flex; gap: clamp(22px, 4vw, 52px); font-size: 13px; }
.main-nav a { position: relative; }
.main-nav a::after { content: ""; height: 1px; width: 0; position: absolute; left: 0; bottom: -7px; background: var(--ink); transition: width .25s; }
.main-nav a:hover::after { width: 100%; }
.cart-trigger { justify-self: end; background: none; border: 0; display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 8px 0 8px 16px; }
.cart-trigger span { font-size: 13px; }
.cart-trigger b { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 12px; font-weight: 500; }

.hero {
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .85fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding-top: clamp(55px, 7vw, 95px);
  padding-bottom: clamp(60px, 7vw, 100px);
  overflow: hidden;
}
.hero__copy { max-width: 710px; }
.eyebrow { display: flex; align-items: center; gap: 16px; font-size: 10px; font-weight: 600; letter-spacing: .18em; }
.eyebrow span { padding: 7px 10px; background: var(--mustard); border-radius: 20px; letter-spacing: .12em; }
.eyebrow i { width: 48px; height: 1px; background: var(--ink); }
.hero h1 { margin: 31px 0 28px; font: 700 clamp(44px, 5.2vw, 82px)/1.25 var(--serif); letter-spacing: -.055em; }
.hero h1 em { color: var(--orange); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; height: 9px; left: 3%; right: -2%; bottom: -4px; border-top: 2px solid var(--orange); border-radius: 50%; transform: rotate(-1deg); opacity: .75; }
.hero__lead { max-width: 560px; margin: 0; color: #5f5c53; font-family: var(--serif); font-size: 16px; line-height: 2; letter-spacing: .04em; }
.hero__actions { display: flex; align-items: center; gap: 31px; margin-top: 37px; }
.btn { min-height: 52px; padding: 0 20px; border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 35px; font-size: 13px; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--dark { color: white; background: var(--ink); }
.btn--dark:hover { background: var(--orange); }
.text-link { font-size: 13px; border-bottom: 1px solid var(--ink); padding: 7px 0; }
.text-link span { margin-left: 15px; }
.hero__notes { margin-top: 65px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__notes p { margin: 0; display: grid; gap: 5px; }
.hero__notes span { font-size: 10px; color: #777368; letter-spacing: .1em; }
.hero__notes strong { font-family: var(--serif); font-size: 13px; font-weight: 600; }

.hero__art { min-height: 670px; position: relative; display: grid; place-items: center; }
.hero__art::before { content: ""; width: 140%; height: 80%; position: absolute; top: 6%; left: -18%; background: #dbab32; border-radius: 48% 52% 44% 56% / 51% 42% 58% 49%; transform: rotate(-7deg); }
.hero__art::after { content: ""; position: absolute; width: 42%; height: 18%; background: var(--orange); bottom: 2%; right: -19%; border-radius: 50%; transform: rotate(-20deg); opacity: .95; }
.hero-card { width: min(430px, 82%); height: 570px; position: relative; z-index: 1; background: #d9d0bf; border: 9px solid var(--cream); transform: rotate(3.5deg); box-shadow: 0 20px 70px rgba(52,36,19,.18); overflow: hidden; }
.hero-card::before { display: none; }
.hero-photo { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 64%; }
.hero-bread { display: none; }
.hero-card__caption { position: absolute; margin: 0; left: 24px; bottom: 22px; color: white; font-family: var(--serif); font-size: 12px; line-height: 1.7; transform: rotate(-3.5deg); }
.hero-card__caption span { font-family: var(--sans); border: 1px solid currentColor; padding: 3px 6px; margin-right: 6px; }
.hero-card__caption strong { font-size: 17px; }
.hero-card__arrow { position: absolute; right: 23px; top: 20px; color: white; font-size: 24px; }
.sun-stamp { position: absolute; z-index: 2; top: 0; right: -20px; width: 102px; height: 102px; border: 1px solid var(--ink); border-radius: 50%; background: var(--paper); display: grid; place-items: center; align-content: center; transform: rotate(11deg); box-shadow: 0 0 0 5px var(--paper), 0 0 0 6px var(--ink); }
.sun-stamp span { font-size: 7px; letter-spacing: .2em; }
.sun-stamp b { font: 900 34px/1.1 var(--serif); }
.hand-note { position: absolute; z-index: 2; bottom: 2%; left: -20px; margin: 0; font: 600 15px/1 var(--serif); transform: rotate(-8deg); }

.ticker { overflow: hidden; padding: 14px 0; background: var(--orange); color: var(--cream); transform: rotate(-1.1deg) scale(1.02); position: relative; z-index: 3; }
.ticker__track { width: max-content; display: flex; gap: 33px; animation: ticker 24s linear infinite; font: 600 14px/1 var(--serif); letter-spacing: .12em; }
.ticker__track i { font-style: normal; color: var(--mustard); }
@keyframes ticker { to { transform: translateX(-50%); } }

.menu-section { padding-top: 130px; padding-bottom: 150px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.section-head h2, .pickup h2, .story h2, .case-study h2, .newsletter h2 { font: 700 clamp(38px, 4.3vw, 64px)/1.3 var(--serif); letter-spacing: -.04em; margin: 0; }
.section-head > p { max-width: 420px; margin: 0 0 8px; font-family: var(--serif); font-size: 14px; line-height: 1.85; color: #68645a; }
.menu-toolbar { margin: 54px 0 35px; padding-bottom: 15px; border-bottom: 1px solid var(--line); display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.filters { display: flex; gap: 27px; }
.filter-btn { padding: 9px 0; border: 0; border-bottom: 2px solid transparent; background: none; font-size: 13px; cursor: pointer; color: #7b766c; }
.filter-btn span { font-size: 9px; margin-left: 5px; vertical-align: super; }
.filter-btn.active { color: var(--ink); border-color: var(--orange); }
.stock-legend { font-size: 10px; color: #777368; letter-spacing: .08em; }
.stock-legend i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); margin-right: 6px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 62px 24px; }
.product-card { min-width: 0; transition: opacity .25s, transform .25s; }
.product-card.filtered-out { display: none; }
.product-card__visual { height: clamp(320px, 34vw, 450px); position: relative; overflow: hidden; display: grid; place-items: center; transition: transform .35s; }
.product-card:hover .product-card__visual { transform: translateY(-4px); }
.product-card__visual::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 70px rgba(30,20,10,.1); pointer-events: none; }
.product-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-photo { transform: scale(1.035); }
.product-card__visual .loaf { display: none; }
.product-card__visual > p { position: absolute; z-index: 2; right: 17px; bottom: 13px; margin: 0; color: white; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; text-align: right; opacity: .82; text-shadow: 0 1px 8px rgba(0,0,0,.38); }
.product-no { position: absolute; top: 15px; left: 17px; z-index: 2; font-size: 10px; }
.tag { position: absolute; right: 14px; top: 13px; z-index: 2; padding: 6px 11px; background: var(--paper); border-radius: 50%; font: 600 10px var(--serif); transform: rotate(5deg); }
.tag--light { color: var(--cream); background: var(--orange); }
.art-country { background: #aab18f; }
.art-walnut { background: #8a5540; color: var(--cream); }
.art-fig { background: #d2b69e; }
.art-cinnamon { background: #e3ad45; }
.art-tomato { background: #a6ae8d; }
.art-miso { background: #c3b8a5; }
.loaf { position: relative; z-index: 1; filter: drop-shadow(4px 22px 18px rgba(48,32,15,.28)); }
.loaf::before, .loaf::after, .loaf i { content: ""; display: block; position: absolute; }
.loaf--round { width: 66%; aspect-ratio: 1/.83; border-radius: 50% 50% 42% 42%; background: radial-gradient(circle at 43% 31%, #dca45b, #a45d29 70%); transform: rotate(-8deg); }
.loaf--round::before { width: 55%; height: 9%; left: 24%; top: 31%; background: #f1d195; border-radius: 50%; transform: rotate(47deg); }
.loaf--round i { width: 29%; height: 5%; background: #ecd092; border-radius: 50%; left: 20%; transform: rotate(45deg); }
.loaf--round i:nth-child(1) { top: 24%; }.loaf--round i:nth-child(2) { top: 43%; left: 42%; }.loaf--round i:nth-child(3) { top: 54%; left: 23%; }
.loaf--tall { width: 56%; height: 70%; border-radius: 52% 48% 31% 31%; background: radial-gradient(circle at 40% 30%, #d89d5a, #764021 72%); transform: rotate(7deg); }
.loaf--tall i { width: 46%; height: 5%; background: #eed090; border-radius: 50%; left: 12%; transform: rotate(49deg); }
.loaf--tall i:nth-child(1) { top: 25%; }.loaf--tall i:nth-child(2) { top: 43%; left: 41%; }.loaf--tall i:nth-child(3) { top: 60%; }
.loaf--fig { width: 64%; height: 47%; border-radius: 50% 45% 42% 45%; background: linear-gradient(140deg,#d8a468,#9b572d); transform: rotate(-5deg); }
.loaf--fig::before { width: 64%; height: 5%; border-radius: 50%; background: #efd4a2; top: 30%; left: 17%; transform: rotate(-12deg); }
.loaf--fig i { width: 17px; height: 14px; border-radius: 50%; background: #4e312c; top: 42%; left: 31%; }.loaf--fig i:nth-child(2) { left: 61%; top: 55%; }
.loaf--roll { width: 64%; aspect-ratio: 1; border-radius: 48% 52% 46% 54%; background: radial-gradient(circle at 50% 48%, #55351e 0 7%, #bb7537 8% 17%, #5f391e 18% 24%, #ce8a47 25% 38%, #70411f 39% 46%, #d69a55 47% 69%, #9a5e2d 72%); transform: rotate(8deg); }
.loaf--roll::after { inset: 7%; border: 3px solid rgba(250,222,167,.28); border-radius: 50%; transform: rotate(-20deg); }
.loaf--focaccia { width: 74%; height: 48%; border-radius: 20% 18% 16% 22%; background: linear-gradient(150deg,#d49a4b,#9c602a); transform: rotate(-6deg); }
.loaf--focaccia::before { inset: 9%; border-radius: inherit; box-shadow: inset 3px 4px 12px rgba(255,224,161,.4); }
.loaf--focaccia i { width: 30px; height: 22px; background: #b9472c; border-radius: 50%; box-shadow: 0 0 0 4px #64713d; }
.loaf--focaccia i:nth-child(1){top:23%;left:22%}.loaf--focaccia i:nth-child(2){top:58%;left:36%}.loaf--focaccia i:nth-child(3){top:31%;left:68%}.loaf--focaccia i:nth-child(4){top:67%;left:74%}
.loaf--bun { width: 56%; aspect-ratio: 1/.8; border-radius: 50% 50% 41% 41%; background: radial-gradient(circle at 45% 28%,#e5b76d,#ae692f); transform: rotate(4deg); }
.loaf--bun::before { left: 50%; top: 8%; width: 2px; height: 85%; background: rgba(107,61,30,.45); transform: rotate(15deg); }
.loaf--bun i { width: 5px; height: 10px; border-radius: 50%; background: #f4db9a; top: 20%; left: 32%; transform: rotate(40deg); }.loaf--bun i:nth-child(2){left:58%;top:33%}.loaf--bun i:nth-child(3){left:45%;top:55%}
.sold-stamp { position: absolute; z-index: 3; width: 82px; height: 82px; right: 24px; top: 24px; border: 2px solid var(--orange); color: var(--orange); background: var(--paper); border-radius: 50%; display: grid; place-items: center; align-content: center; font-size: 14px; font-weight: 600; line-height: 1.1; letter-spacing: .13em; transform: rotate(12deg); }
.sold-out .product-card__visual { filter: grayscale(.65); }
.product-card__body { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-top: 19px; }
.product-card__body p, .product-card__body h3 { margin: 0; }
.product-type { font-size: 9px; letter-spacing: .12em; color: #777368; }
.product-card h3 { margin-top: 5px; font: 700 21px/1.5 var(--serif); }
.flavor { color: #716c62; font-family: var(--serif); font-size: 11px; }
.product-card__body > strong { white-space: nowrap; font-size: 14px; margin-top: 22px; }
.stock { position: relative; margin-top: 18px; display: flex; align-items: center; gap: 10px; }
.stock::before { content: ""; height: 3px; flex: 1; background: rgba(37,38,31,.12); }
.stock span { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 3px; width: var(--stock); max-width: calc(100% - 78px); background: var(--olive); }
.stock p { margin: 0; color: #6f6b61; font-size: 9px; letter-spacing: .06em; }
.stock--low span { background: var(--orange); }
.stock--low p { color: var(--orange); font-weight: 600; }
.add-btn { width: 100%; margin-top: 13px; min-height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; background: transparent; border: 1px solid var(--ink); font-size: 12px; cursor: pointer; transition: .2s; }
.add-btn:hover:not(:disabled) { color: white; background: var(--ink); }
.add-btn span { font-size: 18px; font-weight: 300; }
.add-btn:disabled { opacity: .4; cursor: not-allowed; }

.pickup { padding-top: 125px; padding-bottom: 125px; background: var(--mustard); display: grid; grid-template-columns: .92fr 1.2fr; gap: clamp(60px, 11vw, 160px); }
.pickup__intro > p:not(.kicker) { max-width: 450px; font: 500 14px/1.9 var(--serif); margin: 25px 0 0; }
.pickup__intro svg { width: 150px; margin: 16px 0 0 60%; transform: rotate(8deg); }
.steps { list-style: none; margin: 5px 0 0; padding: 0; border-top: 1px solid rgba(37,38,31,.38); }
.steps li { min-height: 140px; padding: 28px 10px 25px; display: grid; grid-template-columns: 75px 1fr; border-bottom: 1px solid rgba(37,38,31,.38); }
.steps li > span { font-size: 11px; font-weight: 600; }
.steps h3 { margin: 0 0 10px; font: 700 22px var(--serif); }
.steps p { margin: 0; max-width: 460px; font-family: var(--serif); font-size: 12px; line-height: 1.8; }

.story { padding-top: 150px; padding-bottom: 150px; display: grid; grid-template-columns: 1fr .8fr; gap: 9vw; background: #3f4936; color: var(--cream); }
.story h2 { font-size: clamp(38px, 4.5vw, 66px); }
.story__quote { max-width: 510px; margin: 70px 0 0 12%; display: grid; grid-template-columns: 40px 1fr; }
.story__quote span { color: #e4ad33; font: 700 68px/1 var(--serif); }
.story__quote p { margin: 12px 0 0; font: 500 15px/2 var(--serif); color: #d6d2c7; }
.story__visual { min-height: 530px; position: relative; border: 1px solid rgba(255,255,255,.2); overflow: hidden; background: #302b22; }
.story__visual::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 52%, rgba(22,18,12,.56)); pointer-events: none; }
.story-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 63%; }
.story__visual .window, .story__visual .story-loaf { display: none; }
.window { position: absolute; width: 52%; height: 65%; top: 0; right: 0; display: grid; grid-template-columns: 1fr 1fr; background: rgba(239,202,111,.65); box-shadow: -20px 30px 90px rgba(246,188,83,.3); }
.window i { border-left: 4px solid #67523d; border-bottom: 4px solid #67523d; }
.window span { position: absolute; right: 18px; top: 15px; color: var(--ink); font-size: 10px; letter-spacing: .16em; }
.story-loaf { width: 55%; aspect-ratio: 1/.78; border-radius: 50% 50% 36% 36%; background: radial-gradient(circle at 40% 30%,#e3ad61,#86471e 78%); position: absolute; bottom: 8%; left: 14%; transform: rotate(-8deg); filter: drop-shadow(5px 25px 20px rgba(20,12,8,.45)); }
.story-loaf i { position: absolute; width: 42%; height: 7%; border-radius: 50%; background: #f1d497; left: 18%; transform: rotate(40deg); }.story-loaf i:nth-child(1){top:20%}.story-loaf i:nth-child(2){top:42%;left:45%}.story-loaf i:nth-child(3){top:59%}
.story__visual > p { position: absolute; z-index: 2; right: 20px; bottom: 20px; margin: 0; text-align: right; font: 500 10px/1.8 var(--serif); letter-spacing: .08em; text-shadow: 0 1px 8px rgba(0,0,0,.45); }

.case-study { padding-top: 140px; padding-bottom: 140px; background: var(--cream); }
.case-study__head { margin-bottom: 70px; display: flex; justify-content: space-between; align-items: end; }
.case-study__head h2 { max-width: 680px; }
.case-row { min-height: 170px; border-top: 1px solid var(--ink); display: grid; grid-template-columns: 170px minmax(210px,.7fr) 1fr 110px; align-items: center; gap: 28px; }
.case-row:last-child { border-bottom: 1px solid var(--ink); }
.case-row p, .case-row h3 { margin: 0; }
.case-no { align-self: start; padding-top: 28px; font-size: 9px; letter-spacing: .13em; }
.case-row h3 { font: 700 21px var(--serif); }
.case-row > p:nth-child(3) { max-width: 560px; font: 500 13px/1.9 var(--serif); color: #706c63; }
.case-mark { justify-self: end; width: 62px; height: 62px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font: 400 25px var(--serif); }
.case-row--result { min-height: 220px; background: var(--orange); margin: 0 calc(clamp(24px, 5vw, 76px) * -1); padding: 0 clamp(24px, 5vw, 76px); border-color: transparent; color: var(--cream); }
.case-row--result > p:nth-child(3) { color: #f6ded3; }
.case-row--result > strong { justify-self: end; display: grid; grid-template-columns: auto auto; align-items: start; }
.case-row--result > strong b { font: 500 64px/1 var(--sans); }.case-row--result > strong i { font: 400 22px/1 var(--sans); }.case-row--result > strong small { grid-column: 1 / -1; font: 400 9px var(--sans); text-align: right; letter-spacing: .1em; }

.newsletter { padding-top: 100px; padding-bottom: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: end; }
.newsletter h2 { font-size: clamp(34px, 4vw, 56px); }
.newsletter > div > p:last-child { font: 500 13px/1.8 var(--serif); color: #6b675e; }
.newsletter__form { position: relative; display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.newsletter__form input { min-width: 0; height: 60px; border: 0; background: transparent; outline: none; font-family: var(--serif); }
.newsletter__form button { border: 0; background: transparent; cursor: pointer; font-size: 12px; font-weight: 600; }
.newsletter__form button span { margin-left: 22px; }
.form-message { position: absolute; top: 65px; left: 0; margin: 0; font-size: 11px; color: var(--olive); }

.site-footer { padding-top: 80px; padding-bottom: 30px; background: var(--ink); color: var(--cream); display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-brand span { font: 900 clamp(58px,8vw,120px)/1 var(--serif); letter-spacing: -.08em; color: #e4ad33; }
.footer-brand p { font: 500 13px/1.8 var(--serif); color: #aaa89e; }
.footer-col { padding-top: 12px; display: flex; flex-direction: column; align-items: start; gap: 8px; font: 400 12px/1.8 var(--serif); }
.footer-col > p { font: 500 9px var(--sans); letter-spacing: .15em; color: #8d8c84; margin: 0 0 15px; }
.footer-col address { font-style: normal; }
.footer-col span { color: #939189; }
.footer-col a { border-bottom: 1px solid transparent; }.footer-col a:hover { border-color: currentColor; }
.footer-bottom { grid-column: 1 / -1; margin-top: 70px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); display: flex; justify-content: space-between; font-size: 8px; letter-spacing: .12em; color: #85847d; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 200; background: rgba(28,28,23,.48); opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(3px); }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; z-index: 201; width: min(470px, 100%); height: 100%; right: 0; top: 0; padding: 30px; display: flex; flex-direction: column; background: var(--paper); transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); box-shadow: -20px 0 80px rgba(20,20,15,.2); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: start; }
.cart-drawer__head p { margin: 0 0 4px; font-size: 8px; letter-spacing: .18em; }
.cart-drawer__head h2 { margin: 0; font: 700 28px var(--serif); }
.cart-drawer__head h2 span { font: 400 11px var(--sans); vertical-align: super; }
.icon-btn { width: 41px; height: 41px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; background: transparent; font-size: 24px; font-weight: 300; cursor: pointer; transition: .2s; }
.icon-btn:hover { color: var(--cream); background: var(--ink); }
.cart-drawer__meta { margin-top: 26px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; font-size: 10px; }.cart-drawer__meta span { color: #777368; }.cart-drawer__meta strong { font-weight: 500; }
.cart-items { flex: 1; overflow-y: auto; }
.empty-cart { height: 100%; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-cart span { font-size: 32px; color: var(--orange); }.empty-cart h3 { margin: 14px 0 4px; font: 700 19px var(--serif); }.empty-cart p { margin: 0; font: 500 11px var(--serif); color: #777368; }
.cart-item { padding: 18px 0; display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; border-bottom: 1px solid var(--line); }
.cart-item__thumb { width: 72px; height: 80px; overflow: hidden; background: #d7a543; }
.cart-item__thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.cart-item h3 { margin: 4px 0; font: 700 14px var(--serif); }.cart-item p { margin: 0; font-size: 10px; color: #716d63; }
.qty { margin-top: 9px; display: flex; align-items: center; gap: 11px; }.qty button { border: 0; background: none; padding: 0; cursor: pointer; font-size: 16px; }.qty span { font-size: 11px; }
.cart-item__right { display: flex; flex-direction: column; align-items: end; justify-content: space-between; font-size: 12px; }.remove-item { border: 0; background: none; color: #8a857b; text-decoration: underline; cursor: pointer; font-size: 9px; }
.cart-summary { padding-top: 18px; border-top: 1px solid var(--ink); }.cart-summary p { display: flex; justify-content: space-between; margin: 0 0 8px; font-size: 10px; }.cart-summary p strong { font-weight: 500; }.checkout-btn { width: 100%; margin-top: 18px; }
body.no-scroll { overflow: hidden; }

.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(28,28,23,.58); opacity: 0; pointer-events: none; transition: .3s; backdrop-filter: blur(6px); }
.modal.open { opacity: 1; pointer-events: auto; }
.modal__panel { width: min(570px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: clamp(30px, 5vw, 55px); position: relative; background: var(--paper); transform: translateY(20px); transition: transform .3s; }
.modal.open .modal__panel { transform: translateY(0); }
.modal__close { position: absolute; top: 22px; right: 22px; }
.modal h2 { margin: 0 0 30px; font: 700 36px/1.35 var(--serif); }
.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkout-form label { display: grid; gap: 7px; font-size: 10px; letter-spacing: .06em; }
.checkout-form label:nth-child(4) { grid-column: 1 / -1; }
.checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; border: 1px solid var(--line); background: rgba(255,255,255,.35); padding: 12px; outline: none; border-radius: 0; }.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus { border-color: var(--ink); }.checkout-form textarea { min-height: 75px; resize: vertical; }
.checkout-total { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--ink); }.checkout-form > .btn { grid-column: 1 / -1; width: 100%; }
.toast { position: fixed; z-index: 400; left: 50%; bottom: 25px; transform: translate(-50%, 30px); padding: 12px 20px; color: white; background: var(--ink); font: 500 12px var(--serif); opacity: 0; pointer-events: none; transition: .3s; box-shadow: 0 10px 35px rgba(0,0,0,.2); }.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero__copy { max-width: 760px; }
  .hero__art { min-height: 600px; width: min(650px, 100%); margin: 0 auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card__visual { height: 50vw; max-height: 500px; }
  .pickup { grid-template-columns: 1fr; }.pickup__intro svg { display: none; }
  .story { grid-template-columns: 1fr; }.story__visual { width: min(630px,100%); }
  .case-row { grid-template-columns: 130px .7fr 1fr 75px; gap: 18px; }
  .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .announcement { justify-content: space-between; padding: 8px 17px; }.announcement p span { display: none; }.announcement__countdown { border: 0; padding: 0; }.announcement__countdown > span { display: none; }
  .site-header { height: 75px; grid-template-columns: 1fr 1fr; }.main-nav { display: none; }.brand svg { width: 37px; }.brand b { font-size: 18px; }
  .hero { min-height: auto; padding-top: 54px; gap: 50px; }.hero h1 { font-size: clamp(36px, 9.4vw, 47px); }.hero__lead { font-size: 14px; }.hero__notes { margin-top: 45px; }.hero__notes p:nth-child(2) { text-align: center; }.hero__notes p:nth-child(3) { text-align: right; }
  .hero__art { min-height: 500px; }.hero-card { height: 440px; width: min(340px,82%); }.sun-stamp { width: 79px; height: 79px; right: 2px; }.sun-stamp b { font-size: 24px; }.hand-note { left: 0; }
  .menu-section { padding-top: 95px; padding-bottom: 100px; }.section-head { display: block; }.section-head > p { margin-top: 20px; }.menu-toolbar { align-items: start; overflow-x: auto; }.filters { gap: 20px; flex-shrink: 0; }.stock-legend { display: none; }
  .product-grid { grid-template-columns: 1fr; gap: 60px; }.product-card__visual { height: min(116vw, 520px); }
  .pickup { padding-top: 90px; padding-bottom: 90px; }.steps li { grid-template-columns: 50px 1fr; }
  .story { padding-top: 100px; padding-bottom: 100px; }.story__quote { margin: 50px 0 0; }.story__visual { min-height: 430px; }
  .case-study { padding-top: 90px; padding-bottom: 90px; }.case-study__head { margin-bottom: 50px; }.case-row, .case-row--result { padding-top: 26px; padding-bottom: 26px; min-height: auto; grid-template-columns: 1fr auto; gap: 12px; }.case-row .case-no { grid-column: 1; padding: 0; }.case-row h3 { grid-column: 1; }.case-row > p:nth-child(3) { grid-column: 1; }.case-mark, .case-row--result > strong { grid-column: 2; grid-row: 1 / 4; }.case-row--result { padding-left: 24px; padding-right: 24px; }.case-row--result > strong b { font-size: 52px; }
  .newsletter { padding-top: 80px; padding-bottom: 90px; }.newsletter__form { grid-template-columns: 1fr; }.newsletter__form button { padding: 15px 0; text-align: right; }
  .site-footer { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-wrap: wrap; gap: 10px 25px; }.footer-bottom span:nth-child(2) { display: none; }
  .cart-drawer { padding: 23px; }
  .checkout-form { grid-template-columns: 1fr; }.checkout-form label:nth-child(4), .checkout-total, .checkout-form > .btn { grid-column: 1; }
}

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