:root {
  --sand-0: #fbf8f1;
  --sand-1: #f3ede1;
  --sand-2: #e5dac8;
  --wood: #b88b61;
  --brown: #35271f;
  --brown-2: #655447;
  --cobalt: #234fbf;
  --white: #fffdf8;
  --line: rgba(53, 39, 31, .18);
  --radius-lg: 48px;
  --radius-md: 28px;
  --page: min(1480px, calc(100vw - 72px));
  --header-height: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand-0);
  color: var(--brown);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--cobalt); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--brown);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.notice {
  min-height: 34px;
  padding: 7px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--brown);
  color: #fffaf0;
  font-size: 11px;
  letter-spacing: .12em;
}
.notice p { margin: 0; }
.notice > p:first-child { grid-column: 2; }
.notice-detail { justify-self: end; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(251, 248, 241, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: height .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { height: 68px; border-color: var(--line); }
.header-inner {
  width: var(--page);
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font-weight: 700; letter-spacing: .08em; }
.brand-mark { width: 25px; height: 25px; position: relative; display: inline-block; transform: rotate(12deg); }
.brand-mark i { position: absolute; display: block; background: var(--cobalt); border-radius: 100% 0 100% 0; }
.brand-mark i:first-child { width: 17px; height: 11px; top: 1px; left: 1px; }
.brand-mark i:last-child { width: 17px; height: 11px; bottom: 1px; right: 0; transform: rotate(180deg); }
.main-nav { display: flex; justify-content: center; gap: clamp(22px, 3vw, 50px); font-size: 13px; }
.main-nav a { position: relative; padding: 10px 0; color: var(--brown-2); }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--brown); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--brown); }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 22px; }
.text-button, .bag-button, .icon-button { border: 0; background: none; cursor: pointer; }
.text-button { padding: 8px 0; display: inline-flex; align-items: center; gap: 7px; font-size: 12px; }
.text-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.bag-button { display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--brown); border-radius: 999px; font-size: 12px; }
.bag-button b { min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--cobalt); color: white; font: 10px/1 ui-monospace, monospace; }
.menu-toggle { display: none; }

.hero {
  width: var(--page);
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 76px) 0 74px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}
.hero-copy { grid-column: 1 / span 5; padding-right: clamp(0px, 3vw, 46px); }
.eyebrow { margin: 0 0 30px; color: var(--brown-2); font: 11px/1.3 ui-monospace, "SFMono-Regular", monospace; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { margin-right: 12px; color: var(--cobalt); }
.hero h1 { margin: 0; font-size: clamp(52px, 6.4vw, 104px); line-height: 1.04; letter-spacing: -.07em; font-weight: 500; }
.hero-intro { max-width: 490px; margin: 38px 0 0; color: var(--brown-2); font-size: 15px; line-height: 2; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 30px; }
.primary-button { min-height: 52px; padding: 0 20px 0 24px; display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; border-radius: 999px; background: var(--brown); color: white; font-size: 13px; transition: background .2s ease, transform .2s ease; }
.primary-button:hover { background: var(--cobalt); transform: translateY(-2px); }
.primary-button span { font-size: 18px; }
.line-link { display: inline-block; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: 13px; }
.line-link:hover { color: var(--cobalt); }
.hero-notes { margin: 66px 0 0; padding-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--line); }
.hero-notes div { min-width: 0; }
.hero-notes dt { margin-bottom: 7px; font-size: 12px; }
.hero-notes dd { margin: 0; color: var(--brown-2); font-size: 10px; }
.hero-visual { grid-column: 7 / span 6; align-self: stretch; }
.hero-image-wrap { position: relative; height: calc(100% - 56px); min-height: 570px; overflow: hidden; border-radius: 42% 42% var(--radius-lg) var(--radius-lg); background: var(--sand-2); }
.hero-image-wrap::before { content: ""; position: absolute; z-index: 1; inset: 0; border: 1px solid rgba(53,39,31,.08); border-radius: inherit; pointer-events: none; }
.hero-image-wrap > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hero-image-wrap:hover > img { transform: scale(1.025); }
.hero-tag { position: absolute; z-index: 2; padding: 9px 13px; border-radius: 999px; background: rgba(255,253,248,.86); backdrop-filter: blur(8px); font-size: 10px; letter-spacing: .12em; }
.hero-tag-one { top: 20%; left: 5%; }
.hero-tag-two { right: 5%; bottom: 10%; }
.hero-caption { height: 56px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; color: var(--brown-2); }
.hero-caption span { font: 9px/1.5 ui-monospace, monospace; letter-spacing: .1em; }
.hero-caption p { margin: 0; font-size: 11px; }

.manifesto { width: var(--page); margin: 0 auto; padding: clamp(90px, 12vw, 190px) 0; text-align: center; }
.manifesto p { margin: 0; font-size: clamp(36px, 5vw, 78px); line-height: 1.25; letter-spacing: -.05em; }
.manifesto p:nth-child(2) { color: var(--wood); }
.manifesto span { display: block; margin-top: 32px; color: var(--brown-2); font-size: 12px; letter-spacing: .08em; }

.section-shell { width: var(--page); margin: 0 auto; }
.section-heading { margin-bottom: 50px; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: end; }
.section-heading > div:first-child { grid-column: 1 / span 7; }
.section-heading .eyebrow { margin-bottom: 20px; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 60px); font-weight: 500; line-height: 1.15; letter-spacing: -.05em; }
.section-heading > p { grid-column: 9 / span 4; margin: 0; color: var(--brown-2); font-size: 13px; line-height: 1.9; }
.categories { padding-bottom: 150px; }
.category-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; }
.category-card { position: relative; grid-column: span 3; min-height: 535px; overflow: hidden; border-radius: var(--radius-md); background: var(--sand-1); }
.category-card.category-large { grid-column: span 6; }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(37,26,19,.7)); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.category-card:hover img { transform: scale(1.035); }
.category-index { position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 10px; border-radius: 999px; background: rgba(255,253,248,.9); color: var(--cobalt); font: 10px/1 ui-monospace, monospace; }
.category-info { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: end; justify-content: space-between; color: white; }
.category-info h3 { margin: 0; font-size: clamp(22px, 2vw, 30px); font-weight: 500; }
.category-info span { font-size: 11px; }
.category-info b { margin-left: 7px; font-size: 16px; font-weight: 400; }

.products { padding: 140px 0 165px; border-top: 1px solid var(--line); }
.product-heading { align-items: end; }
.filters { grid-column: 8 / span 5; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.filters button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--brown-2); font-size: 11px; cursor: pointer; }
.filters button:hover, .filters button.is-selected { border-color: var(--brown); background: var(--brown); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px 24px; }
.product-card[hidden] { display: none; }
.product-image { position: relative; aspect-ratio: 1 / 1.15; overflow: hidden; border-radius: var(--radius-md); background: var(--sand-1); }
.product-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image > img { transform: scale(1.025); }
.product-badge { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 7px 10px; border-radius: 999px; background: var(--brown); color: white; font-size: 9px; letter-spacing: .1em; }
.product-badge.blue { background: var(--cobalt); }
.heart-button { position: absolute; z-index: 3; top: 13px; right: 13px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,253,248,.86); cursor: pointer; backdrop-filter: blur(6px); }
.heart-button svg { width: 17px; fill: none; stroke: var(--brown); stroke-width: 1.5; }
.heart-button[aria-pressed="true"] svg { fill: var(--cobalt); stroke: var(--cobalt); }
.quick-add { position: absolute; z-index: 3; right: 14px; bottom: 14px; left: 14px; min-height: 48px; border: 0; border-radius: 999px; background: var(--white); color: var(--brown); font-size: 12px; cursor: pointer; transform: translateY(calc(100% + 16px)); transition: transform .25s ease, background .2s ease, color .2s ease; box-shadow: 0 10px 30px rgba(53,39,31,.09); }
.product-card:hover .quick-add, .quick-add:focus-visible { transform: translateY(0); }
.quick-add:hover { background: var(--cobalt); color: white; }
.product-meta { margin-top: 19px; display: flex; justify-content: space-between; gap: 16px; }
.product-meta p { margin: 0 0 7px; color: var(--brown-2); font-size: 10px; letter-spacing: .1em; }
.product-meta h3 { margin: 0; font-size: 15px; font-weight: 500; }
.product-meta strong { padding-top: 19px; color: var(--brown-2); font: 12px/1 ui-monospace, monospace; white-space: nowrap; }

.story { padding: 150px 0; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 24px; align-items: center; }
.story-art { position: relative; grid-column: 1 / span 6; }
.story-art > img { width: 100%; border-radius: 48% 48% var(--radius-lg) var(--radius-lg); background: var(--sand-2); }
.story-stamp { position: absolute; right: -38px; bottom: 12%; width: 110px; height: 110px; display: grid; place-content: center; justify-items: center; border-radius: 50%; background: var(--cobalt); color: white; transform: rotate(9deg); }
.story-stamp span { font-size: 31px; line-height: 1; }
.story-stamp i { width: 24px; height: 1px; margin: 5px; background: rgba(255,255,255,.65); }
.story-stamp small { font-size: 10px; letter-spacing: .25em; }
.story-copy { grid-column: 8 / span 4; }
.story-copy h2 { margin: 0 0 40px; font-size: clamp(40px, 4vw, 65px); line-height: 1.15; font-weight: 500; letter-spacing: -.05em; }
.story-copy > p:not(.eyebrow) { margin: 0 0 18px; color: var(--brown-2); font-size: 14px; line-height: 2; }
.story-copy ul { margin: 38px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.story-copy li { padding: 15px 0; display: flex; gap: 20px; border-bottom: 1px solid var(--line); font-size: 12px; }
.story-copy li span { color: var(--cobalt); font: 10px/1.5 ui-monospace, monospace; }

.service { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 145px) max(36px, calc((100vw - min(1480px, calc(100vw - 72px))) / 2)); background: var(--brown); color: #fff9ef; }
.service::before { content: ""; position: absolute; width: 420px; height: 420px; right: -130px; top: -260px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02); }
.service-intro { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.eyebrow.light { grid-column: 1 / span 3; color: rgba(255,255,255,.65); }
.eyebrow.light span { color: #84a6ff; }
.service-intro h2 { grid-column: 5 / span 7; margin: 0; font-size: clamp(40px, 5vw, 76px); line-height: 1.15; font-weight: 400; letter-spacing: -.05em; }
.service-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-grid article { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.25); }
.service-grid article > span { color: #84a6ff; font: 10px/1 ui-monospace, monospace; }
.service-grid h3 { margin: 38px 0 12px; font-size: 17px; font-weight: 500; }
.service-grid p { max-width: 330px; margin: 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.8; }
.back-top { width: max-content; margin: 80px 0 0 auto; display: flex; align-items: center; gap: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 11px; }

.search-dialog { width: min(640px, calc(100vw - 32px)); padding: 32px; border: 0; border-radius: var(--radius-md); background: var(--sand-0); color: var(--brown); box-shadow: 0 30px 100px rgba(32,22,16,.25); }
.search-dialog::backdrop { background: rgba(36,27,21,.48); backdrop-filter: blur(5px); }
.dialog-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.dialog-head p { margin: 0; font-size: 22px; }
.dialog-head button, .drawer-head button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 24px; line-height: 1; cursor: pointer; }
.search-dialog label { display: block; margin-bottom: 10px; color: var(--brown-2); font-size: 11px; }
.search-field { display: flex; border-bottom: 1px solid var(--brown); }
.search-field input { flex: 1; min-width: 0; padding: 16px 0; border: 0; outline: 0; background: transparent; font-size: 16px; }
.search-field button { border: 0; background: transparent; color: var(--cobalt); cursor: pointer; }
.search-hint { margin: 22px 0 0; color: var(--brown-2); font-size: 11px; }

.drawer-shade { position: fixed; z-index: 199; inset: 0; background: rgba(36,27,21,.44); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s; }
.drawer-shade.is-open { opacity: 1; visibility: visible; }
.bag-drawer { position: fixed; z-index: 200; top: 0; right: 0; bottom: 0; width: min(460px, 100vw); padding: 34px; display: flex; flex-direction: column; background: var(--sand-0); transform: translateX(100%); visibility: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), visibility .35s; }
.bag-drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.drawer-head p { margin: 0 0 7px; color: var(--brown-2); font-size: 10px; letter-spacing: .12em; }
.drawer-head h2 { margin: 0; font-size: 30px; font-weight: 500; }
.drawer-head h2 span { color: var(--cobalt); font: 13px/1 ui-monospace, monospace; }
.bag-items { flex: 1; overflow-y: auto; }
.empty-state { margin: 38vh 0 0; color: var(--brown-2); text-align: center; font-size: 13px; line-height: 1.9; transform: translateY(-50%); }
.bag-item { padding: 18px 0; display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.bag-item-art { width: 58px; height: 64px; display: grid; place-items: center; border-radius: 12px; background: var(--sand-1); color: var(--wood); font-size: 22px; }
.bag-item h3 { margin: 0 0 6px; font-size: 13px; font-weight: 500; }
.bag-item p { margin: 0; color: var(--brown-2); font: 11px/1 ui-monospace, monospace; }
.bag-item button { padding: 7px; border: 0; background: transparent; color: var(--brown-2); font-size: 11px; cursor: pointer; }
.bag-summary { padding-top: 22px; border-top: 1px solid var(--line); }
.bag-summary p { display: flex; justify-content: space-between; margin: 0 0 18px; font-size: 13px; }
.bag-summary button { width: 100%; min-height: 50px; border: 0; border-radius: 999px; background: var(--brown); color: white; cursor: pointer; }
.bag-summary small { display: block; margin-top: 11px; color: var(--brown-2); text-align: center; font-size: 9px; }
.toast { position: fixed; z-index: 300; right: 24px; bottom: 24px; max-width: calc(100vw - 48px); padding: 13px 18px; border-radius: 999px; background: var(--cobalt); color: white; font-size: 12px; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --page: calc(100vw - 40px); }
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; position: absolute; top: 100%; right: 0; left: 0; padding: 18px 20px 28px; flex-direction: column; align-items: flex-start; gap: 3px; background: var(--sand-0); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(53,39,31,.05); }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding: 14px 0; }
  .menu-toggle { display: flex; width: 42px; height: 42px; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; justify-self: end; }
  .menu-toggle span { width: 16px; height: 1px; background: var(--brown); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .header-tools { position: absolute; right: 74px; }
  .hero { min-height: auto; padding-top: 46px; }
  .hero-copy { grid-column: 1 / span 6; padding-right: 0; }
  .hero-visual { grid-column: 7 / span 6; }
  .hero-image-wrap { min-height: 520px; }
  .hero h1 { font-size: clamp(54px, 7vw, 78px); }
  .hero-notes { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .hero-notes div { display: flex; justify-content: space-between; }
  .hero-notes dt { margin: 0; }
  .category-card, .category-card.category-large { grid-column: span 4; min-height: 460px; }
  .story-copy { grid-column: 8 / span 5; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 32px); --header-height: 70px; --radius-lg: 34px; --radius-md: 22px; }
  .notice { padding: 7px 16px; grid-template-columns: 1fr; text-align: center; }
  .notice > p:first-child { grid-column: 1; }
  .notice-detail { display: none; }
  .site-header.is-scrolled { height: 62px; }
  .header-inner { gap: 12px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 22px; height: 22px; }
  .header-tools { right: 62px; }
  .search-button { display: none; }
  .bag-button { padding: 9px 10px; }
  .bag-button span { display: none; }
  .hero { padding: 40px 0 66px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
  .hero-copy, .hero-visual { grid-column: 1 / -1; }
  .hero h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero-intro { margin-top: 26px; font-size: 14px; line-height: 1.85; }
  .hero-actions { margin-top: 30px; flex-wrap: wrap; gap: 18px 24px; }
  .hero-notes { display: none; }
  .hero-image-wrap { height: auto; min-height: 0; aspect-ratio: 1 / 1.05; border-radius: 42% 42% 28px 28px; }
  .hero-caption { height: 48px; }
  .hero-tag { padding: 7px 10px; font-size: 8px; }
  .manifesto { padding: 96px 0 110px; }
  .manifesto p { font-size: clamp(32px, 10vw, 48px); }
  .manifesto span { max-width: 270px; margin: 26px auto 0; line-height: 1.8; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  .section-heading > div:first-child, .section-heading > p { grid-column: 1; }
  .section-heading h2 { font-size: 36px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .category-card, .category-card.category-large { grid-column: span 1; min-height: 360px; }
  .category-card.category-large { grid-column: 1 / -1; min-height: 430px; }
  .category-info { right: 18px; bottom: 18px; left: 18px; display: block; }
  .category-info h3 { margin-bottom: 8px; }
  .categories { padding-bottom: 100px; }
  .products { padding: 95px 0 110px; }
  .filters { grid-column: 1; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding: 2px 4px 8px; margin: 0 -4px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filters button { white-space: nowrap; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px 14px; }
  .product-image { border-radius: 18px; }
  .quick-add { right: 8px; bottom: 8px; left: 8px; min-height: 42px; transform: translateY(0); background: rgba(255,253,248,.9); font-size: 11px; }
  .product-badge { top: 10px; left: 10px; }
  .heart-button { top: 8px; right: 8px; width: 34px; height: 34px; }
  .product-meta { margin-top: 14px; display: block; }
  .product-meta h3 { font-size: 13px; line-height: 1.5; }
  .product-meta strong { display: block; padding-top: 9px; }
  .story { padding: 105px 0; grid-template-columns: 1fr; gap: 64px; }
  .story-art, .story-copy { grid-column: 1; }
  .story-art { width: calc(100% - 20px); }
  .story-stamp { right: -20px; width: 88px; height: 88px; }
  .story-stamp span { font-size: 25px; }
  .story-copy h2 { font-size: 45px; }
  .service { padding-right: 16px; padding-left: 16px; }
  .service-intro { grid-template-columns: 1fr; }
  .eyebrow.light, .service-intro h2 { grid-column: 1; }
  .service-intro h2 { font-size: 42px; }
  .service-grid { margin-top: 60px; grid-template-columns: 1fr; gap: 20px; }
  .service-grid h3 { margin-top: 22px; }
  .back-top { margin-top: 54px; }
  .bag-drawer { padding: 24px 20px; }
  .toast { right: 16px; bottom: 16px; }
}

@media (max-width: 390px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card, .category-card.category-large { grid-column: 1; min-height: 410px; }
  .product-grid { gap: 40px 10px; }
  .product-meta h3 { font-size: 12px; }
}

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