/* KWEE — Editorial Luxe (mobile + desktop, brutalist splash intro) */

:root {
  --accent: #b8915a;
  --accent-soft: #e0b977;
  --bg: #f4ede0;
  --bg-2: #ede4d2;
  --paper: #faf6ec;
  --ink: #1a140d;
  --ink-2: #4a3f30;
  --ink-3: #8a7d68;
  --line: rgba(26, 20, 13, 0.12);
  --line-2: rgba(26, 20, 13, 0.06);
  --motion: 1;
  --serif: 'Fraunces', 'Noto Serif Myanmar', Georgia, serif;
  --sans: 'Geist', 'Noto Sans Myanmar', -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

[data-theme='dark'] {
  --bg: #14110b;
  --bg-2: #1c1813;
  --paper: #1f1b14;
  --ink: #f4ede0;
  --ink-2: #c4b89d;
  --ink-3: #7a6f5a;
  --line: rgba(244, 237, 224, 0.12);
  --line-2: rgba(244, 237, 224, 0.06);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-feature-settings: 'ss01' 1, 'cv01' 1;
}
button, a {
  font: inherit; color: inherit; background: none; border: 0;
  cursor: pointer; padding: 0; text-decoration: none;
}
img { display: block; }

/* ─── Type ───────────────────────────────────────────────────── */
.serif { font-family: var(--serif); font-feature-settings: 'ss01', 'lnum'; }
.mono { font-family: var(--mono); letter-spacing: 0.04em; }
.eyebrow {
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ─── Splash (brutalist curtain) ─────────────────────────────── */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: #0f0d0a;
  color: #ebe4d6;
  transition: clip-path 1s cubic-bezier(0.86, 0, 0.07, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.splash.gone {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  pointer-events: none;
}
.splash .marker {
  position: absolute;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; color: rgba(235, 228, 214, 0.45);
  text-transform: uppercase;
  opacity: 0; animation: splash-fade 1s 0.5s forwards;
}
.splash .marker.tl { top: 24px; left: 24px; }
.splash .marker.tr { top: 24px; right: 24px; color: var(--accent-soft); }
.splash .marker.bl { bottom: 24px; left: 24px; }
.splash .marker.br { bottom: 24px; right: 24px; }
.splash-logo {
  font-family: 'Anton', var(--sans);
  font-size: clamp(140px, 30vw, 340px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #ebe4d6;
  display: flex; overflow: hidden;
}
.splash-logo span {
  display: inline-block;
  transform: translateY(120%);
  animation: splash-rise 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.splash-logo span:nth-child(1) { animation-delay: 0.15s; }
.splash-logo span:nth-child(2) { animation-delay: 0.25s; color: var(--accent-soft); }
.splash-logo span:nth-child(3) { animation-delay: 0.35s; }
.splash-logo span:nth-child(4) { animation-delay: 0.45s; }
.splash-bar {
  position: absolute; bottom: 56px; left: 24px; right: 24px;
  height: 4px; background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.splash-bar::after {
  content: ''; display: block; height: 100%; width: 100%;
  background: var(--accent-soft);
  transform: translateX(-100%);
  animation: fill 1.4s 0.3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes splash-rise { to { transform: translateY(0); } }
@keyframes splash-fade { to { opacity: 1; } }
@keyframes fill { to { transform: translateX(0); } }

/* ─── Shared marquee animation ───────────────────────────────── */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes word-rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(calc(10px * var(--motion, 1))); }
  to { opacity: 1; transform: translateY(0); }
}
.page { animation: page-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ════════════════════════════════════════════════════════════════
   MOBILE VIEW (≤ 899px)
   ════════════════════════════════════════════════════════════════ */
.mobile-view {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
.mobile-view .scroller {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-view .topbar {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: transparent;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
}
.mobile-view .topbar.scrolled {
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--line);
  padding: 10px 20px;
}
.mobile-view .logo {
  display: inline-flex; align-items: center;
  height: 32px;
  position: relative;
}
.mobile-view .logo-img {
  height: 22px; width: auto; display: block;
  transition: height 0.3s ease;
}
.mobile-view .topbar.scrolled .logo-img { height: 18px; }
[data-theme='dark'] .mobile-view .logo-img { filter: invert(1) brightness(1.05); }
.mobile-view .logo::after {
  content: ''; position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-view .topbar.scrolled .logo::after { width: 100%; }
.mobile-view .topbar .right { display: flex; gap: 8px; align-items: center; }
.mobile-view .icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-view .icon-btn:hover { background: var(--line); }
.mobile-view .icon-btn:active { transform: scale(0.9); }

.mobile-view .ticker {
  height: 28px;
  display: flex; align-items: center;
  overflow: hidden;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.mobile-view .ticker-track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: ticker-scroll calc(45s / var(--motion, 1)) linear infinite;
}
.mobile-view .ticker-track > span { display: inline-flex; align-items: center; gap: 36px; }
.mobile-view .ticker-track .dot { color: var(--accent); }

.mobile-view .cover {
  position: relative;
  margin: 12px 16px 32px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  background: var(--bg-2);
  box-shadow: 0 30px 50px -25px rgba(0, 0, 0, 0.35),
              0 10px 20px -15px rgba(0, 0, 0, 0.25);
}
.mobile-view .cover-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-view .cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 15, 8, 0.05) 0%,
    rgba(20, 15, 8, 0) 30%,
    rgba(20, 15, 8, 0.55) 65%,
    rgba(20, 15, 8, 0.92) 100%);
}
.mobile-view .cover-grain {
  position: absolute; inset: 0; opacity: 0.18; pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.mobile-view .cover-mast {
  position: absolute; top: 18px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  opacity: 0.85;
}
.mobile-view .cover-mast .l { display: flex; gap: 12px; }
.mobile-view .cover-tags {
  position: absolute; top: 50px; left: 18px; right: 18px;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(246, 239, 224, 0.7);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.mobile-view .bookmark-x {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  color: #fff;
}
.mobile-view .cover-title {
  position: absolute; left: 22px; right: 22px; bottom: 26px;
  color: #f6efe0;
}
.mobile-view .cover-title .eb {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mobile-view .cover-title .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 30;
  font-size: 34px; line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.mobile-view .cover-title .ti .word {
  display: inline-block;
  transform: translateY(110%);
  animation: word-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mobile-view .cover-title .sub {
  font-family: var(--sans);
  font-size: 13px; line-height: 1.5;
  color: rgba(246, 239, 224, 0.78);
  max-width: 280px;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.8s 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobile-view .cats {
  display: flex; gap: 6px; overflow-x: auto;
  padding: 6px 16px 18px;
  scrollbar-width: none;
}
.mobile-view .cats::-webkit-scrollbar { display: none; }
.mobile-view .cat-chip {
  flex: 0 0 auto;
  height: 36px; padding: 0 16px;
  border-radius: 100px;
  border: 0.5px solid var(--line);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--ink-2);
  background: var(--paper);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.mobile-view .cat-chip.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.mobile-view .cat-chip .dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

.mobile-view .sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 28px 20px 14px;
}
.mobile-view .sec-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.mobile-view .sec-title em {
  color: var(--accent); font-weight: 300; font-style: italic;
}
.mobile-view .sec-more {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.mobile-view .sec-more:hover { color: var(--accent); }
.mobile-view .sec-more .arrow { transition: transform 0.3s; }
.mobile-view .sec-more:hover .arrow { transform: translateX(4px); }

.mobile-view .editor-pick {
  margin: 0 16px 20px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.mobile-view .editor-pick > div { padding: 18px 14px; }
.mobile-view .editor-pick .text { border-right: 0.5px solid var(--line); }
.mobile-view .editor-pick .text .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.mobile-view .editor-pick .text h3 {
  font-family: var(--serif); font-variation-settings: 'opsz' 96, 'SOFT' 20;
  font-size: 22px; line-height: 1.1; margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.mobile-view .editor-pick .text p {
  font-size: 12px; line-height: 1.5; color: var(--ink-2); margin: 0 0 14px;
}
.mobile-view .editor-pick .img {
  background-size: cover; background-position: center;
  min-height: 180px;
  position: relative;
}
.mobile-view .editor-pick .meta {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
  display: flex; gap: 10px;
}

.mobile-view .h-scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.mobile-view .h-scroll::-webkit-scrollbar { display: none; }
.mobile-view .feat-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--line);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}
.mobile-view .feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(26, 20, 13, 0.2);
}
.mobile-view .feat-card .img {
  height: 210px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.mobile-view .feat-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3));
}
.mobile-view .feat-card .body { padding: 18px 16px 20px; }
.mobile-view .feat-card .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: block;
}
.mobile-view .feat-card .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 20;
  font-size: 19px; line-height: 1.15; margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.mobile-view .feat-card .ex {
  font-size: 12px; line-height: 1.5; color: var(--ink-2);
  margin: 0 0 14px;
}
.mobile-view .feat-card .meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}

.mobile-view .grid {
  padding: 0 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px;
}
.mobile-view .grid-card { display: block; }
.mobile-view .grid-card .img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-view .grid-card .img::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.mobile-view .grid-card.revealed .img::before { transform: scaleY(0); }
.mobile-view .grid-card .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 6px; display: block;
}
.mobile-view .grid-card .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 72;
  font-size: 15px; line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.mobile-view .partners-wrap {
  margin: 32px 0 0;
  padding: 28px 0;
  background: var(--paper);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  overflow: hidden;
}
.mobile-view .partners-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 20px 18px;
}
.mobile-view .partners-head .l {
  font-family: var(--serif); font-size: 24px;
}
.mobile-view .partners-head .l em {
  color: var(--accent); font-style: italic;
}
.mobile-view .partners-marquee {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: ticker-scroll calc(40s / var(--motion, 1)) linear infinite;
}
.mobile-view .partner-pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 18px;
  border: 0.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  background: var(--bg);
}
.mobile-view .partner-pill .tag {
  font-family: var(--mono); font-style: normal;
  font-size: 9px; letter-spacing: 0.18em;
  color: var(--accent); font-weight: 500;
}

.mobile-view .events { padding: 0 20px 24px; }
.mobile-view .event-row {
  display: grid; grid-template-columns: 50px 1fr auto;
  align-items: center; gap: 16px;
  padding: 18px 0;
  border-top: 0.5px solid var(--line);
  position: relative;
  overflow: hidden;
}
.mobile-view .event-row::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.mobile-view .event-row:hover::before { transform: scaleX(1); }
.mobile-view .event-row:hover > * {
  color: var(--bg) !important; z-index: 1; position: relative;
}
.mobile-view .event-row:last-child { border-bottom: 0.5px solid var(--line); }
.mobile-view .event-row .num {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; color: var(--ink-3);
}
.mobile-view .event-row .title {
  font-family: var(--serif); font-size: 17px; color: var(--ink); letter-spacing: -0.01em;
}
.mobile-view .event-row .venue {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase; margin-top: 4px;
}
.mobile-view .event-row .date {
  font-family: var(--mono); font-size: 10px; color: var(--accent);
  letter-spacing: 0.12em;
}

.mobile-view .shop {
  margin: 0 16px 28px;
  padding: 28px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
  color: #2a1d0a;
  position: relative;
  overflow: hidden;
}
.mobile-view .shop h3 {
  font-family: var(--serif); font-size: 28px; margin: 0 0 8px; letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.mobile-view .shop p {
  font-size: 13px; line-height: 1.5; margin: 0 0 18px; opacity: 0.8;
}
.mobile-view .shop .cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1a140d; color: var(--accent-soft);
  padding: 12px 20px; border-radius: 100px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
}

.mobile-view .nl {
  margin: 0 16px 32px;
  padding: 36px 22px;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 14px;
  text-align: center;
}
.mobile-view .nl .eb {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block;
}
.mobile-view .nl h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-size: 32px; line-height: 1.05;
  margin: 0 0 12px; letter-spacing: -0.025em;
}
.mobile-view .nl h3 em {
  font-style: italic; color: var(--accent); font-weight: 300;
}
.mobile-view .nl p {
  font-size: 13px; line-height: 1.5; color: var(--ink-2); margin: 0 0 22px;
}
.mobile-view .nl form { display: flex; gap: 8px; }
.mobile-view .nl input {
  flex: 1; height: 44px; padding: 0 16px;
  font-family: var(--sans); font-size: 14px;
  border: 0.5px solid var(--line);
  background: var(--bg); color: var(--ink);
  border-radius: 100px;
  outline: none;
}
.mobile-view .nl input:focus { border-color: var(--accent); }
.mobile-view .nl button {
  height: 44px; padding: 0 20px;
  background: var(--ink); color: var(--bg);
  border-radius: 100px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}
.mobile-view .nl button:hover { transform: scale(1.05); }

.mobile-view .foot {
  padding: 36px 22px 100px;
  background: var(--bg-2);
  border-top: 0.5px solid var(--line);
}
.mobile-view .foot .logo-l {
  font-family: var(--serif); font-size: 56px;
  font-variation-settings: 'opsz' 144; line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.mobile-view .foot .about {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  line-height: 1.5; color: var(--ink-2); margin-bottom: 24px;
}
.mobile-view .foot .cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px;
}
.mobile-view .foot .col h5 {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 12px; font-weight: 500;
}
.mobile-view .foot .col a {
  display: block; padding: 4px 0;
  font-size: 13px; color: var(--ink); text-decoration: none;
  transition: color 0.2s;
}
.mobile-view .foot .col a:hover { color: var(--accent); }
.mobile-view .foot .legal {
  border-top: 0.5px solid var(--line); padding-top: 18px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--ink-3); text-transform: uppercase;
  display: flex; justify-content: space-between;
}

.mobile-view .tabbar {
  position: fixed; left: 12px; right: 12px; bottom: 16px; z-index: 95;
  height: 60px;
  background: color-mix(in oklab, var(--paper) 90%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid var(--line);
  border-radius: 100px;
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 6px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.25);
}
.mobile-view .tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 14px;
  font-family: var(--mono); font-size: 8px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.2s;
  position: relative;
}
.mobile-view .tab.active { color: var(--accent); }
.mobile-view .tab.active::before {
  content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}

.mobile-view .drawer {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
}
.mobile-view .drawer.open { pointer-events: auto; }
.mobile-view .drawer-back {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s;
}
.mobile-view .drawer.open .drawer-back { background: rgba(0, 0, 0, 0.45); }
.mobile-view .drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform 0.6s cubic-bezier(0.86, 0, 0.07, 1);
  display: flex; flex-direction: column;
  padding: 60px 28px max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-view .drawer.open .drawer-panel { transform: translateX(0); }
.mobile-view .drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
}
.mobile-view .drawer .eb {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.mobile-view .drawer-nav {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.mobile-view .drawer-nav a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--line-2);
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s, color 0.2s;
}
.mobile-view .drawer.open .drawer-nav a {
  opacity: 1; transform: translateX(0);
  transition-delay: calc(0.1s + var(--i, 0) * 0.04s);
}
.mobile-view .drawer-nav a:hover { color: var(--accent); }
.mobile-view .drawer-nav a .num {
  font-family: var(--mono); font-size: 9px; font-style: normal;
  font-weight: normal;
  letter-spacing: 0.18em; color: var(--ink-3);
}
.mobile-view .drawer-foot {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  color: var(--ink-3); text-transform: uppercase;
  display: flex; flex-direction: column; gap: 6px; padding-top: 18px;
  border-top: 0.5px solid var(--line);
}

.mobile-view .article { padding: 0 0 100px; }
.mobile-view .article-hero {
  height: 60vh;
  min-height: 360px;
  position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 28px 22px;
}
.mobile-view .article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7));
}
.mobile-view .article-hero .meta { position: relative; color: #fff; }
.mobile-view .article-hero .eb {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 14px;
}
.mobile-view .article-hero h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: 32px; line-height: 1.15;
  margin: 0 0 14px; letter-spacing: -0.025em;
  text-wrap: balance;
}
.mobile-view .article-hero .byline {
  display: flex; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.7);
}
.mobile-view .article-body {
  padding: 28px 22px;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 18;
  font-size: 16px; line-height: 1.6;
  color: var(--ink);
}
.mobile-view .article-body p { margin: 0 0 18px; }
.mobile-view .article-body .dropcap::first-letter {
  font-size: 64px; line-height: 0.8; float: left;
  padding: 8px 10px 0 0; color: var(--accent);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
}
.mobile-view .article-tags {
  padding: 12px 22px; display: flex; gap: 8px; flex-wrap: wrap;
}
.mobile-view .tag-chip {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 12px;
  border-radius: 100px; border: 0.5px solid var(--line);
  color: var(--ink-2);
}

/* ════════════════════════════════════════════════════════════════
   DESKTOP VIEW (≥ 900px)
   ════════════════════════════════════════════════════════════════ */
.desktop-view {
  --gutter: 56px;
}

.desktop-view .cursor {
  position: fixed; top: 0; left: 0;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--ink);
  pointer-events: none; z-index: 1000;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.2s, border-color 0.2s, mix-blend-mode 0s;
  mix-blend-mode: difference;
  background: rgba(0, 0, 0, 0);
}
.desktop-view .cursor.dot {
  width: 6px; height: 6px;
  background: var(--ink);
}
.desktop-view .cursor.magnetic {
  width: 56px; height: 56px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
.desktop-view .cursor.read {
  width: 80px; height: 80px;
  background: var(--accent);
  border-color: var(--accent);
  mix-blend-mode: normal;
}
.desktop-view .cursor::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.2s;
}
.desktop-view .cursor.magnetic::after,
.desktop-view .cursor.read::after { opacity: 1; }
@media (hover: none) { .desktop-view .cursor { display: none; } }

.desktop-view .util {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px var(--gutter);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-2);
  border-bottom: 0.5px solid var(--line);
}
.desktop-view .util .l { display: flex; gap: 24px; }
.desktop-view .util .l .dot { color: var(--accent); margin-right: 6px; }

.desktop-view .topbar {
  position: sticky; top: 0; z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--gutter);
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
  transition: padding 0.35s, background 0.35s, backdrop-filter 0.35s;
}
.desktop-view .topbar.scrolled {
  padding: 12px var(--gutter);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px) saturate(180%);
}
.desktop-view .logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  position: relative;
}
.desktop-view .logo-img {
  height: 34px; width: auto; display: block;
  transition: height 0.35s ease;
}
.desktop-view .topbar.scrolled .logo-img { height: 26px; }
[data-theme='dark'] .desktop-view .logo-img { filter: invert(1) brightness(1.05); }
.desktop-view .nav-left, .desktop-view .nav-right {
  display: flex; align-items: center;
}
.desktop-view .nav-left { gap: 28px; }
.desktop-view .nav-right { gap: 18px; justify-content: flex-end; }
.desktop-view .nav-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.desktop-view .nav-link::after {
  content: ''; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.desktop-view .nav-link:hover::after,
.desktop-view .nav-link.active::after { width: 100%; }
.desktop-view .nav-link.active { color: var(--accent); }
.desktop-view .icon-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  border: 0.5px solid var(--line);
  background: transparent;
  transition: background 0.25s, color 0.25s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.desktop-view .icon-btn:hover {
  background: var(--ink); color: var(--bg);
}
.desktop-view .subscribe-btn {
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s, transform 0.3s;
}
.desktop-view .subscribe-btn:hover {
  background: var(--accent); color: var(--ink);
}

.desktop-view .hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 64px var(--gutter) 80px;
  align-items: stretch;
  min-height: 88vh;
}
.desktop-view .hero-text {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding-right: 20px;
}
.desktop-view .hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.desktop-view .hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--accent);
}
.desktop-view .hero-eyebrow span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.desktop-view .hero-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 30;
  font-size: clamp(40px, 4.5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 36px;
}
.desktop-view .hero-title .ln {
  /* Burmese stacked diacritics need breathing room above the line box
     so overflow:hidden doesn't clip ascenders */
  padding-top: 0.18em;
  margin-top: -0.18em;
}
.desktop-view .hero-title .ln {
  display: block; overflow: hidden;
}
.desktop-view .hero-title .ln em {
  display: inline-block;
  transform: translateY(115%);
  animation: word-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  font-style: normal;
}
.desktop-view .hero-title .ln:nth-child(1) em { animation-delay: 0.7s; }
.desktop-view .hero-title .ln:nth-child(2) em {
  animation-delay: 0.85s; font-style: italic; color: var(--accent);
  font-variation-settings: 'opsz' 144, 'wght' 300;
}
.desktop-view .hero-title .ln:nth-child(3) em { animation-delay: 1s; }
.desktop-view .hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 40px;
  opacity: 0;
  animation: fadeUp 1s 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.desktop-view .hero-meta {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  gap: 28px;
  align-items: end;
  padding-top: 28px;
  border-top: 0.5px solid var(--line);
  opacity: 0;
  animation: fadeUp 1s 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.desktop-view .hero-meta .cell .k {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 6px;
  display: block;
}
.desktop-view .hero-meta .cell .v {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
}
.desktop-view .hero-meta .read-btn {
  padding: 16px 26px;
  border-radius: 100px;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
  transition: background 0.25s, gap 0.3s;
}
.desktop-view .hero-meta .read-btn:hover {
  background: var(--accent); color: var(--ink); gap: 18px;
}
.desktop-view .hero-cover {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4),
              0 14px 30px -20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: hero-img 1.4s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes hero-img {
  from { opacity: 0; clip-path: inset(60% 0 0 0); }
  to { opacity: 1; clip-path: inset(0); }
}
.desktop-view .hero-cover-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.desktop-view .hero-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 15, 8, 0.05) 0%,
    rgba(20, 15, 8, 0) 30%,
    rgba(20, 15, 8, 0.6) 75%,
    rgba(20, 15, 8, 0.92) 100%);
}
.desktop-view .hero-cover-grain {
  position: absolute; inset: 0; opacity: 0.15; pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.desktop-view .hero-cover-mast {
  position: absolute; top: 22px; left: 24px; right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f6efe0;
  mix-blend-mode: difference;
}
.desktop-view .hero-cover-cap {
  position: absolute;
  left: 28px; right: 28px; bottom: 32px;
  color: #f6efe0;
}
.desktop-view .hero-cover-cap .eb {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 12px;
}
.desktop-view .hero-cover-cap .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 20;
  font-size: 22px; line-height: 1.15;
  margin: 0;
  letter-spacing: -0.015em;
}

.desktop-view .ticker {
  height: 36px;
  display: flex; align-items: center;
  overflow: hidden;
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.desktop-view .ticker-track {
  display: inline-flex; gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll calc(50s / var(--motion, 1)) linear infinite;
}
.desktop-view .ticker-track > span { display: inline-flex; align-items: center; gap: 48px; }
.desktop-view .ticker-track .dot { color: var(--accent); }

.desktop-view .cats {
  display: flex; gap: 8px;
  padding: 24px var(--gutter);
  border-bottom: 0.5px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.desktop-view .cats::-webkit-scrollbar { display: none; }
.desktop-view .cat-chip {
  flex: 0 0 auto;
  height: 40px; padding: 0 22px;
  border-radius: 100px;
  border: 0.5px solid var(--line);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  background: var(--paper);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.desktop-view .cat-chip.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.desktop-view .cat-chip:not(.active):hover {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.desktop-view .cat-chip .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.desktop-view .sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 80px var(--gutter) 32px;
}
.desktop-view .sec-head .left {
  display: flex; align-items: baseline; gap: 24px;
}
.desktop-view .sec-head .n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; color: var(--accent);
}
.desktop-view .sec-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
}
.desktop-view .sec-title em {
  color: var(--accent); font-weight: 300; font-style: italic;
  font-variation-settings: 'opsz' 144, 'wght' 300;
}
.desktop-view .sec-more {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border: 0.5px solid var(--line);
  border-radius: 100px;
  transition: background 0.25s, color 0.25s, gap 0.3s;
}
.desktop-view .sec-more:hover {
  background: var(--ink); color: var(--bg); gap: 16px;
}

.desktop-view .editor-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 0 var(--gutter) 80px;
  align-items: center;
}
.desktop-view .editor-spread .img-w {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-2);
}
.desktop-view .editor-spread .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.desktop-view .editor-spread:hover .img { transform: scale(1.04); }
.desktop-view .editor-spread .img-w::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
}
.desktop-view .editor-spread .img-w .num {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; color: #fff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
}
.desktop-view .editor-spread .text .eb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.desktop-view .editor-spread .text .eb::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}
.desktop-view .editor-spread .text h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: 56px; line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -0.025em;
}
.desktop-view .editor-spread .text p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px; line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 32px;
}
.desktop-view .editor-spread .text .meta {
  display: flex; gap: 24px; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.desktop-view .editor-spread .text .read-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.3s, color 0.25s, border-color 0.25s;
}
.desktop-view .editor-spread .text .read-link:hover {
  gap: 18px; color: var(--accent); border-color: var(--accent);
}

.desktop-view .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 var(--gutter) 100px;
}
.desktop-view .feat-card {
  background: transparent;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.desktop-view .feat-card .img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 6px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.desktop-view .feat-card .img-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.desktop-view .feat-card:hover .img-inner { transform: scale(1.05); }
.desktop-view .feat-card .img-mask {
  position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.desktop-view .feat-card.revealed .img-mask { transform: scaleY(0); }
.desktop-view .feat-card .eb {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.desktop-view .feat-card h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 20;
  font-size: 32px; line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.desktop-view .feat-card:hover h3 { color: var(--accent); }
.desktop-view .feat-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.desktop-view .feat-card .meta {
  display: flex; gap: 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 0.5px solid var(--line);
  margin-top: auto;
}

.desktop-view .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  padding: 0 var(--gutter) 100px;
}
.desktop-view .grid-card { cursor: pointer; }
.desktop-view .grid-card .img-w {
  position: relative;
  width: 100%; aspect-ratio: 4/5;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}
.desktop-view .grid-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.desktop-view .grid-card:hover .img { transform: scale(1.06); }
.desktop-view .grid-card .img-mask {
  position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.desktop-view .grid-card.revealed .img-mask { transform: scaleY(0); }
.desktop-view .grid-card .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 10px; display: block;
}
.desktop-view .grid-card .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 72;
  font-size: 20px; line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.desktop-view .grid-card:hover .ti { color: var(--accent); }

.desktop-view .partners-wrap {
  margin: 60px 0 0;
  padding: 60px 0;
  background: var(--paper);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  overflow: hidden;
}
.desktop-view .partners-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 var(--gutter) 40px;
}
.desktop-view .partners-head .l {
  font-family: var(--serif);
  font-size: 48px;
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em;
}
.desktop-view .partners-head .l em {
  color: var(--accent); font-style: italic; font-weight: 300;
}
.desktop-view .partners-marquee {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll calc(50s / var(--motion, 1)) linear infinite;
}
.desktop-view .partner-pill {
  display: inline-flex; align-items: center; gap: 14px;
  height: 60px; padding: 0 28px;
  border: 0.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  background: var(--bg);
}
.desktop-view .partner-pill .tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 500;
}

.desktop-view .events { padding: 100px var(--gutter); }
.desktop-view .event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center; gap: 28px;
  padding: 32px 24px;
  border-top: 0.5px solid var(--line);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.desktop-view .event-row:last-child { border-bottom: 0.5px solid var(--line); }
.desktop-view .event-row::before {
  content: ''; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.desktop-view .event-row:hover::before { transform: scaleX(1); }
.desktop-view .event-row:hover > * {
  color: var(--bg) !important; z-index: 1; position: relative;
}
.desktop-view .event-row .num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-3);
}
.desktop-view .event-row .title {
  font-family: var(--serif); font-size: 28px;
  color: var(--ink); letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 96;
}
.desktop-view .event-row .venue {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-3);
  text-transform: uppercase;
}
.desktop-view .event-row .date {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-view .shop-banner {
  margin: 0 var(--gutter) 100px;
  padding: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
  color: #2a1d0a;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.desktop-view .shop-banner::before {
  content: 'K';
  position: absolute; right: -60px; top: -40px;
  font-size: 480px;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  color: rgba(26, 20, 13, 0.08);
  line-height: 0.85;
  pointer-events: none;
}
.desktop-view .shop-banner .eb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(26, 20, 13, 0.7);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.desktop-view .shop-banner .eb::before {
  content: ''; width: 28px; height: 1px; background: rgba(26, 20, 13, 0.6);
}
.desktop-view .shop-banner h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-size: 80px; line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.desktop-view .shop-banner h3 em { font-style: italic; font-weight: 300; }
.desktop-view .shop-banner p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px; line-height: 1.5;
  margin: 0 0 32px;
  opacity: 0.8;
}
.desktop-view .shop-banner .cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: #1a140d; color: var(--accent-soft);
  padding: 18px 32px; border-radius: 100px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: gap 0.3s;
}
.desktop-view .shop-banner .cta:hover { gap: 22px; }
.desktop-view .shop-banner .right {
  position: relative; z-index: 2;
  text-align: right;
}
.desktop-view .shop-banner .right .price {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-size: 240px;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-style: italic;
  font-weight: 300;
  color: #1a140d;
}
.desktop-view .shop-banner .right .price-sub {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(26, 20, 13, 0.7);
  margin-top: 14px;
}

.desktop-view .nl {
  margin: 0 var(--gutter) 100px;
  padding: 100px 80px;
  background: var(--paper);
  border: 0.5px solid var(--line);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.desktop-view .nl .eb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.desktop-view .nl .eb::before, .desktop-view .nl .eb::after {
  content: ''; width: 36px; height: 1px; background: var(--accent);
}
.desktop-view .nl h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-size: 88px; line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}
.desktop-view .nl h3 em {
  font-style: italic; color: var(--accent); font-weight: 300;
}
.desktop-view .nl p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px; line-height: 1.5;
  color: var(--ink-2); margin: 0 auto 36px;
  max-width: 480px;
}
.desktop-view .nl form {
  display: flex; gap: 10px;
  max-width: 540px; margin: 0 auto;
}
.desktop-view .nl input {
  flex: 1; height: 56px; padding: 0 24px;
  font-family: var(--sans); font-size: 16px;
  border: 0.5px solid var(--line);
  background: var(--bg); color: var(--ink);
  border-radius: 100px;
  outline: none;
}
.desktop-view .nl input:focus { border-color: var(--accent); }
.desktop-view .nl button {
  height: 56px; padding: 0 32px;
  background: var(--ink); color: var(--bg);
  border-radius: 100px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}
.desktop-view .nl button:hover {
  background: var(--accent); color: var(--ink);
}

.desktop-view .foot {
  padding: 100px var(--gutter) 60px;
  background: var(--bg-2);
  border-top: 0.5px solid var(--line);
}
.desktop-view .foot .row1 {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 0.5px solid var(--line);
}
.desktop-view .foot .logo-l {
  font-family: var(--serif);
  font-size: 140px;
  font-variation-settings: 'opsz' 144;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.desktop-view .foot .logo-l .dot { color: var(--accent); }
.desktop-view .foot .about {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 360px;
  margin: 0;
}
.desktop-view .foot .col h5 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--line);
}
.desktop-view .foot .col a {
  display: block;
  padding: 8px 0;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.desktop-view .foot .col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.desktop-view .foot .legal {
  padding-top: 36px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; justify-content: space-between;
}

.desktop-view .drawer-d {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
}
.desktop-view .drawer-d.open { pointer-events: auto; }
.desktop-view .drawer-d .back {
  position: absolute; inset: 0;
  background: rgba(20, 15, 8, 0); transition: background 0.6s;
}
.desktop-view .drawer-d.open .back { background: rgba(20, 15, 8, 0.4); }
.desktop-view .drawer-d .panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 60%; max-width: 720px;
  background: var(--paper);
  transform: translateX(101%);
  transition: transform 0.7s cubic-bezier(0.86, 0, 0.07, 1);
  padding: 80px 64px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  overflow-y: auto;
}
.desktop-view .drawer-d.open .panel { transform: translateX(0); }
.desktop-view .drawer-d .close {
  position: absolute; top: 32px; right: 32px;
  z-index: 2;
}
.desktop-view .drawer-d .eb {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  grid-column: 1 / -1;
}
.desktop-view .drawer-d nav { display: flex; flex-direction: column; gap: 6px; }
.desktop-view .drawer-d nav a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 0;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96;
  font-size: 40px;
  letter-spacing: -0.025em;
  color: var(--ink);
  border-bottom: 0.5px solid var(--line-2);
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.5s, transform 0.5s, color 0.2s, padding 0.3s;
}
.desktop-view .drawer-d.open nav a {
  opacity: 1; transform: translateX(0);
  transition-delay: calc(0.15s + var(--i, 0) * 0.04s);
}
.desktop-view .drawer-d nav a:hover {
  color: var(--accent); padding-left: 12px;
}
.desktop-view .drawer-d nav a .num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  font-weight: normal;
}
.desktop-view .drawer-d .side {
  display: flex; flex-direction: column; gap: 24px;
}
.desktop-view .drawer-d .side h6 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin: 0;
}
.desktop-view .drawer-d .side .featured {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 6px;
  overflow: hidden;
}
.desktop-view .drawer-d .side .featured::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7));
}
.desktop-view .drawer-d .side .featured .cap {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  color: #fff;
}
.desktop-view .drawer-d .side .featured .cap .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.22em; color: var(--accent-soft);
  margin-bottom: 8px;
}
.desktop-view .drawer-d .side .featured .cap .ti {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 72;
  font-size: 20px; line-height: 1.15;
  letter-spacing: -0.015em;
  position: relative; z-index: 2;
}

.desktop-view .article { padding: 0 0 100px; }
.desktop-view .article-hero {
  height: 80vh;
  min-height: 600px;
  position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 80px var(--gutter);
}
.desktop-view .article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.8));
}
.desktop-view .article-hero .meta {
  position: relative;
  color: #fff;
  max-width: 1000px;
}
.desktop-view .article-hero .eb {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 24px;
}
.desktop-view .article-hero h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(56px, 6vw, 96px);
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -0.03em;
}
.desktop-view .article-hero .byline {
  display: flex; gap: 24px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.desktop-view .article-body {
  padding: 80px var(--gutter);
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 18;
  font-size: 20px; line-height: 1.65;
  color: var(--ink);
}
.desktop-view .article-body p { margin: 0 0 28px; }
.desktop-view .article-body p:first-child::first-letter {
  font-size: 120px; line-height: 0.8; float: left;
  padding: 14px 18px 0 0; color: var(--accent);
  font-weight: 400;
  font-variation-settings: 'opsz' 144;
}
.desktop-view .article-body blockquote {
  margin: 48px -60px;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px; line-height: 1.3;
  color: var(--ink-2);
  font-variation-settings: 'opsz' 96;
  letter-spacing: -0.02em;
}
.desktop-view .article-tags {
  max-width: 800px; margin: 0 auto;
  padding: 0 var(--gutter) 60px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.desktop-view .tag-chip {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 100px;
  border: 0.5px solid var(--line);
  color: var(--ink-2);
}

.desktop-view .cat-head {
  padding: 120px var(--gutter) 60px;
  border-bottom: 0.5px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}
.desktop-view .cat-head .eb {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.desktop-view .cat-head h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(80px, 9vw, 160px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.035em;
}
.desktop-view .cat-head .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-2);
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   SHOP — category landing + product detail (both viewports)
   ═══════════════════════════════════════════════════════════════ */

/* Mobile shop category tiles */
.mobile-view .shop-cats {
  padding: 0 16px 100px;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-view .shop-cat-tile {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding-left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-view .shop-cat-tile:first-child { border-top: 0.5px solid var(--line); }
.mobile-view .shop-cat-tile:hover, .mobile-view .shop-cat-tile:active {
  padding-left: 6px;
}
.mobile-view .shop-cat-img {
  width: 100px; height: 120px;
  background-size: cover; background-position: center;
  background-color: var(--paper);
  border-radius: 4px;
}
.mobile-view .shop-cat-meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.mobile-view .shop-cat-meta .eb {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.mobile-view .shop-cat-meta h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 20;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.015em;
  margin: 0;
}
.mobile-view .shop-cat-arrow {
  font-family: var(--mono); font-size: 18px; color: var(--ink-2);
  transition: transform 0.3s, color 0.2s;
}
.mobile-view .shop-cat-tile:hover .shop-cat-arrow { transform: translateX(4px); color: var(--accent); }

/* Desktop shop category tiles */
.desktop-view .shop-cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding: 0 var(--gutter) 100px;
}
.desktop-view .shop-cat-tile {
  display: flex; flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}
.desktop-view .shop-cat-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--paper);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.desktop-view .shop-cat-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 15, 8, 0.35));
  opacity: 0; transition: opacity 0.4s;
}
.desktop-view .shop-cat-tile:hover .shop-cat-img::after { opacity: 1; }
.desktop-view .shop-cat-img .shop-cat-count {
  position: absolute; top: 18px; left: 18px;
  background: rgba(250, 246, 236, 0.92);
  color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 2;
}
.desktop-view .shop-cat-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px;
}
.desktop-view .shop-cat-meta h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.025em;
  margin: 0;
  transition: color 0.25s;
}
.desktop-view .shop-cat-tile:hover h3 { color: var(--accent); }
.desktop-view .shop-cat-arrow {
  font-family: var(--mono); font-size: 22px; color: var(--ink-2);
  transition: transform 0.3s, color 0.2s;
}
.desktop-view .shop-cat-tile:hover .shop-cat-arrow { transform: translateX(6px); color: var(--accent); }

/* Mobile product detail */
.mobile-view .product-detail {
  padding: 0 0 100px;
}
.mobile-view .product-detail .pd-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--paper);
  position: relative;
  margin-bottom: 24px;
}
.mobile-view .product-detail .pd-img .shop-stock {
  bottom: 16px; right: 16px;
  font-size: 10px; padding: 8px 14px;
}
.mobile-view .product-detail .pd-body { padding: 0 22px; }
.mobile-view .product-detail .pd-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.mobile-view .product-detail .pd-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.mobile-view .product-detail .pd-name {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.mobile-view .product-detail .pd-price {
  font-family: var(--mono); font-size: 16px;
  color: var(--accent); letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: inline-block;
}
.mobile-view .product-detail .pd-desc {
  font-family: var(--serif);
  font-size: 15px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px;
  white-space: pre-line;
}
.mobile-view .product-detail .pd-sub {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--ink-3);
  text-transform: uppercase;
  line-height: 1.6;
  padding-top: 18px;
  border-top: 0.5px solid var(--line);
}

/* Desktop product detail */
.desktop-view .product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 60px var(--gutter) 120px;
  align-items: start;
}
.desktop-view .product-detail .pd-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}
.desktop-view .product-detail .pd-img {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
}
.desktop-view .product-detail .pd-img-wrap .shop-stock {
  bottom: 24px; right: 24px;
  font-size: 11px; padding: 10px 18px;
}
.desktop-view .product-detail .pd-info {
  position: sticky; top: 120px;
  padding-top: 24px;
}
.desktop-view .product-detail .pd-tag {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.desktop-view .product-detail .pd-tag::before {
  content: ''; width: 32px; height: 1px; background: var(--accent);
}
.desktop-view .product-detail .pd-name {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 20;
  font-size: 56px; line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.desktop-view .product-detail .pd-price {
  font-family: var(--mono); font-size: 22px;
  color: var(--accent); letter-spacing: 0.06em;
  margin-bottom: 32px;
  display: inline-block;
}
.desktop-view .product-detail .pd-desc {
  font-family: var(--serif);
  font-size: 17px; line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 28px;
  white-space: pre-line;
}
.desktop-view .product-detail .pd-sub {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--ink-3);
  text-transform: uppercase;
  line-height: 1.7;
  padding-top: 22px;
  border-top: 0.5px solid var(--line);
}

/* ─── Shop card: sold-out overlay (applies to both views) ────── */
.grid-card.sold-out .img {
  opacity: 0.92;
}
/* The mobile grid-card uses an ::before pseudo as a "reveal curtain". Shop
   cards aren't dramatic reveals — disable the curtain entirely so the
   product photo is always visible. */
.mobile-view .grid-card.sold-out .img::before { display: none; }
.shop-stock {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  padding: 6px 12px;
  background: var(--ink); color: var(--accent-soft);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.desktop-view .shop-stock {
  right: 18px; bottom: 18px;
  font-size: 10px; padding: 8px 14px;
}
.shop-price--out {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink-3);
  opacity: 0.7;
}
