:root {
  --ink: #171714;
  --paper: #f2efe8;
  --paper-2: #e7e0d4;
  --orange: #f15b36;
  --blue: #2055d6;
  --yellow: #f2ca4d;
  --green: #6e8b59;
  --lilac: #b59ccf;
  --red: #d73c34;
  --line: rgba(23, 23, 20, .22);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: white; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.shop, .studio-story, .living-scene, .values, .material-ledger, .journal, .newsletter, footer { content-visibility: auto; contain-intrinsic-size: 900px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%); background: var(--ink); color: white; padding: 10px 16px; }
.skip-link:focus { transform: none; }
.progress { position: fixed; z-index: 999; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--blue); }
.announcement { height: 32px; overflow: hidden; background: var(--ink); color: white; font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
/* No gap on the track — spacing lives on the row. See PATTERNS.md. */
.ticker { display: flex; align-items: center; width: max-content; min-height: 32px; animation: ticker 24s linear infinite; }
.ticker-row { display: flex; align-items: center; flex-shrink: 0; }
.ticker span { padding: 0 34px; }
.ticker i { color: var(--orange); font-size: 6px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 80; height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 3vw; border-bottom: 1px solid var(--line); background: rgba(242,239,232,.88); backdrop-filter: blur(14px); transition: transform .4s var(--ease); }
.site-header.hidden { transform: translateY(-100%); }
.logo { font-size: 25px; font-weight: 700; letter-spacing: -.08em; width: max-content; }
.logo span { margin-left: 4px; font: 8px var(--mono); vertical-align: top; letter-spacing: 0; }
.desktop-nav, .header-actions { display: flex; align-items: center; gap: 28px; }
.desktop-nav a, .text-button, .cart-button, .menu-button { position: relative; border: 0; padding: 6px 0; background: none; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .06em; cursor: pointer; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: currentColor; transition: transform .35s var(--ease); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-content: flex-end; }
.cart-button { display: flex; gap: 8px; align-items: center; }
.cart-count { display: inline-grid; place-items: center; min-width: 21px; height: 21px; border-radius: 50%; background: var(--ink); color: white; font: 10px var(--mono); }
.menu-button { display: none; }
.mobile-menu { position: fixed; z-index: 75; top: 107px; inset-inline: 0; padding: 30px 4vw; display: grid; gap: 15px; transform: translateY(-140%); background: var(--paper); border-bottom: 1px solid var(--line); transition: transform .45s var(--ease); }
.mobile-menu.open { transform: none; }
.mobile-menu a { font-size: 30px; font-weight: 600; }

.hero { min-height: calc(100svh - 108px); display: grid; grid-template-columns: 56% 44%; border-bottom: 1px solid var(--line); }
/* Container context for the headline. The h1 sits in a 56% column but was
   sized in vw, so it could not know how much room it actually had: at ~1280
   the offset line overran by 5px and wrapped, turning a designed three-line
   title into a ragged four. Sizing the type and the offset from the column
   keeps the ratio fixed, so the three lines hold at every width. */
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw 3vw 4vw; overflow: hidden; container-type: inline-size; }
.kicker { margin: 0 0 18px; font: 10px var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(2.6rem, 12cqw, 6.6rem); line-height: .82; letter-spacing: -.08em; font-weight: 600; }
.title-line { display: block; overflow: hidden; padding: 0 .08em .1em 0; }
.title-line span { display: block; transform: translateY(110%) rotate(3deg); animation: title-in 1s var(--ease) forwards; }
.title-line:nth-child(2) span { animation-delay: .1s; }
.title-line:nth-child(3) span { animation-delay: .2s; }
.title-line.offset { padding-left: 16cqw; }
@keyframes title-in { to { transform: none; } }
.hero-bottom { margin-top: 48px; padding-left: 16cqw; display: flex; gap: 35px; align-items: center; }
.hero-bottom > p { max-width: 350px; margin: 0; line-height: 1.65; font-size: 14px; }
.round-link { width: 122px; height: 122px; flex: 0 0 auto; border-radius: 50%; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; background: var(--blue); color: white; transition: transform .4s var(--ease), background .3s; }
.round-link:hover { background: var(--orange); }
.round-link span { font: 10px var(--mono); text-transform: uppercase; }
.round-link b { align-self: flex-end; font-size: 25px; font-weight: 400; }

.hero-stage { position: relative; overflow: hidden; min-height: 620px; background: #c8a988; }
.hero-stage::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 24%, transparent 72%, rgba(0,0,0,.28)); pointer-events: none; }
.hero-photo { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transform: scale(1.015); transition: transform .8s var(--ease); }
.orbit { position: absolute; border: 1px solid rgba(23,23,20,.25); border-radius: 50%; }
.orbit-one { width: 74%; aspect-ratio: 1; left: 13%; top: 17%; animation: orbit 18s linear infinite; }
.orbit-two { width: 95%; aspect-ratio: 1; left: 2%; top: 6%; animation: orbit 28s linear infinite reverse; border-style: dashed; }
.orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); top: 12%; left: 12%; }
@keyframes orbit { to { transform: rotate(360deg); } }
.stage-label, .feature-caption { position: absolute; z-index: 2; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.hero-stage .stage-label, .photo-index { color: white; text-shadow: 0 1px 12px rgba(0,0,0,.2); }
.label-a { top: 30px; left: 30px; }
.label-b { top: 30px; right: 30px; }
.photo-index { position: absolute; z-index: 2; left: 30px; bottom: 28px; font: 9px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.origin-note { padding: 70px 3vw; display: grid; grid-template-columns: 1.5fr 1fr; gap: 8vw; align-items: end; border-bottom: 1px solid var(--line); }
.origin-note > p { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4.8rem); line-height: .98; letter-spacing: -.035em; }
.origin-note > div { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 18px; padding-top: 15px; border-top: 1px solid var(--ink); font: 9px var(--mono); text-transform: uppercase; line-height: 1.5; }
.spin-hint { position: absolute; z-index: 4; bottom: 26px; left: 50%; transform: translateX(-50%); border: 1px solid rgba(23,23,20,.45); border-radius: 999px; padding: 10px 18px; background: rgba(242,239,232,.18); font: 9px var(--mono); text-transform: uppercase; cursor: grab; }
.spin-hint:active { cursor: grabbing; }

.lamp { position: absolute; z-index: 3; left: 50%; top: 50%; width: 310px; height: 480px; transform-style: preserve-3d; transform: translate(-50%, -47%) rotateY(var(--rotate, -12deg)) rotateX(2deg); transition: transform .35s var(--ease); filter: drop-shadow(20px 28px 20px rgba(50,20,7,.23)); }
.lamp-shade { position: absolute; left: 50%; top: 35px; width: 290px; height: 140px; transform: translateX(-50%) perspective(300px) rotateX(-8deg); border-radius: 50% 50% 23% 23% / 50% 50% 16% 16%; background: var(--lamp, #f7a84f); box-shadow: inset 0 12px 15px rgba(255,255,255,.25), inset 0 -12px 15px rgba(55,20,5,.15); }
.lamp-shade::after { content: ""; position: absolute; left: 9%; right: 9%; bottom: -12px; height: 33px; border-radius: 50%; background: #ffe7a8; box-shadow: 0 8px 35px 8px rgba(255,225,150,.65); }
.lamp-shade span { position: absolute; width: 56px; height: 38px; left: calc(50% - 28px); top: 50px; border-radius: 50%; background: #c64c2c; }
.lamp-neck { position: absolute; left: calc(50% - 13px); top: 145px; width: 26px; height: 235px; background: linear-gradient(90deg, #bd3e28, var(--lamp, #f15b36) 45%, #ff8665); transform: translateZ(-20px); }
.lamp-base { position: absolute; left: 50%; bottom: 28px; width: 190px; height: 60px; transform: translateX(-50%); border-radius: 50%; background: var(--lamp, #f15b36); box-shadow: inset 0 9px 12px rgba(255,255,255,.18); }
.lamp-base::after { content: ""; position: absolute; inset: 6px 15px; border-radius: 50%; border: 1px solid rgba(23,23,20,.2); }
.lamp-glow { position: absolute; left: 50%; top: 60px; width: 250px; height: 250px; transform: translateX(-50%); border-radius: 50%; background: rgba(255,225,142,.34); filter: blur(30px); animation: breathe 3.5s ease-in-out infinite; }
@keyframes breathe { 50% { transform: translateX(-50%) scale(1.12); opacity: .75; } }

.intro-strip { overflow: hidden; padding: 22px 0 18px; border-bottom: 1px solid var(--line); }
.word-loop { display: flex; gap: 30px; align-items: center; width: max-content; animation: word-loop 19s linear infinite; font-size: clamp(2.4rem, 6vw, 6.4rem); line-height: 1; font-weight: 600; letter-spacing: -.06em; white-space: nowrap; }
.word-loop i { font-style: normal; color: var(--orange); }
@keyframes word-loop { to { transform: translateX(-50%); } }

.section { padding: 120px 3vw; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 65px; }
.section-head h2 { margin: 0; font-size: clamp(3rem, 6.8vw, 7rem); line-height: .9; letter-spacing: -.075em; font-weight: 600; }
.section-note { max-width: 330px; margin: 0; font-size: 14px; line-height: 1.65; }
.filters { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.filter { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; padding: 11px 15px; background: transparent; font: 10px var(--mono); text-transform: uppercase; cursor: pointer; transition: .3s; }
.filter span { opacity: .5; margin-left: 7px; }
.filter.active, .filter:hover { background: var(--ink); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3vw 1.4vw; }
.product-card { grid-column: span 4; transition: opacity .4s, transform .5s var(--ease); }
.product-card:nth-child(1), .product-card:nth-child(4) { grid-column: span 7; }
.product-card:nth-child(2), .product-card:nth-child(5) { grid-column: span 5; }
.product-card.filtered-out { display: none; }
.product-visual { position: relative; display: block; width: 100%; aspect-ratio: 4/5; border: 0; overflow: hidden; cursor: pointer; }
.product-card:nth-child(1) .product-visual, .product-card:nth-child(4) .product-visual { aspect-ratio: 1.25; }
.visual-orange { background: #ed7657; }.visual-blue { background: #6c8ee2; }.visual-yellow { background: #ecd47b; }.visual-green { background: #94a885; }.visual-lilac { background: #c6b2db; }.visual-red { background: #df716b; }
.product-visual::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 25%, transparent 75%, rgba(0,0,0,.08)); pointer-events: none; }
.product-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.product-visual:hover .product-photo { transform: scale(1.035); filter: saturate(1.04); }
.badge { position: absolute; z-index: 3; top: 17px; left: 17px; padding: 8px 12px; border-radius: 999px; background: var(--paper); font: 9px var(--mono); text-transform: uppercase; }
.badge.new { background: var(--blue); color: white; }
.quick-label { position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translate(-50%, 20px); opacity: 0; padding: 11px 17px; border-radius: 999px; background: var(--ink); color: white; font: 9px var(--mono); text-transform: uppercase; transition: .35s var(--ease); }
.product-visual:hover .quick-label { transform: translateX(-50%); opacity: 1; }
.product-art { position: absolute; left: 50%; top: 50%; width: 58%; height: 58%; transform: translate(-50%,-50%); transition: transform .75s var(--ease); filter: drop-shadow(15px 22px 15px rgba(30,20,10,.2)); }
.product-visual:hover .product-art { transform: translate(-50%,-53%) rotate(-3deg) scale(1.05); }
.product-art i, .product-art b { position: absolute; display: block; }
.art-halo .shade { left: 5%; top: 4%; width: 90%; height: 34%; border-radius: 50% 50% 24% 24%; background: #ef582f; box-shadow: inset 0 -12px rgba(141,44,24,.17); }
.art-halo .stem { left: 47%; top: 29%; width: 7%; height: 51%; background: #ce4226; }
.art-halo .base { left: 20%; bottom: 6%; width: 60%; height: 18%; border-radius: 50%; background: #ef582f; }
.art-tray { transform: translate(-50%,-50%) rotate(-18deg); }
.art-tray i:first-child { inset: 12% 5%; transform: skewY(8deg); background: #1647bc; box-shadow: 15px 18px 0 #0d327f; }
.art-tray i:nth-child(2) { left: 16%; top: 21%; width: 22%; height: 55%; border-radius: 999px; background: #3567e0; }
.art-tray i:nth-child(3) { right: 15%; top: 20%; width: 34%; height: 34%; border: 10px solid #ebcf55; border-radius: 50%; }
.art-pebble i { inset: 5%; border-radius: 48% 52% 45% 55% / 55% 40% 60% 45%; background: #f7dc67; box-shadow: inset -25px -18px rgba(153,116,12,.15); }
.art-pebble b { left: 30%; top: 27%; width: 40%; height: 40%; border-radius: 50%; background: #fff4bd; box-shadow: 0 0 32px #fff4bd; }
.art-vase i { left: 20%; top: 5%; width: 60%; height: 90%; border-radius: 45% 45% 30% 30%; border: 38px solid #536f44; background: transparent; box-shadow: inset 12px 0 rgba(255,255,255,.12); }
.art-arc i:first-child { inset: 10%; border: 45px solid #9d80bd; border-bottom-color: transparent; border-radius: 50%; transform: rotate(-20deg); }
.art-arc i:last-child { width: 58%; height: 15%; right: 0; bottom: 13%; background: #765995; transform: rotate(18deg); }
.art-dot i { left: 12%; top: 10%; width: 76%; aspect-ratio: 1; border-radius: 50%; background: #d83932; box-shadow: inset -18px -20px rgba(88,15,14,.14); }
.art-dot b { left: 34%; bottom: 3%; width: 32%; height: 43%; border-radius: 8px 8px 22px 22px; background: #ba2825; }
.product-info { display: flex; justify-content: space-between; gap: 20px; padding-top: 16px; }
.product-info h3, .product-info p { margin: 0; }
.product-info h3 { font-size: 15px; }
.product-info p { margin-top: 5px; color: rgba(23,23,20,.62); font: 10px var(--mono); }
.product-info strong { font: 12px var(--mono); }

.add-button { width: max-content; border: 0; padding: 16px 21px; background: var(--paper); color: var(--ink); font: 10px var(--mono); text-transform: uppercase; cursor: pointer; transition: background .3s, color .3s; }
.add-button:hover { background: var(--orange); color: white; }
.studio-story { min-height: 100svh; display: grid; grid-template-columns: 53% 47%; background: #292520; color: var(--paper); }
.studio-photo { position: relative; min-height: 800px; margin: 0; overflow: hidden; }
.studio-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.42)); }
.studio-photo img { width: 100%; height: 100%; object-fit: cover; }
.studio-photo figcaption { position: absolute; z-index: 2; inset: auto 28px 24px; display: flex; justify-content: space-between; gap: 20px; color: white; font: 9px var(--mono); text-transform: uppercase; }
.studio-copy { padding: 8vw 5vw; display: flex; flex-direction: column; justify-content: center; }
.studio-copy blockquote { margin: 0 0 36px; font-family: var(--serif); font-size: clamp(2.7rem, 4.5vw, 5.8rem); font-weight: 400; line-height: .93; letter-spacing: -.035em; }
.studio-body { max-width: 570px; margin: 0; color: rgba(242,239,232,.68); font-size: 14px; line-height: 1.8; }
.signature { margin: 30px 0 42px; font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1; }
.signature span { font: 8px var(--mono); font-style: normal; text-transform: uppercase; letter-spacing: .08em; color: rgba(242,239,232,.55); }
.object-specs { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 36px; border-top: 1px solid rgba(255,255,255,.22); }
.object-specs div { padding: 15px 10px 15px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.object-specs dt { margin-bottom: 6px; font: 8px var(--mono); text-transform: uppercase; color: rgba(242,239,232,.48); }
.object-specs dd { margin: 0; font-size: 11px; }
.studio-copy .add-button { background: var(--orange); color: white; }
.studio-copy .add-button:hover { background: var(--paper); color: var(--ink); }
.living-scene { position: relative; height: 100svh; min-height: 720px; overflow: hidden; color: white; }
.living-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,12,10,.75), rgba(14,12,10,.08) 62%), linear-gradient(0deg, rgba(0,0,0,.25), transparent 35%); }
.living-scene > img { width: 100%; height: 100%; object-fit: cover; object-position: center 57%; transform: scale(1.01); }
.living-copy { position: absolute; z-index: 2; top: 50%; left: 3vw; transform: translateY(-50%); max-width: 620px; }
.living-copy h2 { margin: 0 0 28px; font-family: var(--serif); font-weight: 400; font-size: clamp(4rem, 7.6vw, 9rem); line-height: .8; letter-spacing: -.05em; }
.living-copy > p:not(.kicker) { max-width: 390px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.76); }
.living-copy a { display: inline-block; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid; font: 10px var(--mono); text-transform: uppercase; }
.scene-caption { position: absolute; z-index: 2; right: 28px; bottom: 22px; margin: 0; font: 9px var(--mono); text-transform: uppercase; }

.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 4vw; border-bottom: 1px solid var(--line); }
.value { border-top: 1px solid var(--ink); padding-top: 18px; }
.value span { font: 10px var(--mono); }
.value h3 { margin: 55px 0 14px; font-size: 30px; letter-spacing: -.04em; }
.value p { margin: 0; max-width: 330px; font-size: 13px; line-height: 1.7; }
.material-ledger { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: var(--paper-2); }
.ledger-intro h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4rem, 7vw, 8rem); font-weight: 400; line-height: .76; letter-spacing: -.05em; }
.ledger-intro > p:last-child { max-width: 330px; font-size: 12px; line-height: 1.7; }
.ledger-table { border-top: 1px solid var(--ink); }
.ledger-table > div { display: grid; grid-template-columns: 150px 1fr; align-items: baseline; gap: 25px; padding: 25px 0; border-bottom: 1px solid var(--ink); }
.ledger-table span { font-family: var(--serif); font-size: 54px; line-height: .7; }
.ledger-table p { margin: 0; font-size: 13px; }
.ledger-table small { color: rgba(23,23,20,.55); font: 9px var(--mono); text-transform: uppercase; }
.journal .section-head a { font: 10px var(--mono); text-transform: uppercase; border-bottom: 1px solid; padding-bottom: 5px; }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5vw; }
.story-card { position: relative; min-height: 550px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(0,0,0,.72)); }
.story-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.story-card:hover > img { transform: scale(1.045); }
.story-card > div { position: relative; z-index: 2; }
.story-card p { font: 10px var(--mono); text-transform: uppercase; }
.story-card h3 { max-width: 500px; margin: 12px 0 0; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1; letter-spacing: -.055em; }
.story-shape { display: block; align-self: center; width: 260px; height: 260px; transition: transform .8s var(--ease); }
.story-card:hover .story-shape { transform: rotate(18deg) scale(1.08); }
.shape-one { border-radius: 50% 50% 8% 50%; background: var(--orange); box-shadow: inset -30px -20px rgba(80,20,5,.12); }
.shape-two { border: 55px solid var(--blue); border-radius: 50%; border-bottom-color: transparent; transform: rotate(-30deg); }
.story-card:hover .shape-two { transform: rotate(12deg) scale(1.08); }

.newsletter { position: relative; overflow: hidden; min-height: 70svh; padding: 9vw 3vw 5vw; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; background: var(--orange); }
.newsletter-copy h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(4.5rem, 11vw, 12rem); line-height: .75; letter-spacing: -.09em; }
.newsletter-form { position: relative; z-index: 2; align-self: center; }
.newsletter-form label { display: block; margin-bottom: 18px; font: 10px var(--mono); text-transform: uppercase; }
.newsletter-form > div { display: flex; border-bottom: 1px solid var(--ink); }
.newsletter-form input { width: 100%; border: 0; outline: 0; padding: 14px 0; background: transparent; font-size: 19px; }
.newsletter-form button { border: 0; background: none; cursor: pointer; font: 10px var(--mono); text-transform: uppercase; }
.newsletter-form p { font-size: 11px; }
.newsletter-orb { position: absolute; width: 420px; aspect-ratio: 1; border-radius: 50%; top: -180px; right: 12%; background: var(--yellow); filter: blur(1px); animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(45px) scale(.95); } }

footer { padding: 5vw 3vw 30px; background: var(--ink); color: var(--paper); }
.footer-logo { display: block; font-size: min(23vw, 330px); line-height: .8; letter-spacing: -.09em; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 4vw; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 40px; padding: 45px 0; font-size: 12px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid p { margin: 0; color: rgba(242,239,232,.65); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); font: 9px var(--mono); text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.overlay { position: fixed; z-index: 200; inset: 0; background: rgba(23,23,20,.45); backdrop-filter: blur(4px); opacity: 0; transition: opacity .35s; }
.overlay.show { opacity: 1; }
.drawer { position: fixed; z-index: 210; top: 0; right: 0; width: min(490px,100%); height: 100dvh; padding: 25px; background: var(--paper); transform: translateX(105%); transition: transform .55s var(--ease); display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-head h2, .drawer-head p { margin: 0; font-size: 20px; }
.drawer-head button, .search-panel > button { border: 0; padding: 8px 0; background: none; font: 10px var(--mono); text-transform: uppercase; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; }
.empty-cart { height: 100%; display: grid; place-content: center; text-align: center; }
.empty-cart span { font-size: 120px; line-height: 1; letter-spacing: -.1em; color: var(--paper-2); }
.empty-cart a { justify-self: center; border-bottom: 1px solid; font: 10px var(--mono); text-transform: uppercase; }
.cart-line { display: grid; grid-template-columns: 76px 1fr auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 76px; aspect-ratio: 1; display: grid; place-items: center; background: var(--paper-2); font-size: 30px; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line h3, .cart-line p { margin: 0; }.cart-line h3 { font-size: 14px; }.cart-line p { margin-top: 5px; font: 9px var(--mono); opacity: .6; }
.cart-line button { border: 0; background: none; font: 9px var(--mono); text-transform: uppercase; cursor: pointer; }
.cart-total { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total > div { display: flex; justify-content: space-between; margin-bottom: 18px; }.cart-total button { width: 100%; border: 0; padding: 17px; background: var(--ink); color: white; cursor: pointer; }.cart-total p { text-align: center; font-size: 9px; }
.quick-art { height: 46%; margin: 20px 0 30px; background: var(--paper-2); overflow: hidden; }
.quick-art img { width: 100%; height: 100%; object-fit: cover; }
.quick-content h2 { margin: 0 0 15px; font-size: 48px; letter-spacing: -.06em; }.quick-content > p:not(.kicker) { font-size: 13px; line-height: 1.7; }.quick-buy { margin-top: 35px; display: flex; justify-content: space-between; align-items: center; }.quick-buy strong { font: 17px var(--mono); }
.search-panel { position: fixed; z-index: 220; inset: 0; padding: 5vw; background: var(--yellow); transform: translateY(-105%); transition: transform .55s var(--ease); }.search-panel.open { transform: none; }.search-panel > button { position: absolute; top: 30px; right: 4vw; }.search-panel label { display: block; margin-top: 15vh; font: 12px var(--mono); text-transform: uppercase; }.search-panel input { display: block; width: 100%; border: 0; border-bottom: 2px solid var(--ink); outline: 0; padding: 18px 0; background: transparent; font-size: clamp(3rem,8vw,9rem); letter-spacing: -.07em; }.search-panel p { font: 10px var(--mono); text-transform: uppercase; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 25px; transform: translate(-50%, 150%); padding: 13px 19px; border-radius: 999px; background: var(--blue); color: white; font: 10px var(--mono); text-transform: uppercase; transition: transform .45s var(--ease); }.toast.show { transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }.hero-stage { min-height: 600px; }.hero-copy { min-height: 74svh; }
  .origin-note { grid-template-columns: 1fr; }.origin-note > div { max-width: 650px; }
  .product-card, .product-card:nth-child(n) { grid-column: span 6; }.product-card:nth-child(n) .product-visual { aspect-ratio: 4/5; }
  .studio-story { grid-template-columns: 1fr; }.studio-photo { min-height: 75svh; }.studio-copy { padding: 100px 5vw; }
  .material-ledger { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; gap: 80px; }.footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }
}
@media (max-width: 700px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 18px; }.desktop-nav, .text-button { display: none; }.menu-button { display: block; }.header-actions { gap: 15px; }
  .hero-copy { padding: 70px 18px 45px; min-height: 68svh; }.title-line.offset { padding-left: 8cqw; }.hero-bottom { padding-left: 0; flex-direction: column; align-items: flex-start; }.round-link { align-self: flex-end; width: 108px; height: 108px; }
  .hero-stage { min-height: 530px; }.lamp { width: 260px; height: 420px; }.lamp-shade { width: 245px; }.lamp-neck { height: 195px; }.lamp-base { bottom: 34px; }.label-b { display: none; }
  .origin-note { padding: 65px 18px; }.origin-note > div { grid-template-columns: 1fr; }.origin-note > p { font-size: 2.4rem; }
  .section { padding: 88px 18px; }.section-head { align-items: flex-start; flex-direction: column; }.section-note { max-width: 100%; }.filters { margin-right: -18px; }
  .product-grid { gap: 40px 10px; }.product-card, .product-card:nth-child(n) { grid-column: span 6; }.product-info { flex-direction: column; gap: 8px; }.quick-label { display: none; }.product-art { width: 75%; }
  .studio-photo { min-height: 68svh; }.studio-copy { padding: 85px 18px; }.studio-copy blockquote { font-size: 3rem; }.object-specs { grid-template-columns: 1fr; }
  .living-scene { min-height: 680px; }.living-scene::after { background: linear-gradient(180deg, rgba(14,12,10,.08), rgba(14,12,10,.78)); }.living-copy { top: auto; left: 18px; right: 18px; bottom: 65px; transform: none; }.living-copy h2 { font-size: 4.3rem; }.scene-caption { display: none; }
  .values { grid-template-columns: 1fr; gap: 55px; }.value h3 { margin-top: 30px; }.journal-grid { grid-template-columns: 1fr; }.story-card { min-height: 450px; padding: 20px; }.story-shape { width: 190px; height: 190px; }
  .material-ledger { gap: 50px; }.ledger-table > div { grid-template-columns: 90px 1fr; }.ledger-table span { font-size: 42px; }
  .newsletter { padding: 90px 18px 70px; min-height: 75svh; }.newsletter-copy h2 { font-size: 19vw; }.newsletter-orb { width: 260px; right: -60px; top: -100px; }
  footer { padding: 60px 18px 25px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1/-1; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { flex-direction: column; }
}
@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; }
}
