:root {
  --bg: #B5001F;
  --bg-deep: #4A0014;
  --bg-shadow: #1A0008;
  --fg: #FFFFFF;
  --ink: #E8DCE6;
  --pill: #0E1424;
  --line: rgba(255,255,255,0.34);
  --line-soft: rgba(255,255,255,0.12);

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
::selection { background: var(--fg); color: var(--bg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(1.05);
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(74,0,20,0.55) 0%, rgba(26,0,8,0.85) 100%),
    linear-gradient(180deg, rgba(26,0,8,0.35) 0%, rgba(26,0,8,0) 30%, rgba(26,0,8,0.65) 100%);
}

/* pill nav */
.pill {
  margin: clamp(16px, 2.5vw, 28px) auto 0;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(560px, calc(100% - 32px));
  padding: 10px 14px 10px 18px;
  background: rgba(14,20,36,0.78);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pill__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.pill__dot { color: var(--ink); }
.pill__status { flex: 1; text-align: center; color: var(--fg); opacity: 0.9; }
.pill__pulse {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  animation: pulse 1.6s ease-out infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.pill__menu {
  width: 28px; height: 28px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 0 6px;
}
.pill__menu span {
  display: block; height: 1.5px; background: var(--fg); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.pill__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.pill__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pill__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* centered hero copy */
.hero__copy {
  align-self: center;
  justify-self: center;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg);
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hero__period { color: var(--ink); }
.hero__tag {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.2vw, 16px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.92;
}

/* footer micro-row */
.hero__foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.32);
}
.hero__foot-center { text-align: center; color: var(--fg); }
.hero__foot-right { text-align: right; }

.hero__scroll {
  position: absolute;
  left: 32px;
  bottom: 80px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  animation: bob 2.2s ease-in-out infinite;
}
.hero__scroll svg { opacity: 0.7; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   SECTION UTILITY
   ============================================================ */
.section {
  min-height: 100vh;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* ============================================================
   SIZE LADDER
   ============================================================ */
.ladder {
  background: var(--bg);
  background:
    radial-gradient(ellipse at 50% 80%, rgba(74,0,20,0.6) 0%, rgba(26,0,8,1) 80%),
    var(--bg);
  text-align: center;
}
.ladder__head { max-width: 720px; margin: 0 auto 80px; }
.ladder__eyebrow,
.collection__eyebrow,
.spotlight__eyebrow,
.manifesto__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.ladder__title,
.spotlight__title,
.collection__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 24px;
}
.ladder__lede,
.spotlight__lede {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 560px;
  margin: 0 auto;
}

.ladder__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0 60px;
}
.ladder__track {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 20%, rgba(255,255,255,0.5) 80%, transparent 100%);
  transform: translateY(-1px);
}
.node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 8px 0;
  color: var(--fg);
  position: relative;
  transition: transform 0.3s ease;
}
.node:hover { transform: translateY(-6px); }
.node__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  position: absolute;
  top: -2px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.node:hover .node__dot {
  box-shadow: 0 0 0 12px rgba(255,255,255,0.08);
  transform: scale(1.15);
}
.node__size {
  margin-top: 36px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.node__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.ladder__edge {
  position: absolute;
  top: 50%;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}
.ladder__edge--start { left: -4px; }
.ladder__edge--end { right: -4px; }

/* ============================================================
   DESIGNER SPOTLIGHT
   ============================================================ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  background:
    radial-gradient(circle at 80% 30%, rgba(74,0,20,0.5) 0%, rgba(26,0,8,1) 70%),
    var(--bg-deep);
}
.spotlight__copy { max-width: 520px; }
.spotlight__title { text-align: left; }
.spotlight__lede { margin: 0 0 36px; max-width: 480px; text-align: left; }
.spotlight__specs {
  display: grid;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.spotlight__specs > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
}
.spotlight__specs dt { color: var(--ink); }
.spotlight__specs dd { color: var(--fg); }

.spotlight__fig {
  position: relative;
  margin: 0;
  background: var(--bg-shadow);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.spotlight__fig:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.spotlight__fig img {
  width: 100%;
  height: auto;
  filter: brightness(1.05) contrast(1.05);
}
.spotlight__fig figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(14,20,36,0.6);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   COLLECTION GRID
   ============================================================ */
.collection {
  background: var(--bg);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(74,0,20,0.6) 0%, rgba(26,0,8,1) 80%),
    var(--bg);
}
.collection__head { text-align: center; margin-bottom: 60px; }
.collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 36px);
  max-width: 1280px;
  margin: 0 auto;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: var(--bg-shadow);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  color: var(--fg);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 24px 50px -16px rgba(0,0,0,0.55);
}
.card__num {
  position: absolute;
  top: 12px; right: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  background: var(--bg-deep);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.card p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.card__price {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--fg);
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--bg-deep);
  text-align: center;
  min-height: 70vh;
}
.manifesto__body {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 900px;
  margin: 24px auto 0;
}
.manifesto__body .ink { color: var(--ink); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(14,20,36,0.78);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 56px clamp(24px, 5vw, 56px) 40px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  animation: rise 0.32s ease-out;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal__accent {
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 4px;
  background: var(--fg);
}
.modal__close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  width: 32px; height: 32px;
  display: grid; place-items: center;
}
.modal__size {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.modal__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 16px;
}
.modal__lede {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  max-width: 480px;
  margin-bottom: 28px;
}
.modal__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--bg-shadow);
  border-radius: 2px;
  margin-bottom: 24px;
}
.modal__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

/* ============================================================
   MENU OVERLAY
   ============================================================ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(14,20,36,0.94);
  backdrop-filter: blur(14px);
}
.menu[aria-hidden="false"] { display: flex; }
.menu ul {
  list-style: none;
  text-align: center;
  display: grid;
  gap: 18px;
}
.menu a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
}

/* ============================================================
   FADE-IN (scroll-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .hero__foot { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .hero__foot-right, .hero__foot-left { text-align: center; }
  .hero__scroll { display: none; }
}
@media (max-width: 640px) {
  .pill { width: calc(100% - 32px); gap: 10px; padding: 8px 12px; font-size: 10px; }
  .pill__status { font-size: 9px; letter-spacing: 0.12em; }
  .ladder__rail { gap: 12px; padding-top: 40px; padding-bottom: 30px; }
  .node__name { font-size: 16px; }
  .node__size { font-size: 9px; }
  .ladder__edge { display: none; }
}
