/* ============================================================
   itisntdan.com | workshop noir
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-2: #101012;
  --panel: #141416;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --ink: #e8e6e1;
  --ink-dim: #9a9894;
  --red: #e11e24;
  --red-deep: #8f1014;
  --bronze: #c08a4f;
  --gold: #d9a441;
  --teal: #3ec6b4;
  --violet: #a06bff;
  --orange: #e07b39;
  --green: #6fbf5e;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --disp: "Bespoke Stencil", Impact, sans-serif;
  --body: "Switzer", -apple-system, "Segoe UI", sans-serif;
  --rad: 10px;
  --rad-sm: 6px;
  --gutter: clamp(20px, 5vw, 72px);
  /* boxed layout: content column caps at --content, backgrounds stay full-bleed.
     switch to full width with <html data-layout="full"> */
  --content: 1560px;
  --edge: max(var(--gutter), calc((100vw - var(--content)) / 2));
}
html[data-layout="full"] { --content: 100vw; }

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

/* NOTE: no CSS scroll-behavior:smooth here — it breaks GSAP ScrollTrigger pinning
   (refresh measures mid-animation and corrupts pin positions, leaving huge blank
   scroll gaps around the bench scrub). Smooth anchor scrolling is done in main.js. */

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 100;
  background: var(--red); color: #fff; padding: 10px 16px;
  border-radius: var(--rad-sm); text-decoration: none;
  font-family: var(--mono); font-size: 12px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* selection */
::selection { background: var(--red); color: #fff; }

/* ============ default inline links (body copy, site-wide) ============
   Components that style their own anchors (nav, buttons, cards) override this.
   Uses var(--red) so links auto-match each subpage's accent theme. */
p a, li a, dd a, figcaption a {
  color: var(--red);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(225, 30, 36, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  margin-inline: 0.09em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
p a:hover, li a:hover, dd a:hover, figcaption a:hover {
  color: var(--ink);
  text-decoration-color: var(--red);
}

/* ============ initial motion states (JS only) ============ */
.js [data-reveal],
.js [data-stagger] > * { opacity: 0; transform: translateY(28px); }
.js.no-motion [data-reveal],
.js.no-motion [data-stagger] > * { opacity: 1; transform: none; }

/* ============ progress bar ============ */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 60; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--red-deep), var(--red));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ============ header ============ */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--edge);
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
.site-head.is-solid {
  background: rgba(11, 11, 12, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); text-decoration: none;
  font-family: var(--mono); font-weight: 700;
  font-size: 15px; letter-spacing: 0.22em;
}
.brand img { width: 34px; height: auto; }

.site-nav { display: flex; gap: clamp(14px, 2.2vw, 30px); }
.site-nav a {
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 2px; position: relative;
  transition: color 0.25s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--red);
  transition: right 0.3s cubic-bezier(0.6, 0, 0.2, 1);
}
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.is-active::after { right: 0; }

.head-cta { display: flex; align-items: center; gap: 14px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border-radius: var(--rad-sm);
  padding: 13px 22px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn-solid {
  background: var(--red); color: #fff; border: 1px solid var(--red);
}
.btn-solid:hover {
  background: #f22b31; box-shadow: 0 6px 30px rgba(225, 30, 36, 0.35);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.28); }
.btn-line {
  background: transparent; color: var(--ink);
  border: 1px solid var(--red);
  padding: 10px 18px;
}
.btn-line:hover { background: rgba(225, 30, 36, 0.12); }
.btn .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2.2s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
.no-motion .btn .dot { animation: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 36px; padding: 8px;
  flex-direction: column; justify-content: center; gap: 7px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(11, 11, 12, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-nav a {
  color: var(--ink); text-decoration: none;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(30px, 8vw, 44px); text-transform: uppercase;
  padding: 6px 20px;
}
.mobile-nav a:hover, .mobile-nav .mn-contact { color: var(--red); }

/* ============ hero ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 104px var(--edge) 78px;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 85% 30%, rgba(225, 30, 36, 0.13), transparent 65%),
    radial-gradient(800px 500px at 10% 90%, rgba(225, 30, 36, 0.05), transparent 60%),
    var(--bg);
}
.hero-embers {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-art {
  position: absolute; inset: 0; z-index: 0;
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%;
}
/* extra hero frames stack over the base image; JS crossfades them */
.hero-art img:not(:first-child) {
  position: absolute; inset: 0;
  opacity: 0;
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.9) 6%, rgba(11, 11, 12, 0.55) 34%, rgba(11, 11, 12, 0.05) 62%, rgba(11, 11, 12, 0.4) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 24%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.7) 0%, transparent 20%);
}

.hero-rail {
  position: absolute; left: calc(var(--gutter) * 0.35); top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  color: var(--ink-dim);
}
.rail-index b { color: var(--red); font-weight: 600; }
.rail-line { width: 1px; height: 110px; background: linear-gradient(var(--red), transparent); }
.rail-word { writing-mode: vertical-rl; }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 720px;
  margin-left: clamp(28px, 4vw, 64px);
}
.eyebrow {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 26px;
}
.eyebrow i { color: var(--red); font-style: normal; }

.hero-title {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(42px, 6.5vw, 88px);
  line-height: 0.98; text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #dcdad4;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.65);
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--red); }

.hero-copy {
  max-width: 400px; color: var(--ink-dim);
  font-size: 15.5px; margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 38px; }

.hero-chips {
  list-style: none; display: flex; gap: clamp(20px, 3vw, 42px);
}
.hero-chips li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); line-height: 1.5;
}
.hero-chips svg {
  width: 26px; height: 26px; flex: none;
  fill: none; stroke: var(--red); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.hero-mark {
  position: absolute; right: calc(var(--gutter) * 0.6); top: 50%;
  transform: translateY(-50%);
  z-index: 3; text-align: center;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.26em; color: var(--ink-dim);
  line-height: 1.7;
}
.hero-mark img {
  width: 86px; height: auto; margin: 0 auto 14px;
  filter: drop-shadow(0 0 22px rgba(225, 30, 36, 0.45));
}

.hero-scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
}
.hero-scrollcue:hover { color: var(--ink); }
.mouse {
  width: 18px; height: 28px;
  border: 1.5px solid var(--ink-dim); border-radius: 10px;
  position: relative;
}
.mouse::after {
  content: ""; position: absolute; left: 50%; top: 6px;
  width: 3px; height: 6px; margin-left: -1.5px;
  border-radius: 2px; background: var(--red);
  animation: wheel 1.8s infinite;
}
@keyframes wheel { 60% { transform: translateY(9px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }
.no-motion .mouse::after { animation: none; }

/* ============ sections shared ============ */
section { position: relative; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(30px, 4vw, 54px);
}
.section-head h2 {
  font-family: var(--mono); font-weight: 600;
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.24em; text-transform: uppercase;
}
.slash { color: var(--red); margin-right: 10px; }
.head-link {
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.head-link:hover { color: var(--red); border-color: var(--red); }

/* pointer-glow cards */
[data-glow] { position: relative; overflow: hidden; }
.proj-link { position: absolute; inset: 0; z-index: 3; }
[data-glow]::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(225, 30, 36, 0.13), transparent 60%);
  pointer-events: none;
}
[data-glow]:hover::before { opacity: 1; }

/* ============ disciplines ============ */
.disciplines {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.disciplines ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--content);
  margin: 0 auto;
}
.disc {
  padding: clamp(24px, 2.6vw, 40px) clamp(16px, 1.8vw, 28px);
  border-left: 1px solid var(--line-soft);
  text-align: center;
}
.disc:first-child { border-left: 0; }
.disc svg {
  width: 40px; height: 40px; margin: 0 auto 16px;
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 12px currentColor);
}
.disc h3 {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.disc p { font-size: 12.5px; color: var(--ink-dim); line-height: 1.5; }
.disc-red    { color: var(--red); }    .disc-red svg    { stroke: var(--red); }
.disc-gold   { color: var(--gold); }   .disc-gold svg   { stroke: var(--gold); }
.disc-teal   { color: var(--teal); }   .disc-teal svg   { stroke: var(--teal); }
.disc-violet { color: var(--violet); } .disc-violet svg { stroke: var(--violet); }
.disc-orange { color: var(--orange); } .disc-orange svg { stroke: var(--orange); }
.disc-green  { color: var(--green); }  .disc-green svg  { stroke: var(--green); }
.disc h3 { color: currentColor; }
.disc-link { color: inherit; text-decoration: none; display: block; }
.disc-more {
  display: block; margin-top: 6px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: currentColor; opacity: 0;
  transition: opacity 0.3s;
}
.disc:hover .disc-more { opacity: 1; }

/* ============ projects ============ */
.projects { padding: clamp(70px, 9vw, 130px) var(--edge); }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proj {
  grid-column: span 1;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--rad);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s;
}
.proj:hover { border-color: rgba(225, 30, 36, 0.4); }
.proj-wide { grid-column: span 2; grid-row: span 1; }
.proj figure { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; }
.proj-wide figure { aspect-ratio: auto; position: absolute; inset: 0; }
.proj-wide { min-height: 380px; display: flex; align-items: flex-end; }
.proj figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.5s;
  filter: saturate(0.92);
}
.proj:hover figure img { transform: scale(1.05); filter: saturate(1.05); }
.proj-wide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11, 11, 12, 0.92) 8%, transparent 55%);
}
.proj-meta { position: relative; z-index: 2; padding: 20px 20px 22px; }
.tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.proj h3 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(18px, 1.9vw, 26px);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 8px;
}
.proj p { font-size: 13px; color: var(--ink-dim); max-width: 420px; }
.proj-arrow {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--red); border-radius: var(--rad-sm);
  color: var(--red); font-size: 15px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.proj:hover .proj-arrow { background: var(--red); color: #fff; transform: translate(2px, -2px); }

/* ============ bench (scrub) ============ */
.bench { background: #000; }
.bench-stage {
  position: relative; height: 100svh; overflow: hidden;
  display: flex; align-items: flex-end;
}
.bench-poster, .bench-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.bench-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.88) 4%, transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, transparent 25%);
}
.bench-hud {
  position: absolute; top: 84px; left: var(--edge); right: var(--edge);
  display: flex; align-items: center; gap: 18px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.26em; color: var(--ink-dim);
}
.hud-bar {
  flex: 1; max-width: 300px; height: 2px;
  background: rgba(255, 255, 255, 0.14);
}
.hud-bar b {
  display: block; height: 100%; width: 100%;
  background: var(--red);
  transform: scaleX(0); transform-origin: 0 50%;
}
.bench-beats {
  position: relative; width: 100%;
  padding: 0 var(--edge) clamp(60px, 9vh, 110px);
}
.beat { position: absolute; bottom: clamp(60px, 9vh, 110px); left: var(--edge); right: var(--edge); }
.js .beat { opacity: 0; visibility: hidden; }
.beat h3 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(26px, 4.4vw, 54px);
  line-height: 1.04; text-transform: uppercase;
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}
.beat .tag { font-size: 11px; margin-bottom: 14px; }
/* no-JS / reduced-motion fallback: beats stack statically */
html:not(.js) .bench-stage { height: auto; min-height: 70vh; padding-top: 40vh; }
html:not(.js) .beat { position: static; margin-bottom: 40px; }
html:not(.js) .bench-canvas { display: none; }
.no-motion .beat { position: static; margin-bottom: 40px; opacity: 1 !important; visibility: visible !important; }
.no-motion .bench-stage { height: auto; padding-top: 34vh; }
.no-motion .bench-canvas { display: none; }

/* ============ anatomy (evidence board) ============ */
.anatomy-stage {
  position: relative; height: 100svh; overflow: hidden;
  background: #000;
}
.anatomy-board { position: absolute; inset: 0; }
/* each stage is a fixed two-column grid: big anchor left, evidence rail right.
   --ev-gap doubles as the grid gutter and the connector line length so the
   lines always run exactly from the rail to the anchor's edge. */
.stage-group {
  --ev-gap: clamp(48px, 6vw, 110px);
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  column-gap: var(--ev-gap);
  padding: clamp(120px, 15vh, 150px) var(--edge) clamp(230px, 32vh, 310px);
}
.js .stage-group { opacity: 0; visibility: hidden; }
.anatomy .anchor {
  position: relative; margin: 0;
  width: 100%; height: 100%; min-height: 0;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.anatomy .anchor img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.92);
}
.ev-stack {
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  min-width: 0; min-height: 0;
}
.evidence {
  position: relative; margin: 0; width: 100%;
  padding: 8px 8px 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.evidence img {
  display: block; width: 100%;
  height: clamp(110px, 17vh, 200px); object-fit: cover;
  filter: saturate(0.92);
}
.ev-label {
  display: block; margin-top: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.ev-note {
  padding: 14px 18px 16px;
  font-family: var(--mono); font-size: 12px;
  line-height: 1.7; color: var(--ink-dim);
}
.ev-line {
  position: absolute; top: 50%; right: 100%;
  width: var(--ev-gap); height: 1px;
  background: var(--red); opacity: 0.7;
  transform-origin: 0 50%;
}
.anatomy-beat {
  position: absolute;
  left: var(--edge); right: var(--edge);
  bottom: clamp(60px, 9vh, 110px);
}
.anatomy-beat .tag { text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9); }
/* HUD "laser cut" rail: fill burns across three notched segments */
.cut-name { min-width: 20ch; }
.cut-rail {
  position: relative; flex: 1; max-width: 360px; height: 2px;
  background: rgba(255, 255, 255, 0.14);
}
.cut-fill {
  display: block; position: relative;
  height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(225, 30, 36, 0.35), var(--red));
}
.cut-spark {
  position: absolute; right: -2px; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  transform: translateY(-50%);
  background: #ff8a70;
  box-shadow:
    0 0 8px 2px rgba(225, 30, 36, 0.9),
    0 0 20px 7px rgba(225, 30, 36, 0.35);
}
.cut-tick {
  position: absolute; top: -3px;
  width: 1px; height: 8px;
  background: rgba(255, 255, 255, 0.25);
}
.cut-num {
  position: absolute; top: -17px;
  transform: translateX(3px);
  font-size: 9px; letter-spacing: 0.18em;
  color: var(--ink-dim);
  transition: color 0.3s;
}
.cut-num.is-on { color: var(--red); }
.anatomy-closer {
  position: absolute; inset: 0; z-index: 3;
  display: grid; place-items: center;
  text-align: center; padding: 0 var(--edge);
}
.js .anatomy-closer { opacity: 0; visibility: hidden; }
.anatomy-closer h3 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(34px, 6vw, 84px);
  line-height: 1.04; text-transform: uppercase;
}
.anatomy-closer em { font-style: normal; color: var(--red); }
@media (max-width: 900px) {
  .stage-group {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    row-gap: 16px;
    padding-top: 104px;
  }
  .ev-stack { flex-direction: row; gap: 14px; }
  .evidence { flex: 1 1 0; min-width: 0; }
  .evidence img { height: clamp(64px, 9vh, 110px); }
  .ev-label { font-size: 9px; letter-spacing: 0.16em; }
  .ev-line { display: none; }
  .ev-note { display: none; }
}
/* no-JS / reduced-motion fallback: stages stack statically */
html:not(.js) .anatomy-stage, .no-motion .anatomy-stage { height: auto; overflow: visible; }
html:not(.js) .stage-group, .no-motion .stage-group,
html:not(.js) .anatomy-beat, .no-motion .anatomy-beat,
html:not(.js) .anatomy-closer, .no-motion .anatomy-closer {
  position: static;
  opacity: 1 !important; visibility: visible !important;
}
html:not(.js) .anatomy-board, .no-motion .anatomy-board { position: static; padding: 100px 0 40px; }
html:not(.js) .stage-group, .no-motion .stage-group {
  margin-bottom: 56px;
  padding-top: 0; padding-bottom: 0;
}
html:not(.js) .anatomy .anchor, .no-motion .anatomy .anchor { height: auto; }
html:not(.js) .anatomy .anchor img, .no-motion .anatomy .anchor img { height: auto; }
html:not(.js) .ev-stack, .no-motion .ev-stack { justify-content: flex-start; }
html:not(.js) .ev-line, .no-motion .ev-line { display: none; }
html:not(.js) .anatomy-beat, .no-motion .anatomy-beat { grid-column: 1 / -1; margin-top: 18px; }
html:not(.js) .anatomy-closer, .no-motion .anatomy-closer { display: block; text-align: left; padding: 0 var(--edge) 40px; }
html:not(.js) .anatomy .bench-hud, .no-motion .anatomy .bench-hud { display: none; }

/* ============ photography ============ */
.photography { padding: clamp(70px, 9vw, 130px) 0 clamp(60px, 7vw, 100px); }
.photography .section-head { padding: 0 var(--edge); }
.photo-lede {
  max-width: 520px; color: var(--ink-dim);
  margin-left: var(--edge); margin-right: var(--edge);
  margin-bottom: clamp(30px, 4vw, 50px);
  font-size: 16px;
}
.marquee { overflow: hidden; margin-bottom: 16px; }
.marquee-track {
  display: flex; gap: 16px; width: max-content;
  animation: slide 46s linear infinite;
}
.marquee-reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.no-motion .marquee-track { animation: none; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee img {
  width: clamp(200px, 24vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--rad-sm);
  border: 1px solid var(--line-soft);
  filter: saturate(0.95);
  transition: filter 0.3s, transform 0.3s;
}
.marquee img:hover { filter: saturate(1.1); transform: translateY(-4px); }

/* ============ about ============ */
.about {
  padding: clamp(70px, 9vw, 130px) var(--edge);
  background:
    radial-gradient(700px 500px at 12% 40%, rgba(225, 30, 36, 0.09), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.about-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.about-fig { position: relative; }
.about-halo {
  position: absolute; inset: 6% 8% auto; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 18, 23, 0.9), #560a0d 62%, transparent 72%);
  filter: blur(2px);
}
.about-fig img { position: relative; z-index: 1; }
.about-sig {
  position: absolute; z-index: 2; bottom: -6px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  font-family: var(--disp); font-weight: 500; font-size: 30px;
  color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.about-copy h2 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.02; text-transform: uppercase;
  margin-bottom: 24px;
}
.about-copy h2 em { font-style: normal; color: var(--red); }
.about-copy p { max-width: 480px; color: var(--ink-dim); margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.about-hint {
  font-size: 14px;
  color: var(--bronze) !important;
  border-left: 2px solid rgba(192, 138, 79, 0.45);
  padding-left: 14px;
}
.about-quote {
  position: relative;
  max-width: 480px;
  margin-top: 26px;
  padding-left: 36px;
}
.about-quote::before {
  content: "\201C";
  position: absolute; left: 0; top: -4px;
  font-family: var(--disp); font-weight: 700;
  font-size: 46px; line-height: 1;
  color: var(--red);
}
.about-quote p {
  font-size: 19px; font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 6px;
}
.about-quote cite {
  font-style: normal;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
}
.numbers {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: clamp(20px, 3vw, 44px);
}
.numbers > div {
  border: 1px solid var(--line-soft);
  border-radius: var(--rad);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px 24px;
}
.numbers dt {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(30px, 3.4vw, 46px);
  color: var(--bronze); line-height: 1;
}
.numbers .infin { color: var(--red); }
.numbers dd {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); margin-top: 8px;
}
.about-watermark {
  position: absolute; right: -60px; bottom: -80px;
  width: min(46vw, 520px); opacity: 0.05;
  pointer-events: none;
}

/* ============ journal ============ */
.journal { padding: clamp(70px, 9vw, 130px) var(--edge); }
.journal-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.entry {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--rad);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.entry:hover { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-4px); }
.entry figure { aspect-ratio: 16 / 11; overflow: hidden; }
.entry img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.55) contrast(1.02);
  transition: filter 0.4s, transform 0.6s;
}
.entry:hover img { filter: saturate(1); transform: scale(1.04); }
.entry time {
  display: block; padding: 14px 16px 0;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.entry h3 {
  padding: 6px 16px 18px;
  font-family: var(--body); font-weight: 600; font-size: 14.5px;
  line-height: 1.35;
}

/* ============ faq ============ */
.faq {
  padding: clamp(70px, 9vw, 120px) var(--edge);
}
.faq .section-head, .faq-list {
  max-width: 980px;
  margin-left: auto; margin-right: auto;
}
.faq-list details {
  border-bottom: 1px solid var(--line-soft);
}
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--body); font-weight: 600; font-size: 16.5px;
  transition: color 0.25s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--red); }
.faq-list summary::after {
  content: "+"; flex: none;
  font-family: var(--mono); font-size: 20px; color: var(--red);
  transition: transform 0.3s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 4px 24px; max-width: 760px;
  color: var(--ink-dim); font-size: 15px;
}

/* ============ contact ============ */
.contact {
  padding: clamp(80px, 10vw, 150px) var(--edge);
  background:
    radial-gradient(800px 520px at 80% 20%, rgba(225, 30, 36, 0.1), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1; text-transform: uppercase;
  margin-bottom: 22px;
}
.contact-copy h2 em { font-style: normal; color: var(--red); }
.contact-copy p { color: var(--ink-dim); max-width: 380px; margin-bottom: 34px; }
.contact-wolf { filter: drop-shadow(0 0 26px rgba(225, 30, 36, 0.4)); }

.contact-form { display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label span {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.contact-form input, .contact-form textarea,
.newsletter input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--rad-sm);
  color: var(--ink);
  font-family: var(--body); font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.25s, background 0.25s;
}
.contact-form input:focus, .contact-form textarea:focus,
.newsletter input:focus {
  outline: none; border-color: var(--red);
  background: rgba(225, 30, 36, 0.045);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { justify-self: start; }
.form-status {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.08em; color: var(--bronze);
  min-height: 18px;
}
.form-status.is-error { color: #ff6b6e; }

/* ============ footer ============ */
.site-foot {
  position: relative;
  border-top: 1px solid var(--line-soft);
  background: #070708;
  padding: clamp(60px, 8vw, 100px) var(--edge) clamp(110px, 14vw, 170px);
  overflow: hidden;
}
.foot-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 56px);
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
}
.foot-brandmark {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.foot-wordmark {
  font-family: var(--disp); font-weight: 700;
  font-size: 22px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.foot-desc {
  font-size: 13.5px; line-height: 1.6;
  color: var(--ink-dim);
  max-width: 280px;
  margin: 14px 0 20px;
}
.foot-head {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; margin: 0; padding: 0; }
.foot-col a {
  color: var(--ink-dim); text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}
.foot-col a:hover { color: var(--ink); }
.foot-nl .foot-desc { margin-top: 0; }
.newsletter { display: grid; gap: 10px; max-width: 340px; }
.nl-row { display: flex; gap: 10px; }
.newsletter input { width: auto; flex: 1; min-width: 0; }
.nl-btn {
  flex: none;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  border: 1px solid var(--red);
  border-radius: var(--rad-sm);
  cursor: pointer;
  transition: filter 0.25s, box-shadow 0.25s, transform 0.25s;
}
.nl-btn:hover { filter: brightness(1.12); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4); transform: translateY(-1px); }
.nl-btn svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.lc-page .nl-btn { color: #170e06; }
.foot-word {
  position: absolute; left: 50%; bottom: 0; z-index: 0;
  transform: translate(-50%, 30%);
  margin: 0;
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(120px, 21vw, 280px);
  line-height: 1; text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: rgba(232, 230, 225, 0.04);
  pointer-events: none;
  user-select: none;
}
.section-cta {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex; justify-content: center;
}
.foot-social { display: flex; gap: 14px; }
.foot-social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--rad-sm);
  color: var(--ink-dim);
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.foot-social a:hover { color: var(--red); border-color: var(--red); transform: translateY(-3px); }
.foot-social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.foot-base {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--ink-dim);
}
.to-top { color: var(--ink-dim); text-decoration: none; transition: color 0.25s; }
.to-top:hover { color: var(--red); }

/* ============ responsive ============ */
@media (max-width: 1180px) {
  .disciplines ul { grid-template-columns: repeat(3, 1fr); }
  .disc:nth-child(4) { border-left: 0; }
  .disc { border-top: 1px solid var(--line-soft); }
  .disc:nth-child(-n+3) { border-top: 0; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .journal-row { grid-template-columns: repeat(3, 1fr); }
  .hero-mark { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: span 2; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-rail { display: none; }
  .hero-inner { margin-left: 0; }
  .hero-art { width: 100vw; opacity: 0.5; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 11, 12, 0.82) 0%, rgba(11, 11, 12, 0.55) 55%, var(--bg) 100%);
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-fig { max-width: 300px; margin: 0 auto; }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-wide { grid-column: span 1; min-height: 320px; }
  .journal-row { grid-template-columns: 1fr 1fr; }
  .journal-row .entry:last-child { grid-column: span 2; }
  .disciplines ul { grid-template-columns: 1fr 1fr; }
  .disc { border-left: 1px solid var(--line-soft); }
  .disc:nth-child(odd) { border-left: 0; }
  .disc:nth-child(-n+3) { border-top: 1px solid var(--line-soft); }
  .disc:nth-child(-n+2) { border-top: 0; }
  .hero-chips { flex-wrap: wrap; gap: 16px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { grid-column: auto; }
  .foot-base { flex-direction: column; gap: 8px; }
  .foot-word { font-size: clamp(90px, 26vw, 140px); }
}

/* ============================================================
   Sasquatch Wax page | moonlight and amber
   ============================================================ */
.wax-page {
  --red: #f04e23;
  --red-deep: #8a2410;
}
.wax-page ::selection { background: #f04e23; color: #fff; }
.wax-page .btn-solid { color: #fff; }
.wax-page .btn-solid:hover { background: #ff6234; box-shadow: 0 6px 30px rgba(240, 78, 35, 0.4); }
.wax-page .brand img { filter: none; }

.wax-hero {
  background:
    radial-gradient(1000px 600px at 60% 30%, rgba(80, 110, 220, 0.12), transparent 65%),
    radial-gradient(700px 450px at 50% 85%, rgba(240, 78, 35, 0.14), transparent 60%),
    var(--bg);
}
.wax-hero .hero-art img { object-position: 62% 40%; }
.wax-hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.88) 8%, rgba(11, 11, 12, 0.5) 36%, rgba(11, 11, 12, 0.04) 64%, rgba(11, 11, 12, 0.35) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%),
    linear-gradient(180deg, rgba(11, 11, 12, 0.7) 0%, transparent 20%);
}
.wax-hero .hero-chips svg { stroke: var(--red); }

.wax-hero-tin {
  position: absolute; z-index: 3;
  right: clamp(30px, 9vw, 160px); bottom: -60px;
  width: clamp(150px, 16vw, 240px);
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.65));
}
.wax-hero-tin img { width: 100%; height: auto; }

/* ticker */
.wax-ticker {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 18px 0;
  overflow: hidden;
}
.wax-ticker .marquee { margin-bottom: 0; }
.wax-ticker-track {
  align-items: center; gap: 28px;
  animation-duration: 30s;
}
.wax-ticker-track span {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-dim); white-space: nowrap;
}
.wax-ticker-track i {
  color: var(--red); font-style: normal; font-size: 13px;
}

/* blend */
.wax-blend { padding: clamp(70px, 9vw, 130px) var(--edge); }
.blend-grid {
  display: grid; grid-template-columns: minmax(240px, 400px) 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.blend-fig img { margin: 0 auto; filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.6)); }
.blend-copy > p {
  max-width: 560px; font-size: 17px; color: var(--ink);
  margin-bottom: clamp(26px, 3vw, 40px);
}
.blend-cards { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.blend-cards li {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  background: var(--panel); padding: 20px 18px;
}
.blend-cards svg {
  width: 30px; height: 30px; margin-bottom: 14px;
  fill: none; stroke: var(--red); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.blend-cards h3 {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.blend-cards p { font-size: 13px; color: var(--ink-dim); }

/* batch photos */
.wax-batch { padding: clamp(70px, 9vw, 120px) var(--edge); background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.batch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.batch-grid figure {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  overflow: hidden; background: var(--panel);
}
.batch-grid img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.6s, filter 0.4s;
}
.batch-grid figure:hover img { transform: scale(1.04); filter: saturate(1.05); }
.batch-grid figcaption {
  padding: 12px 16px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}

.batch-lede { margin-left: 0; margin-right: 0; margin-top: -10px; }

/* how to */
.wax-howto { padding: clamp(70px, 9vw, 120px) var(--edge); }
.howto-steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; counter-reset: step;
}
.howto-steps li {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  background: var(--panel); padding: 28px 24px 26px;
  position: relative;
}
.step-num {
  display: block;
  font-family: var(--disp); font-weight: 700;
  font-size: 40px; line-height: 1;
  color: var(--red); opacity: 0.85;
  margin-bottom: 14px;
}
.howto-steps h3 {
  font-family: var(--disp); font-weight: 700; font-size: 22px;
  text-transform: uppercase; margin-bottom: 8px;
}
.howto-steps p { font-size: 14px; color: var(--ink-dim); }

/* cta */
.wax-cta {
  padding: clamp(90px, 12vw, 170px) var(--edge);
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 20%, rgba(240, 78, 35, 0.13), transparent 65%),
    var(--bg);
}
.wax-cta h2 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.98; text-transform: uppercase;
  margin-bottom: 22px;
}
.wax-cta h2 em { font-style: normal; color: var(--red); }
.wax-cta > p { color: var(--ink-dim); margin-bottom: 36px; }
.wax-cta-actions { justify-content: center; }

@media (max-width: 1180px) {
  .batch-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .blend-grid { grid-template-columns: 1fr; }
  .blend-fig { max-width: 300px; margin: 0 auto; }
  .blend-cards { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .wax-hero-tin { display: none; }
}
@media (max-width: 640px) {
  .batch-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Layer Cake page | walnut and cork
   ============================================================ */
.lc-page {
  --red: #e07b39;
  --red-deep: #8a4416;
}
.lc-page ::selection { background: #e07b39; color: #0b0b0c; }
.lc-page .btn-solid { color: #170e06; }
.lc-page .btn-solid:hover { background: #ef9050; box-shadow: 0 6px 30px rgba(224, 123, 57, 0.35); }

.lc-hero {
  background:
    radial-gradient(1000px 600px at 70% 40%, rgba(224, 123, 57, 0.1), transparent 65%),
    radial-gradient(700px 450px at 15% 85%, rgba(110, 160, 80, 0.06), transparent 60%),
    var(--bg);
}
.lc-hero .hero-art img { object-position: 70% 45%; }
.lc-hero .hero-chips svg { stroke: var(--red); }

.lc-hero-cake {
  position: absolute; z-index: 3;
  right: clamp(30px, 8vw, 140px); bottom: 40px;
  width: clamp(90px, 10vw, 150px);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
  opacity: 0.95;
}

/* what's inside */
.lc-inside { padding: clamp(70px, 9vw, 130px) var(--edge); }
.inside-grid {
  display: grid; grid-template-columns: minmax(300px, 1.1fr) 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.inside-fig {
  position: sticky; top: 90px;
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  overflow: hidden;
}
.inside-fig img { width: 100%; height: auto; }
.inside-list { list-style: none; display: grid; gap: 14px; }
.inside-list li {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  background: var(--panel);
  padding: 22px 24px;
  display: grid; grid-template-columns: 64px 1fr; gap: 4px 18px;
}
.inside-list .step-num { font-size: 34px; grid-row: span 2; align-self: center; }
.inside-list h3 {
  font-family: var(--disp); font-weight: 700; font-size: 19px;
  text-transform: uppercase;
}
.inside-list p { font-size: 13.5px; color: var(--ink-dim); }

/* menu (shop) */
.lc-menu { padding: clamp(70px, 9vw, 130px) var(--edge); background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.menu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.menu-card {
  background: var(--panel);
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s;
  display: flex; flex-direction: column;
}
.menu-card:hover { border-color: rgba(224, 123, 57, 0.45); }
.menu-card figure { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; }
.menu-card figure img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.5s;
}
.menu-card:hover figure img { transform: scale(1.05); filter: saturate(1.05); }
.soldout-stamp {
  position: absolute; top: 14px; right: -34px;
  transform: rotate(35deg);
  background: rgba(11, 11, 12, 0.88);
  border-top: 1px solid var(--red); border-bottom: 1px solid var(--red);
  color: var(--red);
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  padding: 6px 40px;
}
.stamp-invite { color: var(--ink); border-color: rgba(255,255,255,0.35); }
.menu-meta { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.menu-meta .tag { color: var(--red); }
.menu-meta h3 {
  font-family: var(--disp); font-weight: 700; font-size: 21px;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 8px;
}
.menu-meta > p { font-size: 13px; color: var(--ink-dim); margin-bottom: 18px; }
.menu-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-dim); line-height: 1.5;
}
.price b { display: block; color: var(--ink); font-size: 13px; }
.btn-sm { padding: 10px 16px; font-size: 11px; }
.menu-note {
  margin-top: clamp(24px, 3vw, 40px);
  max-width: 620px;
  font-size: 14px; color: var(--ink-dim);
  border-left: 2px solid rgba(224, 123, 57, 0.5);
  padding-left: 16px;
}

/* lifestyle grid reuses batch-grid, 3-up */
.lc-life-grid { grid-template-columns: repeat(3, 1fr); }
.lc-life-grid img { aspect-ratio: 4 / 4.6; }

/* cta */
.lc-cta { position: relative; }
.lc-cta-cake { margin: 0 auto 18px; width: 110px; }

/* ============ modal ============ */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 5, 6, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  width: min(480px, 94vw);
  background: rgba(19, 19, 21, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 40px 34px 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  overflow: visible;
}
.modal-rings {
  position: absolute; inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.modal-rings::before, .modal-rings::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.modal-rings::before { width: 340px; height: 340px; top: -170px; left: -120px; }
.modal-rings::after { width: 260px; height: 260px; bottom: -130px; right: -90px; border-color: rgba(255, 255, 255, 0.07); }
.modal-dialog [data-stage-1], .modal-dialog [data-stage-2] { position: relative; z-index: 1; }
.modal-cake {
  position: absolute; top: -54px; right: 26px;
  width: 86px; z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.6));
}
.modal-x {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  background: none; border: 0; cursor: pointer;
  color: var(--ink-dim); font-size: 26px; line-height: 1;
  padding: 6px;
  transition: color 0.25s;
}
.modal-x:hover { color: var(--ink); }
.modal-dialog .tag { color: var(--red); letter-spacing: 0.26em; }
.modal-form input { background: rgba(255, 255, 255, 0.05); }
.modal-dialog h3 {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(26px, 4vw, 34px);
  text-transform: uppercase; line-height: 1;
  margin: 8px 0 12px;
}
.modal-dialog > div > p, .modal-dialog [data-stage-1] > p, .modal-dialog [data-stage-2] > p {
  font-size: 14.5px; color: var(--ink-dim); margin-bottom: 22px;
}
.modal-form { gap: 14px; }
body.modal-open { overflow: hidden; }

@media (max-width: 1180px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .inside-grid { grid-template-columns: 1fr; }
  .inside-fig { position: static; }
  .lc-life-grid { grid-template-columns: 1fr; }
  .lc-hero-cake { display: none; }
}
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Showcase Trays page | resin teal
   ============================================================ */
.sc-page {
  --red: #ff3b5c;
  --red-deep: #7d1027;
}
.sc-page ::selection { background: #ff3b5c; color: #fff; }
.sc-page .btn-solid { color: #fff; }
.sc-page .btn-solid:hover { background: #ff5573; box-shadow: 0 6px 30px rgba(255, 59, 92, 0.4); }

.sc-hero {
  background:
    radial-gradient(1000px 600px at 72% 40%, rgba(255, 59, 92, 0.1), transparent 65%),
    radial-gradient(700px 450px at 12% 88%, rgba(90, 120, 220, 0.06), transparent 60%),
    var(--bg);
}
.sc-hero .hero-art img { object-position: 74% 45%; }
.sc-hero .hero-chips svg { stroke: var(--red); }

/* dragon */
.sc-dragon { padding: clamp(70px, 9vw, 130px) var(--edge); }
.dragon-grid {
  display: grid; grid-template-columns: minmax(300px, 1fr) 1.15fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
.dragon-lede {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 22px;
}
.dragon-lede + p, .dragon-copy p:not(.dragon-lede) {
  color: var(--ink-dim); max-width: 520px; margin-bottom: 14px;
}
.dragon-figs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.dragon-figs figure {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  overflow: hidden; background: var(--panel);
}
.dragon-figs img {
  width: 100%; aspect-ratio: 3 / 4.4; object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.6s, filter 0.4s;
}
.dragon-figs figure:hover img { transform: scale(1.05); filter: saturate(1.08); }
.dragon-figs figcaption {
  padding: 10px 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
}
.dragon-figs figure:nth-child(2) { transform: translateY(22px); }

/* record */
.sc-record {
  padding: clamp(70px, 9vw, 130px) var(--edge);
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.record-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.record-card {
  border: 1px solid var(--line-soft); border-radius: var(--rad);
  overflow: hidden; background: var(--panel);
  transition: border-color 0.3s;
}
.record-card:hover { border-color: rgba(255, 59, 92, 0.42); }
.record-card img {
  width: 100%; aspect-ratio: 4 / 4.4; object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.6s, filter 0.4s;
}
.record-card:hover img { transform: scale(1.04); filter: saturate(1.06); }
.record-card figcaption {
  display: flex; align-items: baseline; gap: 10px;
  padding: 12px 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.record-card b { color: var(--red); font-weight: 600; }
.record-card span { color: var(--ink-dim); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.record-card i {
  font-style: normal; color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 3px; padding: 2px 7px;
}

/* order */
.sc-order-grid { grid-template-columns: minmax(300px, 440px) 1fr; align-items: center; }
.sc-order-note p {
  max-width: 560px; color: var(--ink-dim); font-size: 15px;
  border-left: 2px solid rgba(255, 59, 92, 0.55);
  padding-left: 18px; margin-bottom: 20px;
}
.sc-order-soon {
  font-family: var(--disp); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  text-transform: uppercase;
  color: var(--red) !important;
  border-left: 0 !important; padding-left: 18px;
}

@media (max-width: 1180px) {
  .record-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .dragon-grid { grid-template-columns: 1fr; }
  .dragon-figs figure:nth-child(2) { transform: none; }
  .sc-order-grid { grid-template-columns: 1fr; }
  .record-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .record-grid { grid-template-columns: 1fr; }
  .dragon-figs { grid-template-columns: 1fr; }
}

.sc-page .menu-card:hover { border-color: rgba(255, 59, 92, 0.45); }

/* ============================================================
   story sections: centered container + subtle topo texture
   ============================================================ */
.texture-topo { position: relative; }
.texture-topo::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/temp/IMG_0019.webp") center / cover no-repeat;
  opacity: 0.075;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(110% 95% at 50% 42%, #000 25%, transparent 78%);
  /* mask-image: radial-gradient(110% 95% at 50% 42%, #000 25%, transparent 78%);*/
}
.texture-topo > * { position: relative; }

/* story splits center as a unit on wide screens instead of stretching */
.about-grid,
.blend-grid,
.dragon-grid {
  max-width: 1320px;
  margin-left: auto; margin-right: auto;
}
