:root {
  --sand: #f1e8d8;
  --sand-deep: #d7c6a9;
  --paper: #f8f3e9;
  --espresso: #2a1c16;
  --brown: #5b4436;
  --olive: #70745c;
  --blue: #1647e5;
  --blue-dark: #1137af;
  --line: rgba(42, 28, 22, .23);
  --white-line: rgba(255, 255, 255, .26);
  --display: "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
  --sans: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --page: min(100% - 48px, 1440px);
  --header-h: 92px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--espresso);
  background: var(--sand);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.drawer-open,
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { color: #fff; background: var(--blue); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--espresso);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(241, 232, 216, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 12px 36px rgba(42, 28, 22, .08);
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--sand);
  background: var(--espresso);
}
.brand-mark svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 18px; letter-spacing: .16em; }
.brand-copy small { margin-top: 4px; color: var(--brown); font-size: 10px; letter-spacing: .04em; }
.desktop-nav { display: flex; height: 100%; align-items: center; }
.desktop-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.desktop-nav a::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.cart-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 0 16px;
  color: var(--espresso);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.cart-button:hover { background: rgba(255, 255, 255, .32); }
.cart-button svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.cart-button > span:nth-child(2) { font-size: 13px; font-weight: 700; }
.cart-count { min-width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--blue); font-size: 12px; }
.menu-button {
  display: none;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: var(--espresso);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.menu-button-label { font-size: 12px; font-weight: 700; }
.menu-lines { width: 22px; display: grid; gap: 6px; }
.menu-lines i { height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-button[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 24px 32px;
  color: var(--sand);
  background: var(--espresso);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.mobile-panel.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-panel nav { display: grid; }
.mobile-panel a { display: flex; align-items: baseline; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--white-line); font-size: clamp(28px, 8vw, 48px); font-weight: 700; }
.mobile-panel a span { color: #8e7c6d; font-size: 12px; }
.mobile-panel p { margin: 0; color: #b9aa99; font-size: 13px; letter-spacing: .1em; }

.hero {
  position: relative;
  min-height: 920px;
  padding-top: var(--header-h);
  background-image: radial-gradient(rgba(42, 28, 22, .19) .7px, transparent .7px);
  background-size: 18px 18px;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  top: var(--header-h);
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  content: "";
  background: rgba(42, 28, 22, .1);
}
.hero-grid {
  width: var(--page);
  min-height: 770px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  padding: 44px 42px 26px;
  border-right: 1px solid var(--line);
  background: rgba(241, 232, 216, .82);
}
.eyebrow { display: flex; justify-content: space-between; gap: 16px; margin: 0 0 86px; color: var(--brown); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 7.3vw, 128px);
  font-stretch: condensed;
  line-height: .89;
  letter-spacing: -.08em;
}
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-intro { max-width: 420px; margin: 42px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--brown); font-size: 16px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--sand); background: var(--espresso); }
.button-primary:hover { background: #443128; }
.button-blue { color: #fff; background: var(--blue); }
.button-blue:hover { background: var(--blue-dark); }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin: auto -42px -26px; border-top: 1px solid var(--line); }
.hero-stats div { min-width: 0; padding: 20px 18px; border-right: 1px solid var(--line); }
.hero-stats div:last-child { border-right: 0; }
.hero-stats dt { font-family: var(--display); font-size: 23px; font-weight: 800; letter-spacing: -.04em; }
.hero-stats dd { margin: 3px 0 0; color: var(--brown); font-size: 10px; letter-spacing: .1em; }

.hero-visual {
  --parallax-y: 0px;
  position: relative;
  grid-column: span 7;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--espresso);
}
.hero-image-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-image-wrap::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(21, 12, 8, .28), transparent 34%, rgba(21, 12, 8, .08)); }
.hero-visual img { width: 100%; height: 108%; object-fit: cover; object-position: 57% center; transform: translate3d(0, var(--parallax-y), 0) scale(1.04); will-change: transform; }
.hero-visual figcaption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 2; display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; color: #fff; border-top: 1px solid rgba(255, 255, 255, .64); font-size: 10px; letter-spacing: .12em; }
.visual-index { position: absolute; top: 24px; right: 24px; z-index: 2; color: #fff; font-family: var(--display); font-size: 12px; letter-spacing: .1em; }
.hero-note { position: absolute; top: 47%; left: 32px; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 14px 18px; color: var(--espresso); background: var(--sand); box-shadow: 0 12px 30px rgba(20, 12, 8, .2); }
.note-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(22, 71, 229, .14); }
.hero-note > span:last-child { display: flex; flex-direction: column; }
.hero-note small { color: var(--brown); font-size: 9px; letter-spacing: .12em; }
.hero-note strong { font-size: 13px; }
.scroll-cue { position: absolute; bottom: 22px; left: 50%; display: flex; align-items: center; gap: 14px; color: var(--brown); font-size: 10px; letter-spacing: .14em; transform: translateX(-50%); }
.scroll-cue i { position: relative; width: 1px; height: 32px; background: var(--line); overflow: hidden; }
.scroll-cue i::after { position: absolute; inset: -100% 0 auto; height: 100%; content: ""; background: var(--blue); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { to { transform: translateY(200%); } }

.section { width: var(--page); margin: 0 auto; border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.categories { padding: 128px 42px 150px; background: var(--sand); }
.section-heading { display: grid; grid-template-columns: 3fr 9fr; gap: 24px; margin-bottom: 72px; }
.section-number { margin: 0; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-heading > div { display: grid; grid-template-columns: 7fr 3fr; gap: 38px; align-items: end; }
.section h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 92px); line-height: .96; letter-spacing: -.065em; }
.section-heading > div > p { margin: 0 0 5px; color: var(--brown); font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.product-card { min-width: 0; background: var(--paper); }
.product-figure { position: relative; min-height: 360px; display: grid; place-items: center; overflow: hidden; background-image: radial-gradient(rgba(42, 28, 22, .2) .7px, transparent .7px); background-size: 16px 16px; border-bottom: 1px solid var(--line); }
.product-figure::before { position: absolute; inset: 16px; content: ""; border: 1px solid rgba(42, 28, 22, .1); }
.product-figure svg { width: min(74%, 390px); fill: none; stroke: var(--espresso); stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; transition: transform .45s cubic-bezier(.2,.75,.3,1); }
.product-card:hover .product-figure svg { transform: scale(1.035) translateY(-4px); }
.product-figure .shape-fill { fill: var(--sand-deep); stroke: var(--espresso); }
.product-figure .accent-line { stroke: var(--blue); stroke-width: 4; }
.product-figure .accent-fill { fill: var(--blue); stroke: var(--blue); opacity: .85; }
.product-card-chair .product-figure { background-color: #e3d6c1; }
.product-card-lamp .product-figure { background-color: #2e211a; background-image: radial-gradient(rgba(241, 232, 216, .18) .7px, transparent .7px); }
.product-card-lamp .product-figure svg { stroke: var(--sand); }
.product-card-lamp .product-figure .shape-fill { fill: #655044; stroke: var(--sand); }
.product-card-lamp .card-code { color: var(--sand); }
.product-card-bag .product-figure { background-color: #d7cfbb; }
.card-code { position: absolute; top: 28px; left: 28px; z-index: 1; color: var(--brown); font-family: var(--display); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.product-content { padding: 28px 28px 24px; }
.product-type { margin: 0 0 8px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.product-content h3 { margin: 0; font-family: var(--display); font-size: 30px; line-height: 1.15; letter-spacing: -.03em; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; color: var(--brown); font-size: 12px; }
.product-meta strong { color: var(--espresso); font-size: 15px; white-space: nowrap; }
.card-action { width: 100%; display: flex; justify-content: space-between; margin-top: 22px; padding: 15px 0 4px; color: var(--espresso); border: 0; border-top: 1px solid var(--line); background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.card-action span { color: var(--blue); font-size: 18px; transition: transform .2s ease; }
.card-action:hover span { transform: rotate(90deg); }

.collection { display: grid; grid-template-columns: 7fr 5fr; min-height: 920px; color: var(--sand); background: var(--espresso); border-color: rgba(241, 232, 216, .25); }
.collection-media { --parallax-y: 0px; position: relative; min-width: 0; overflow: hidden; border-right: 1px solid var(--white-line); }
.collection-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(26, 16, 12, .42), transparent 50%); }
.collection-media img { width: 100%; height: 110%; object-fit: cover; object-position: 63% center; transform: translate3d(0, var(--parallax-y), 0) scale(1.05); will-change: transform; }
.collection-tag { position: absolute; right: 24px; bottom: 24px; z-index: 2; width: 142px; padding: 18px; color: var(--espresso); background: var(--sand); }
.collection-tag span { display: block; color: var(--brown); font-size: 9px; letter-spacing: .12em; }
.collection-tag strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 24px; }
.collection-copy { display: flex; flex-direction: column; padding: 48px 42px 36px; }
.collection .section-number { color: #82a0ff; }
.collection-kicker { margin: 84px 0 18px; color: #c0af9d; font-size: 12px; font-weight: 700; letter-spacing: .16em; }
.collection h2 { font-size: clamp(50px, 5.3vw, 82px); }
.collection-intro { max-width: 430px; margin: 34px 0 0; color: #c5b7a7; font-size: 14px; }
.kit-list { margin: 50px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--white-line); }
.kit-list li { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--white-line); }
.kit-list > li > span { color: #819cf2; font-family: var(--display); font-size: 11px; }
.kit-list div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.kit-list strong { font-size: 13px; }
.kit-list small { color: #9f8e7f; font-size: 10px; }
.collection-purchase { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 34px; }
.collection-purchase > div { display: flex; flex-direction: column; }
.collection-purchase small { color: #a9998a; font-size: 10px; }
.collection-purchase strong { margin-top: 4px; font-family: var(--display); font-size: 34px; line-height: 1; }

.guide { padding: 128px 42px 0; background: var(--paper); }
.guide-heading { display: grid; grid-template-columns: 3fr 9fr; gap: 24px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 80px -42px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.guide-grid li { position: relative; min-height: 440px; padding: 28px 30px 38px; border-right: 1px solid var(--line); }
.guide-grid li:last-child { border-right: 0; }
.guide-index { color: var(--blue); font-family: var(--display); font-size: 11px; font-weight: 800; }
.guide-icon { width: 90px; margin: 72px auto 58px; color: var(--espresso); }
.guide-icon svg { fill: none; stroke: currentColor; stroke-width: 1.5; }
.guide-grid h3 { margin: 0; font-family: var(--display); font-size: 28px; }
.guide-grid p { max-width: 310px; margin: 12px 0 0; color: var(--brown); font-size: 13px; }
.guide-note { display: grid; grid-template-columns: 3fr 6fr 3fr; gap: 24px; align-items: center; margin: 0 -42px; padding: 34px 42px; color: var(--sand); background: var(--blue); }
.guide-note > span { font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.guide-note p { margin: 0; font-size: 13px; }
.text-link.light { justify-self: end; }

.dispatch { position: relative; min-height: 630px; display: grid; grid-template-columns: 7fr 5fr; overflow: hidden; color: var(--sand); background: #35251e; border-color: rgba(255,255,255,.18); }
.dispatch-art { display: grid; align-items: end; min-width: 0; padding: 40px; border-right: 1px solid var(--white-line); background-image: radial-gradient(rgba(241, 232, 216, .16) .7px, transparent .7px); background-size: 17px 17px; }
.dispatch-art svg { width: 100%; overflow: visible; }
.dispatch-art circle { fill: var(--sand-deep); }
.dispatch-mountain { stroke: var(--sand); stroke-width: 1.2; }
.dispatch-mountain.back { fill: #624c3f; }
.dispatch-mountain.front { fill: #443129; }
.dispatch-route { fill: none; stroke: var(--blue); stroke-width: 4; stroke-dasharray: 9 10; }
.route-dot { fill: var(--blue) !important; stroke: var(--sand); stroke-width: 4; }
.route-dot.end { animation: pulse 2s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 50% { transform: scale(1.65); } }
.dispatch-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 64px 42px; }
.dispatch .section-number { margin-bottom: 86px; color: #85a2ff; }
.dispatch h2 { font-size: clamp(54px, 5.6vw, 88px); }
.dispatch-copy > p:not(.section-number) { max-width: 380px; margin: 32px 0; color: #c6b6a6; font-size: 14px; }
.dispatch .button-primary { color: var(--espresso); background: var(--sand); }
.dispatch .button-primary:hover { background: #fffaf1; }

.drawer-backdrop { position: fixed; inset: 0; z-index: 199; background: rgba(29, 18, 13, .48); backdrop-filter: blur(3px); opacity: 0; transition: opacity .28s ease; }
.drawer-backdrop.is-visible { opacity: 1; }
.cart-drawer { position: fixed; top: 0; right: 0; z-index: 200; width: min(100%, 500px); height: 100vh; height: 100dvh; display: flex; flex-direction: column; color: var(--espresso); background: var(--paper); box-shadow: -20px 0 60px rgba(24, 14, 10, .22); transform: translateX(102%); visibility: hidden; transition: transform .35s cubic-bezier(.25,.8,.25,1), visibility .35s; }
.cart-drawer.is-open { transform: none; visibility: visible; }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 28px; border-bottom: 1px solid var(--line); }
.drawer-header p { margin: 0 0 6px; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.drawer-header h2 { margin: 0; font-family: var(--display); font-size: 30px; line-height: 1.1; }
.drawer-close { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.drawer-close span { font-size: 28px; line-height: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 28px; }
.empty-state { min-height: 100%; display: grid; place-content: center; justify-items: center; text-align: center; }
.empty-state > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); font-size: 27px; }
.empty-state h3 { margin: 22px 0 6px; font-size: 18px; }
.empty-state p { max-width: 300px; margin: 0; color: var(--brown); font-size: 12px; }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.item-code { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--sand); font-family: var(--display); font-size: 12px; font-weight: 800; }
.item-info { display: flex; min-width: 0; flex-direction: column; }
.item-info strong { font-size: 13px; }
.item-info span { margin-top: 3px; color: var(--brown); font-size: 11px; }
.remove-item { width: 34px; height: 34px; border: 0; color: var(--brown); background: transparent; cursor: pointer; font-size: 18px; }
.drawer-total { padding: 24px 28px 30px; border-top: 1px solid var(--line); }
.drawer-total > div { display: flex; justify-content: space-between; align-items: end; margin-bottom: 18px; }
.drawer-total span { color: var(--brown); font-size: 12px; }
.drawer-total strong { font-family: var(--display); font-size: 26px; }
.full-width { width: 100%; }
.drawer-total p { margin: 12px 0 0; color: var(--brown); text-align: center; font-size: 10px; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 300; max-width: min(360px, calc(100% - 48px)); padding: 14px 18px; color: #fff; background: var(--espresso); box-shadow: 0 14px 36px rgba(25, 14, 10, .24); opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity .22s ease, transform .22s ease; font-size: 12px; }
.toast.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --page: min(100% - 32px, 1440px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 16px; }
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-panel { display: flex; }
  .hero { min-height: auto; padding-bottom: 74px; }
  .hero-grid { min-height: 760px; margin-top: 32px; }
  .hero-copy { grid-column: span 6; padding: 36px 28px 24px; }
  .hero-visual { grid-column: span 6; }
  .eyebrow { margin-bottom: 64px; }
  .hero-stats { margin-right: -28px; margin-bottom: -24px; margin-left: -28px; }
  .section-heading > div { grid-template-columns: 2fr 1fr; }
  .collection-copy { padding: 42px 32px 32px; }
  .collection-kicker { margin-top: 60px; }
  .kit-list div { flex-direction: column; gap: 2px; }
  .collection-purchase { align-items: stretch; flex-direction: column; }
  .collection-purchase .button { width: 100%; }
}

@media (max-width: 820px) {
  :root { --page: 100%; --header-h: 76px; }
  .site-header { height: var(--header-h); }
  .site-header.is-scrolled { height: 66px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy small { display: none; }
  .cart-button > span:nth-child(2), .menu-button-label { display: none; }
  .cart-button { padding-left: 11px; }
  .menu-button { padding: 0 11px; }
  .mobile-panel { top: 66px; }
  .hero::before { display: none; }
  .hero-grid { min-height: 0; margin-top: 0; border: 0; grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; min-height: 610px; padding: 40px 24px 24px; border: 0; }
  .eyebrow { margin-bottom: 62px; }
  .hero h1 { font-size: clamp(67px, 20vw, 104px); }
  .hero-intro { margin-top: 34px; }
  .hero-stats { margin: auto -24px -24px; }
  .hero-visual { grid-column: 1; min-height: 590px; }
  .hero-note { top: 36px; left: 20px; }
  .scroll-cue { display: none; }
  .categories { padding: 90px 24px 100px; }
  .section-heading, .guide-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > div { grid-template-columns: 1fr; gap: 22px; }
  .section h2 { font-size: clamp(48px, 13vw, 72px); }
  .product-grid { grid-template-columns: 1fr; }
  .product-figure { min-height: 320px; }
  .collection { grid-template-columns: 1fr; min-height: 0; }
  .collection-media { min-height: 610px; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .collection-copy { min-height: 780px; padding: 42px 24px 28px; }
  .collection-kicker { margin-top: 70px; }
  .kit-list div { align-items: baseline; flex-direction: row; gap: 12px; }
  .collection-purchase { margin-top: 64px; }
  .guide { padding: 90px 24px 0; }
  .guide-grid { grid-template-columns: 1fr; margin: 60px -24px 0; }
  .guide-grid li { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-icon { margin: 30px 0 28px auto; }
  .guide-note { grid-template-columns: 1fr; gap: 18px; margin: 0 -24px; padding: 32px 24px; }
  .text-link.light { justify-self: start; }
  .dispatch { grid-template-columns: 1fr; }
  .dispatch-art { min-height: 390px; padding: 24px; border-right: 0; border-bottom: 1px solid var(--white-line); }
  .dispatch-copy { min-height: 520px; padding: 62px 24px; }
  .dispatch .section-number { margin-bottom: 64px; }
}

@media (max-width: 480px) {
  .brand-copy strong { font-size: 15px; letter-spacing: .12em; }
  .header-actions { gap: 6px; }
  .cart-button, .menu-button { min-height: 42px; }
  .hero-copy { min-height: 580px; }
  .eyebrow { margin-bottom: 54px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-stats div { padding: 16px 10px; }
  .hero-stats dt { font-size: 20px; }
  .hero-visual { min-height: 520px; }
  .hero-visual img { object-position: 61% center; }
  .hero-visual figcaption span:last-child { display: none; }
  .product-figure { min-height: 280px; }
  .product-content { padding: 24px 20px 20px; }
  .product-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .kit-list div { align-items: flex-start; flex-direction: column; }
  .collection-media { min-height: 500px; }
  .collection-copy { min-height: 860px; }
  .collection-purchase strong { font-size: 30px; }
  .drawer-header, .drawer-body { padding: 22px; }
  .drawer-total { padding: 20px 22px 24px; }
  .toast { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
}

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