/* Rook Paint Co. — wall, not a template */
:root {
  --wall: #141210;
  --wall-2: #1c1914;
  --cream: #f3ead8;
  --dust: #b7aea0;
  --mute: #8a8174;
  --mag: #ff3d8a;
  --acid: #e6ff3d;
  --cyn: #6dfff5;
  --rust: #c45c2a;
  --line: rgba(243, 234, 216, 0.14);
  --display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --stencil: "Big Shoulders Stencil Display", "Arial Narrow", sans-serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--body);
  color: var(--cream);
  background: var(--wall);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Concrete wall: stain, work-light, grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(243, 234, 216, 0.09), transparent 55%),
    radial-gradient(900px 600px at 110% 80%, rgba(255, 61, 138, 0.07), transparent 50%),
    radial-gradient(700px 500px at -10% 110%, rgba(109, 255, 245, 0.05), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 5px, rgba(0,0,0,.12) 5px 6px),
    linear-gradient(180deg, #191714, #100e0c);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 30;
  background: var(--acid);
  color: #111;
  padding: 8px 12px;
  text-decoration: none;
}

.wrap, .site-header, main, .site-footer, .spray-enter {
  position: relative;
  z-index: 2;
}

/* —— Nav: stencil kick along the wall —— */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem 1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 3.6rem;
}
.brand {
  font-family: var(--stencil);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.brand:hover { color: var(--acid); }
.nav {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav a {
  font-family: var(--stencil);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dust);
  text-decoration: none;
  position: relative;
}
.nav a[aria-current="page"] { color: var(--cream); }
.nav a[aria-current="page"]::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--mag);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--mag);
}
.nav a:hover { color: var(--cream); }

/* —— Stencil-painted display type —— */
.stage {
  padding: 2.2rem 1.5rem 1.25rem;
  min-height: calc(100vh - 4.5rem);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 1.25rem;
  align-items: stretch;
  isolation: isolate;
}
.stage-main { min-width: 0; overflow: visible; position: relative; z-index: 1; }

/* Home mural: lives in the empty wall, not over ROOK */
.mural-wall {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, rgba(0,0,0,.28) 34%, #000 48%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 20%, rgba(0,0,0,.28) 34%, #000 48%);
}
.eyebrow {
  font-family: var(--stencil);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cyn);
  margin: 0 0 0.4rem;
}
.drip-type {
  margin: 0;
  line-height: 0.82;
  font-family: var(--stencil);
  font-weight: 900;
  font-size: clamp(5.4rem, 22vw, 13.5rem);
  letter-spacing: 0.012em;
  color: var(--cream);
  position: relative;
  padding: 0.08em 0.1em 0.16em 0;
  overflow: visible;
}
.word {
  display: flex;
  gap: 0.04em;
  position: relative;
  overflow: visible;
}
.ch {
  position: relative;
  display: inline-block;
  overflow: visible;
}
.mist {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  pointer-events: none;
  opacity: 0;
  filter: blur(1.6px);
  transform: scale(1.018);
  animation: mist-in 0.7s ease-out forwards;
  --mist-op: 0.42;
}
.ch:nth-child(1) .mist { animation-delay: 0.05s; }
.ch:nth-child(2) .mist { animation-delay: 0.13s; }
.ch:nth-child(3) .mist { animation-delay: 0.21s; }
.ch:nth-child(4) .mist { animation-delay: 0.29s; }
@keyframes mist-in {
  to { opacity: var(--mist-op); }
}
.letter {
  position: relative;
  z-index: 1;
  display: block;
  background-color: #e8dfcc;
  background-image: url("spray-grain.png"), url("spray-grain.png");
  background-size: 92px 92px, 148px 148px;
  background-position: 0 0, 36px 18px;
  background-repeat: repeat;
  background-blend-mode: multiply, overlay;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  clip-path: inset(-8% -10% 100% -10%);
  animation: paint-down 0.78s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}
.ch:nth-child(2) .letter { animation-delay: 0.08s; }
.ch:nth-child(3) .letter { animation-delay: 0.16s; }
.ch:nth-child(4) .letter { animation-delay: 0.24s; }

@keyframes paint-down {
  to { clip-path: inset(-8% -10% -12% -10%); }
}

.overspray {
  position: absolute;
  left: -2%;
  right: -2%;
  top: -6%;
  bottom: -10%;
  width: auto;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: speck-in 1.2s ease-out 0.4s forwards;
}
@keyframes speck-in {
  to { opacity: 1; }
}

.co {
  font-family: var(--stencil);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dust);
  margin: 0.35rem 0 1.4rem;
}

.lede {
  max-width: 34rem;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.lede strong { font-weight: 700; color: var(--acid); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

/* Spray-painted rectangles, not rounded SaaS buttons */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-block;
  font-family: var(--stencil);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  background: var(--acid);
  padding: 0.85rem 1.25rem 0.7rem;
  border: 0;
  cursor: pointer;
  clip-path: polygon(2% 8%, 98% 0, 100% 92%, 0 100%);
}
.btn.ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -1;
  background: radial-gradient(circle, var(--mag) 0%, transparent 68%);
  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.18s ease;
}
.btn:hover::before,
.btn:focus-visible::before { opacity: 0.7; }
.btn:hover,
.btn:focus-visible {
  animation: can-shake 0.28s ease;
}
.btn.ghost:hover { background: rgba(243, 234, 216, 0.08); }

@keyframes can-shake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  25% { transform: translate(-2px, 1px) rotate(-0.5deg); }
  50% { transform: translate(2px, -1px) rotate(0.6deg); }
  75% { transform: translate(-1px, 1px) rotate(-0.2deg); }
}

/* Full-width service row — spread, not a stacked box */
.rack {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 1.6rem;
  border-left: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  width: 100%;
  align-self: end;
}
.rack li { padding: 0; border: 0; }
.rack a {
  display: block;
  font-family: var(--stencil);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 0.9rem 0.75rem;
  background: none;
  border: 0;
  box-shadow: none;
  text-shadow: 0 1px 10px rgba(20, 18, 16, 0.85);
  animation: rack-spray 0.9s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
.rack li:nth-child(1) a { animation-delay: 0.15s; }
.rack li:nth-child(2) a { animation-delay: 0.32s; }
.rack li:nth-child(3) a { animation-delay: 0.48s; }
.rack li:nth-child(4) a { animation-delay: 0.64s; }
.rack a:hover,
.rack a:focus-visible {
  color: #111;
  background: var(--acid);
  text-shadow: none;
}
.rack b {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--mag);
  letter-spacing: 0.22em;
  margin-bottom: 0.2rem;
}
.rack a:hover b,
.rack a:focus-visible b { color: #111; }
@keyframes rack-spray {
  from { opacity: 0; filter: blur(8px); clip-path: inset(0 40% 0 0); }
  to { opacity: 1; filter: none; clip-path: inset(0 0 0 0); }
}
.reduced .rack a { animation: none; }
.reduced .look-mural,
.reduced .look-no,
.reduced .chip { animation: none !important; }
.reduced .look.await-paint .look-mural,
.reduced .look.in-view .look-mural,
.reduced .look.await-paint .look-no,
.reduced .look.in-view .look-no { clip-path: none; }
.reduced .look.await-paint .chip,
.reduced .look.in-view .chip { opacity: 1; transform: none; }


/* Page-enter spray bursts */
.spray-enter {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.burst {
  position: absolute;
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  border-radius: 50%;
  opacity: 0;
  filter: blur(18px);
  animation: spray-in 0.85s ease-out forwards;
  mix-blend-mode: screen;
}
.burst.b1 { left: 6%; top: 8%; background: radial-gradient(circle, rgba(255,61,138,.55), transparent 70%); }
.burst.b2 { right: 4%; top: 28%; background: radial-gradient(circle, rgba(230,255,61,.4), transparent 70%); animation-delay: 0.12s; }
.burst.b3 { left: 30%; bottom: 6%; background: radial-gradient(circle, rgba(109,255,245,.4), transparent 70%); animation-delay: 0.22s; }
@keyframes spray-in {
  0% { opacity: 0; transform: scale(0.18); }
  38% { opacity: 0.85; }
  100% { opacity: 0; transform: scale(1.35); }
}

/* Mouse spray: canvas overlay, dots fade on their own clock */
#spray-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 12;
}

/* Inner pages */
.page {
  padding: 2rem 1.5rem 3rem;
  max-width: 1180px;
}
.page-kicker {
  font-family: var(--stencil);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--cyn);
  margin: 0 0 0.4rem;
}
.page h1,
.look-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 0.8rem;
}
.page .intro,
.look-hero .intro {
  max-width: 38rem;
  font-size: 1.15rem;
  color: var(--dust);
  margin: 0 0 2rem;
}

html:has(.lookbook) { scroll-padding-top: 3.6rem; }

/* —— Walls lookbook: rack of looks, not a brick grid —— */
.lookbook { padding: 0 0 2.5rem; }
.look-hero {
  padding: 2rem 1.5rem 1.1rem;
  max-width: 42rem;
}
.look-hero .intro { margin-bottom: 0.4rem; }

.look-rack {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--mag) transparent;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.94), rgba(16, 14, 12, 0.9));
  backdrop-filter: blur(8px);
}
.look-rack a {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.85rem 1.15rem 0.75rem;
  font-family: var(--stencil);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dust);
  font-size: 0.92rem;
  white-space: nowrap;
  border-right: 1px solid var(--line);
}
.look-rack a:hover,
.look-rack a:focus-visible { color: var(--cream); background: rgba(243, 234, 216, 0.05); }
.look-rack a:focus-visible { outline: 2px solid var(--acid); outline-offset: -2px; }
.look-rack b {
  font-weight: 700;
  color: var(--mag);
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.look {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 26rem);
  gap: 1.4rem 1.75rem;
  align-items: start;
  padding: 2.75rem 1.5rem 3rem 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 3.6rem;
}
.look.flip {
  grid-template-columns: minmax(260px, 26rem) minmax(0, 1.45fr);
  padding-left: 1.5rem;
  padding-right: 0;
}
.look.flip .look-mural { order: 2; }
.look.flip .look-sheet { order: 1; }

.look-mural {
  position: relative;
  margin: 0;
  background: #0d0c0a;
  overflow: hidden;
  isolation: isolate;
  min-height: 0;
}
.look-mural img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.look-mural figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.look-mural::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 38% 24%, rgba(255, 61, 138, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
}
.look-mural:hover::before,
.look-mural:focus-within::before { opacity: 1; }
.look-mural::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.look.await-paint:not(.in-view) .look-mural {
  clip-path: inset(0 0 100% 0);
}
.look.in-view .look-mural {
  animation: mural-paint 1.15s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
@keyframes mural-paint {
  from { clip-path: inset(-2% -2% 102% -2%); }
  to { clip-path: inset(-2% -2% -2% -2%); }
}

/* Paper treatment taped to the wall */
.look-sheet {
  position: relative;
  color: #1c1914;
  background: #e8dfcc;
  padding: 1.55rem 1.35rem 1.4rem;
  margin: 1.4rem 1.25rem 0;
  transform: rotate(-0.55deg);
  clip-path: polygon(0.8% 0, 100% 1.1%, 98.8% 100%, 0 98.6%);
  box-shadow:
    10px 12px 0 rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(20, 18, 16, 0.12);
}
.look.flip .look-sheet { transform: rotate(0.5deg); }
.look-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.look-sheet .tape {
  position: absolute;
  top: -11px;
  height: 22px;
  background: rgba(243, 234, 216, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(20, 18, 16, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 2;
}
.look-sheet .tape.t1 {
  left: 14%;
  width: 78px;
  transform: rotate(-9deg);
}
.look-sheet .tape.t2 {
  right: 12%;
  left: auto;
  width: 56px;
  transform: rotate(7deg);
  background: rgba(230, 255, 61, 0.28);
}

.look-kicker {
  font-family: var(--stencil);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #c45c2a;
  margin: 0 0 0.35rem;
  position: relative;
}
.look-no {
  font-family: var(--stencil);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141210;
  margin: 0 0 0.15rem;
  position: relative;
}
.look-no span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: #ff3d8a;
  margin-bottom: 0.15rem;
}
.look.await-paint:not(.in-view) .look-no {
  clip-path: inset(0 100% 0 -6%);
}
.look.in-view .look-no {
  animation: stencil-reveal 0.55s 0.18s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
@keyframes stencil-reveal {
  from { clip-path: inset(0 100% 0 -8%); }
  to { clip-path: inset(0 -8% 0 -8%); }
}

.look-sheet h2 {
  font-family: var(--stencil);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  color: #141210;
}
.look-line {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.4;
  color: #2a2620;
}

.look-meta { margin: 0; }
.look-meta > div {
  padding: 0.65rem 0 0.55rem;
  border-top: 1px dashed rgba(20, 18, 16, 0.22);
}
.look-meta h3 {
  font-family: var(--stencil);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: #8a4a24;
}
.look-meta p {
  margin: 0;
  font-size: 0.98rem;
  color: #1c1914;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0;
  padding: 0;
}
.chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--stencil);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1c1914;
}
.chip i {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
  font-style: normal;
  box-shadow: inset 0 0 0 1px rgba(20, 18, 16, 0.25);
  transform: rotate(-4deg);
}
.chip i[data-can="fog"] { background: #8e98a2; }
.chip i[data-can="magenta"] { background: var(--mag); }
.chip i[data-can="acid"] { background: var(--acid); }
.chip i[data-can="cyan"] { background: var(--cyn); }
.chip i[data-can="rust"] { background: var(--rust); }
.chip i[data-can="cream"] { background: var(--cream); box-shadow: inset 0 0 0 1px rgba(20, 18, 16, 0.35); }
.chip i[data-can="night"] { background: #141210; }

.look.await-paint:not(.in-view) .chip { opacity: 0; transform: translateY(8px) rotate(-14deg); }
.look.in-view .chip {
  animation: chip-stick 0.42s cubic-bezier(0.2, 0.85, 0.2, 1.1) both;
}
.look.in-view .chip:nth-child(1) { animation-delay: 0.38s; }
.look.in-view .chip:nth-child(2) { animation-delay: 0.48s; }
.look.in-view .chip:nth-child(3) { animation-delay: 0.58s; }
.look.in-view .chip:nth-child(4) { animation-delay: 0.68s; }
.look.in-view .chip:nth-child(5) { animation-delay: 0.78s; }
.look.in-view .chip:nth-child(6) { animation-delay: 0.88s; }
@keyframes chip-stick {
  0% { opacity: 0; transform: translateY(10px) rotate(-16deg); }
  72% { opacity: 1; transform: translateY(-2px) rotate(4deg); }
  100% { opacity: 1; transform: translateY(0) rotate(-3deg); }
}

.look-cta {
  padding: 3.2rem 1.5rem 1rem;
  max-width: 38rem;
}
.look-cta h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
}
.look-cta p {
  margin: 0 0 1.25rem;
  font-size: 1.12rem;
  color: var(--dust);
}

@media (min-width: 861px) {
  .look-sheet { position: sticky; top: 4.4rem; }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 38rem) minmax(140px, 200px);
  gap: 2.5rem;
  align-items: start;
}
.prose h2 {
  font-family: var(--stencil);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 2rem 0 0.5rem;
  color: var(--acid);
}
.prose p { margin: 0 0 1rem; color: var(--cream); font-size: 1.08rem; }
.prose p.pull {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  border-left: 6px solid var(--mag);
  padding-left: 1rem;
  margin: 1.4rem 0;
}

.swatch {
  position: sticky;
  top: 1rem;
  overflow: hidden;
  height: min(70vh, 640px);
  background:
    linear-gradient(180deg,
      #6dfff5 0 12%,
      #141210 12% 13%,
      #ff3d8a 13% 28%,
      #141210 28% 29%,
      #e6ff3d 29% 38%,
      #c45c2a 38% 52%,
      #3a3732 52% 70%,
      #f3ead8 70% 78%,
      #141210 78% 100%);
  box-shadow:
    8px 0 0 rgba(255,61,138,.35),
    inset -12px 0 24px rgba(0,0,0,.35);
}
.swatch-drips {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Book */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.steps .n {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--mag);
}
.steps h2 {
  font-family: var(--stencil);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}
.steps p { margin: 0; color: var(--dust); }

.panel {
  background: rgba(20, 18, 16, 0.6);
  border: 1px solid var(--line);
  padding: 1.25rem 1.25rem 1.4rem;
  box-shadow: 12px 12px 0 rgba(255, 61, 138, 0.18);
}
.panel h2 {
  font-family: var(--stencil);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0 0 1rem;
}
label {
  display: block;
  font-family: var(--stencil);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--dust);
  margin: 0.7rem 0 0.25rem;
}
input, textarea, select {
  width: 100%;
  font: inherit;
  color: var(--cream);
  background: #0e0d0b;
  border: 1px solid var(--line);
  padding: 0.65rem 0.7rem;
  border-radius: 0;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--acid);
  outline-offset: 1px;
}
textarea { min-height: 7rem; resize: vertical; }
.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
  color: var(--cyn);
  min-height: 1.2em;
}
.contact-block {
  margin-top: 1.5rem;
  font-size: 1.02rem;
}
.contact-block a { color: var(--acid); }
.contact-block .phone {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-decoration: none;
  display: inline-block;
}
.contact-block .phone:hover { color: var(--acid); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 0.85rem 1.5rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--mute);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.site-footer .demo {
  font-family: var(--stencil);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@media (max-width: 860px) {
  .stage { grid-template-columns: 1fr; min-height: calc(100vh - 4.5rem); }
  .mural-wall {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 26%, rgba(0,0,0,.35) 42%, #000 56%);
    mask-image: linear-gradient(180deg, transparent 0%, transparent 26%, rgba(0,0,0,.35) 42%, #000 56%);
  }
  .nav { position: static; transform: none; left: auto; top: auto; width: 100%; justify-content: center; padding-top: 0.35rem; }
  .site-header { flex-wrap: wrap; justify-content: center; }
  .brand { width: 100%; text-align: center; }
  .rack { grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; padding: 0.5rem 0 1.5rem; }
  .look,
  .look.flip {
    grid-template-columns: 1fr;
    padding: 2.1rem 1rem 2.4rem;
  }
  .look.flip .look-mural { order: -1; }
  .look-sheet { margin: 0.2rem 0.4rem 0; }
  .look-mural svg { width: 100%; }
  .about-grid, .book-grid { grid-template-columns: 1fr; }
  .swatch { height: 120px; position: relative; }
}

@media (max-width: 520px) {
  .drip-type { font-size: clamp(4.2rem, 28vw, 7rem); }
  .site-header { flex-direction: column; align-items: flex-start; }
  .look-rack a { padding: 0.8rem 0.9rem 0.7rem; font-size: 0.82rem; }
}

@media (prefers-reduced-motion: reduce) {
  .rack a { animation: none; }
  html { scroll-behavior: auto; }
  .letter {
    animation: none;
    clip-path: none;
  }
  .mist {
    animation: none;
    opacity: var(--mist-op);
  }
  .overspray {
    animation: none;
    opacity: 1;
  }
  .burst, .spray-enter { display: none; }
  .btn:hover { animation: none; }
  #spray-layer { display: none; }
  .look-mural,
  .look-no,
  .chip { animation: none !important; }
  .look.await-paint .look-mural,
  .look.in-view .look-mural,
  .look.await-paint .look-no,
  .look.in-view .look-no { clip-path: none; }
  .look.await-paint .chip,
  .look.in-view .chip { opacity: 1; transform: none; }
  /* mural.js paints the finished wall in one pass; keep the canvas */
}
