:root {
  --bg-outer: #c9c9c9;
  --bg-card: #ededec;
  --ink: #0a0a0a;
  --ink-60: rgba(10, 10, 10, 0.6);
  --ink-40: rgba(10, 10, 10, 0.4);
  --ink-25: rgba(10, 10, 10, 0.25);
  --mono-fg: #111;
  --rule: rgba(10, 10, 10, 0.65);
  --photo-bg: #b8b8b8;
  --card-radius: 6px;

  --gray-1: #1a1a1a;
  --gray-2: #4a4a4a;
  --gray-3: #7a7a7a;
  --gray-4: #a8a8a8;
  --gray-5: #d6d6d6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  height: 100%;
  background: var(--bg-outer);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 32px;
}

.card {
  position: relative;
  width: min(1240px, 100%);
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border-radius: var(--card-radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.25), 0 8px 20px -8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 38px 56px 46px;
  display: flex;
  flex-direction: column;
}

/* ───────── decorative bg graphics ───────── */
.bg-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38%;
  height: 56%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.04) 60%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
  z-index: 0;
}
.bg-watermark {
  position: absolute;
  left: -6px;
  bottom: 64px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 280px;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(10,10,10,0.04);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.dotgrid {
  position: absolute;
  top: 84px;
  left: 56px;
  width: 92px;
  height: 60px;
  background-image: radial-gradient(circle, rgba(10,10,10,0.35) 1px, transparent 1.4px);
  background-size: 8px 8px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
  mask-image: linear-gradient(135deg, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(135deg, #000 30%, transparent 100%);
}
.rings {
  position: absolute;
  left: 47%;
  top: 240px;
  width: 64px;
  height: 64px;
  pointer-events: none;
  z-index: 5;
}
.rings .r1, .rings .r2, .rings .r3 {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rings .r1 { width: 12px; height: 12px; background: var(--gray-1); }
.rings .r2 { width: 32px; height: 32px; border: 1px solid var(--gray-3); }
.rings .r3 { width: 64px; height: 64px; border: 1px solid var(--gray-4); }

.cross-mark {
  position: absolute;
  bottom: 110px;
  right: 30px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 3;
}
.cross-mark::before,
.cross-mark::after {
  content: "";
  position: absolute;
  background: var(--ink-60);
}
.cross-mark::before { left: 50%; top: 0; width: 1px; height: 14px; transform: translateX(-50%); }
.cross-mark::after  { top: 50%; left: 0; height: 1px; width: 14px; transform: translateY(-50%); }

.bar-stack {
  position: absolute;
  left: 56px;
  bottom: 78px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}
.bar-stack i {
  width: var(--w);
  height: 3px;
  background: var(--g);
}

.vrule {
  position: absolute;
  top: 92px;
  bottom: 92px;
  left: 54%;
  width: 1px;
  background: var(--ink-25);
  z-index: 1;
}

.big-tilt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 70px;
  letter-spacing: -0.04em;
  color: rgba(10, 10, 10, 0.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ───────── crop marks ───────── */
.crop {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.crop::before,
.crop::after {
  content: "";
  position: absolute;
  background: var(--ink-40);
}
.crop::before { width: 14px; height: 1px; }
.crop::after  { width: 1px;  height: 14px; }
.crop--tl { top: 14px; left: 16px; }
.crop--tl::before { top: 0; left: 0; }
.crop--tl::after  { top: 0; left: 0; }
.crop--tr { top: 14px; right: 16px; }
.crop--tr::before { top: 0; right: 0; }
.crop--tr::after  { top: 0; right: 0; }
.crop--bl { bottom: 14px; left: 16px; }
.crop--bl::before { bottom: 0; left: 0; }
.crop--bl::after  { bottom: 0; left: 0; }
.crop--br { bottom: 14px; right: 16px; }
.crop--br::before { bottom: 0; right: 0; }
.crop--br::after  { bottom: 0; right: 0; }

/* ───────── left-edge vertical label ───────── */
.edge-left {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-60);
  white-space: nowrap;
  font-weight: 500;
}

/* ───────── meta top-right ───────── */
.meta {
  position: absolute;
  top: 84px;
  right: 56px;
  display: grid;
  gap: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: right;
  z-index: 3;
}
.meta-row { display: flex; gap: 14px; justify-content: flex-end; }
.meta-row span:first-child { color: var(--ink-40); }
.meta-row span:last-child { color: var(--ink); font-weight: 500; }

/* ───────── nav ───────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", "Inter", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  z-index: 4;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 44px; }
.nav-mark { font-weight: 700; }
.nav-link { color: var(--mono-fg); text-decoration: none; }
.nav-link:hover { text-decoration: underline; }
.nav-drop span { font-size: 9px; margin-left: 2px; }
.nav-more {
  background: none; border: 0; padding: 0; cursor: pointer;
  letter-spacing: 0.2em; color: var(--mono-fg); font-size: 11px;
}

/* ───────── grid ───────── */
.grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.6fr;
  grid-template-areas: "word copy figure";
  gap: 24px;
  align-items: stretch;
  min-height: 0;
  position: relative;
  z-index: 2;
}

/* ───────── col 1: wordmark + index + swatches ───────── */
.col-word {
  grid-area: word;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  position: relative;
}
.wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 17vw, 240px);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin-top: -10px;
}
.wordmark .dot {
  color: var(--ink);
  margin-left: -0.04em;
}

.ring {
  position: absolute;
  top: 16px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink-40);
  border-radius: 50%;
}

.index-block {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: auto;
}
.index {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 11vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.index-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 14px;
}
.index-meta .tilt-15 {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  white-space: nowrap;
  display: inline-block;
  transform: rotate(-15deg);
  transform-origin: left center;
}

.swatches {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.swatches li {
  width: 18px;
  height: 18px;
  background: var(--s);
  border-radius: 2px;
}
.swatches .sw-line {
  width: 28px;
  height: 1px;
  background: var(--ink-40);
  margin: 0 4px;
  border-radius: 0;
}
.swatches .sw-label {
  width: auto;
  height: auto;
  background: none;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-60);
  text-transform: uppercase;
}

/* ───────── col 2: kicker + copy + micro stack ───────── */
.col-copy {
  grid-area: copy;
  padding-top: 8px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mono-fg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker .dotdiv { color: var(--ink-40); }
.copy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 340px;
}
.copy-cols p {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mono-fg);
}

.dotrule {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 1px;
  background-image: linear-gradient(to right, var(--ink-40) 0 2px, transparent 2px 6px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  margin-top: 6px;
}

.micro-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.micro-stack span:nth-child(2) { color: var(--ink); font-weight: 500; }

/* ───────── col 3: figure ───────── */
.col-figure {
  grid-area: figure;
  position: relative;
  background: var(--photo-bg);
  overflow: hidden;
  min-width: 0;
}
.col-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(100%) contrast(1.02);
  display: block;
}

.scan {
  position: absolute;
  left: 18px;
  top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fafafa;
  background: rgba(0,0,0,0.55);
  padding: 5px 8px;
  z-index: 3;
}
.scan-bar {
  width: 36px;
  height: 1px;
  background: #fafafa;
}
.tilt-neg-8 { transform: rotate(-8deg); transform-origin: left top; }

.figure-id {
  position: absolute;
  right: 56px;
  bottom: 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fafafa;
  z-index: 3;
}

.edge-label {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  z-index: 3;
}

/* ───────── bottom hairline + ticks ───────── */
.bottom-rule {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 30px;
  height: 1px;
  background: var(--ink-25);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}
.bottom-rule .tick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-100%);
  padding-bottom: 2px;
}
.bottom-rule .tick em {
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.bottom-rule .tick b {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 10px;
  color: var(--ink);
  line-height: 1;
}

.arrow-tag {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-180%) rotate(12deg);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  pointer-events: none;
  z-index: 4;
  white-space: nowrap;
}
.tilt-12 { /* applied via class for clarity, real transform on .arrow-tag */ }

/* ───────── arrow button ───────── */
.arrow {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-150%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1.2px solid var(--rule);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 4;
}
.arrow:hover {
  background: var(--ink);
  color: var(--bg-card);
}

/* ───────── responsive ───────── */
@media (max-width: 900px) {
  .card { aspect-ratio: auto; padding: 24px 22px 64px; }
  .grid { grid-template-columns: 1fr; grid-template-areas: "word" "copy" "figure"; gap: 18px; }
  .col-figure { aspect-ratio: 4/5; }
  .wordmark { font-size: clamp(96px, 28vw, 180px); }
  .index { font-size: clamp(64px, 18vw, 120px); }
  .arrow { display: none; }
  .nav-left, .nav-right { gap: 18px; }
  .nav-right .nav-link:not(.nav-drop) { display: none; }
  .edge-left { left: 8px; font-size: 8px; }
  .meta { display: none; }
  .figure-id { right: 16px; }
  .bottom-rule { left: 22px; right: 22px; bottom: 18px; }
  .bottom-rule .tick em { display: none; }
}

/* ═════════ SUB-PAGES ═════════ */

/* shared content body for sub-pages */
.body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.page-title {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 18px;
}
.page-title h1 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8.5vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.page-title .ptl-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.page-title .ptl-meta b { color: var(--ink); font-weight: 700; }

/* ─── PROJECTS grid ─── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  flex: 1;
  min-height: 0;
}
.proj-card {
  position: relative;
  background: var(--photo-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proj-card img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.02);
  min-height: 0;
}
.proj-card .pc-no {
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fafafa;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  z-index: 2;
}
.proj-card .pc-title {
  position: absolute;
  bottom: 26px;
  left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fafafa;
  z-index: 2;
}
.proj-card .pc-tilt {
  position: absolute;
  bottom: 60px;
  left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
  z-index: 2;
}
.proj-card .pc-foot {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bg-card);
  color: var(--ink);
  border-top: 1px solid var(--ink-25);
}
.proj-card .pc-foot span:last-child { color: var(--ink-60); }

/* ─── AW26 collection cover ─── */
.aw26 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  flex: 1;
  min-height: 0;
}
.aw26-cover {
  position: relative;
  background: var(--photo-bg);
  overflow: hidden;
}
.aw26-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  display: block;
}
.aw26-cover .ac-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: #fafafa;
  pointer-events: none;
}
.aw26-cover .ac-num {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 18vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.aw26-cover .ac-foot {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.aw26-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aw26-lede {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 340px;
}
.aw26-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.aw26-specs .row { display: flex; flex-direction: column; gap: 2px; }
.aw26-specs .row span:first-child { color: var(--ink-40); }
.aw26-specs .row span:last-child { color: var(--ink); font-weight: 500; }

.aw26-looks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.aw26-looks .lk {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--photo-bg);
  overflow: hidden;
}
.aw26-looks .lk img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
}
.aw26-looks .lk span {
  position: absolute;
  bottom: 6px; left: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fafafa;
}

/* ─── SHOP grid ─── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  flex: 1;
  min-height: 0;
}
.sg-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.sg-item .sg-img {
  position: relative;
  flex: 1;
  background: #d4d4d2;
  overflow: hidden;
  min-height: 0;
}
.sg-item .sg-img img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
  transition: transform 0.4s ease;
}
.sg-item:hover .sg-img img { transform: scale(1.03); }
.sg-item .sg-no {
  position: absolute;
  top: 6px; left: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ink);
  z-index: 2;
}
.sg-item .sg-tilt {
  position: absolute;
  top: 12px; right: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  transform: rotate(8deg);
  white-space: nowrap;
}
.sg-item .sg-info {
  padding: 8px 4px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sg-item .sg-title { font-weight: 700; color: var(--ink); }
.sg-item .sg-price { font-weight: 700; color: var(--ink); justify-self: end; }
.sg-item .sg-mat { color: var(--ink-60); font-size: 8.5px; letter-spacing: 0.14em; }
.sg-item .sg-size { color: var(--ink-60); font-size: 8.5px; letter-spacing: 0.14em; justify-self: end; }

/* ─── ARRIVALS list ─── */
.arrivals-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.al-row {
  display: grid;
  grid-template-columns: 70px 70px 1fr 1fr 90px 80px;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--ink-25);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.al-row:last-child { border-bottom: 1px solid var(--ink-25); }
.al-row .al-date { font-weight: 700; color: var(--ink); }
.al-row .al-thumb {
  width: 56px;
  height: 70px;
  background: var(--photo-bg);
  overflow: hidden;
  position: relative;
}
.al-row .al-thumb img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
}
.al-row .al-thumb span {
  position: absolute;
  top: 4px; left: 6px;
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #fafafa;
  font-weight: 700;
}
.al-row .al-title { font-weight: 700; font-size: 13px; letter-spacing: 0.02em; text-transform: none; font-family: "Inter", sans-serif; }
.al-row .al-spec { color: var(--ink-60); font-size: 9px; }
.al-row .al-edition { color: var(--ink); font-weight: 500; }
.al-row .al-price { color: var(--ink); font-weight: 700; justify-self: end; }

.al-header {
  display: grid;
  grid-template-columns: 70px 70px 1fr 1fr 90px 80px;
  gap: 16px;
  padding-bottom: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.al-header span:last-child { justify-self: end; }

/* ─── PROJECT DETAIL ─── */
.detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  flex: 1;
  min-height: 0;
}
.detail-img {
  position: relative;
  background: var(--photo-bg);
  overflow: hidden;
}
.detail-img img {
  width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
}
.detail-img .di-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fafafa;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.detail-img .di-tilt {
  position: absolute;
  right: 16px;
  bottom: 60px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fafafa;
  transform: rotate(-90deg);
  transform-origin: right top;
  white-space: nowrap;
}
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
}
.detail-side h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.detail-side .ds-kick {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.detail-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail-spec .r { display: flex; flex-direction: column; gap: 2px; padding: 8px 0; border-top: 1px solid var(--ink-25); }
.detail-spec .r span:first-child { color: var(--ink-40); }
.detail-spec .r span:last-child { color: var(--ink); font-weight: 500; }
.detail-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "JetBrains Mono", monospace;
}
.detail-cta .price { font-size: 18px; font-weight: 700; color: var(--ink); }
.detail-cta button {
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg-card);
  border: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.2s ease;
}
.detail-cta button:hover { background: #333; }

/* responsive subpages */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .aw26 { grid-template-columns: 1fr; }
  .aw26-cover { aspect-ratio: 16/10; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .al-row, .al-header { grid-template-columns: 60px 60px 1fr 70px; }
  .al-row .al-spec, .al-row .al-edition, .al-header span:nth-child(4), .al-header span:nth-child(5) { display: none; }
  .detail { grid-template-columns: 1fr; }
  .page-title h1 { font-size: clamp(56px, 14vw, 96px); }
}

