/* ===========================================================
   webanime — single stylesheet
   Warm paper palette, editorial serif + clean sans + mono
   =========================================================== */

:root {
  --bg:        #F7F5F0;
  --bg-warm:   #F1ECE0;
  --surface:   #FFFFFF;
  --ink:       #15110D;
  --ink-2:     #4A4339;
  --ink-3:     #8A8275;
  --line:      #E5DFD3;
  --line-2:    #D9D2C2;
  --accent:    #B33A1B;   /* vermillion / inkan seal */
  --accent-2:  #1F4FA0;   /* cobalt */

  --serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(21,17,13,.04), 0 0 0 1px rgba(21,17,13,.04);
  --shadow-md: 0 8px 24px -12px rgba(21,17,13,.18), 0 0 0 1px rgba(21,17,13,.05);

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
em { font-style: italic; }

/* fine paper texture via subtle gradient */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(179,58,27,.04), transparent 60%),
    radial-gradient(900px 500px at 110% 110%, rgba(31,79,160,.04), transparent 60%);
  z-index: 0;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(247,245,240,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  background: var(--ink); color: var(--bg);
  border-radius: 6px;
  font-family: var(--serif);
  font-size: 20px; line-height: 1;
  padding-bottom: 2px;
}
.brand-logo {
  width: 30px; height: 28px;
  display: block;
}
.brand-word {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.015em;
}
.foot-brand .brand-logo { width: 22px; height: 20px; }
.foot-brand .brand-mark { width: 22px; height: 22px; font-size: 16px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--ink-2);
  font-size: 14.5px;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.is-current { color: var(--ink); }
.nav-links a.is-current:not(.nav-cta)::after {
  transform: scaleX(1);
  background: var(--accent);
}
.nav-cta {
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 720px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta):not([href="#contact"]) { display: none; }
}

/* ---------- shared section bits ---------- */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.m-eyebrow, .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.m-eyebrow span:first-child {
  color: var(--accent);
  font-weight: 500;
}
.m-eyebrow.center { justify-content: center; }
.eyebrow-line {
  width: 28px; height: 1px; background: currentColor; opacity: .45;
}
.section-sub {
  color: var(--ink-2);
  font-size: 18px;
  max-width: 56ch;
  margin-top: 16px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: #2a2419; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* =========================================================
   HERO — full-bleed clip wall behind centered text
   ========================================================= */
/* Hero: three scrolling reel rows stack vertically and cover the entire hero */
.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.reel-row {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  min-height: 0; /* allow flex shrink */
}
.hero-reel {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0 5px;
  will-change: transform;
}
.hero-reel.reel-left-fast  { animation: reel-left  55s linear infinite; }
.hero-reel.reel-right-slow { animation: reel-right 72s linear infinite; }
.hero-reel.reel-left-slow  { animation: reel-left  88s linear infinite; }

.hero-reel .strip {
  /* Explicit width drives the size; aspect-ratio derives height */
  width: clamp(240px, 18vw, 320px);
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0c0a07;
  box-shadow: 0 6px 18px -12px rgba(21,17,13,.3);
}
.hero-reel .strip video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
@keyframes reel-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes reel-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Subtle full-hero darkening to push contrast under the glass card */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(80% 60% at 50% 50%, rgba(21,17,13,.18) 0%, rgba(21,17,13,0) 70%),
    linear-gradient(180deg, rgba(247,245,240,.18) 0%, rgba(247,245,240,0) 12%, rgba(247,245,240,0) 88%, rgba(247,245,240,.18) 100%);
}

@media (max-width: 720px) {
  .hero-reel.reel-left-fast  { animation-duration: 45s; }
  .hero-reel.reel-right-slow { animation-duration: 60s; }
  .hero-reel.reel-left-slow  { animation-duration: 70s; }
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(24px, 4vw, 64px);
  pointer-events: none;
}
.hero-card {
  background: rgba(247,245,240,.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(21,17,13,.06);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px -30px rgba(21,17,13,.35), 0 0 0 1px rgba(255,255,255,.4) inset;
  padding: clamp(36px, 5vw, 64px) clamp(32px, 5vw, 72px);
  max-width: 820px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: auto;
}
.hero-content .eyebrow {
  justify-content: center;
}
.hero-content .eyebrow-line { width: 28px; }
.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 28px 0 24px;
}
.headline em {
  color: var(--ink-2);
  display: block;
  font-style: italic;
}
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-2);
  max-width: 50ch;
  line-height: 1.5;
  margin: 0 auto;
}
.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 36px;
}

@media (max-width: 720px) {
  .hero-wall { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .hero-scrim {
    background:
      radial-gradient(80% 80% at 50% 50%,
        rgba(247,245,240,.95) 0%,
        rgba(247,245,240,.85) 50%,
        rgba(247,245,240,.7) 100%);
  }
}

/* hero clip frame — large, landscape, dominates the section */
.hero-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0c0a07;
  box-shadow: 0 24px 60px -28px rgba(21,17,13,.32), 0 0 0 1px rgba(21,17,13,.06);
}
.hero-clip {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease-in-out;
}
.hero-clip.is-active { opacity: 1; }

@media (max-width: 960px) {
  .hero-frame { aspect-ratio: 16 / 10; }
}
/* (frame-paper / frame-caption / ticker removed - hero is now just the
   clip itself with no overlay chrome) */

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.m-split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 880px) {
  .m-split { grid-template-columns: 1fr; gap: 48px; }
}
.m-text { display: flex; flex-direction: column; gap: 24px; }
.m-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  max-width: 18ch;
}
.m-body-single {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
  max-width: 58ch;
}

/* Production strip — 3 staggered cards showing range of work */
.m-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.strip-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0c0a07;
  box-shadow: 0 12px 32px -16px rgba(21,17,13,.25), 0 0 0 1px rgba(21,17,13,.05);
  transition: transform .3s ease;
}
.strip-card:hover { transform: translateY(-3px); }
.strip-card video, .strip-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.strip-card figcaption {
  position: absolute; left: 10px; bottom: 10px;
  display: flex; flex-direction: column; gap: 1px;
  padding: 6px 10px;
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
}
.sc-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.sc-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
/* Stagger the 3 cards for editorial depth */
.sc-a { grid-column: 1 / span 4; aspect-ratio: 16 / 10; transform: translateY(-12px); }
.sc-b { grid-column: 3 / span 4; aspect-ratio: 16 / 10; }
.sc-c { grid-column: 2 / span 4; aspect-ratio: 16 / 10; transform: translateY(12px); }

@media (max-width: 880px) {
  .m-strip { grid-template-columns: 1fr; gap: 14px; }
  .sc-a, .sc-b, .sc-c { grid-column: 1; transform: none; }
}

/* =========================================================
   STACK — AI tool grid
   ========================================================= */
.stack {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stack .section-head { margin-bottom: 48px; }
.stack-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 960px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .stack-grid { grid-template-columns: 1fr; } }

.stack-card {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.stack-card:hover { background: var(--surface); }
.stack-icon {
  width: 38px; height: 38px;
  color: var(--accent-2);
  display: grid; place-items: center;
}
.stack-icon svg { width: 100%; height: 100%; }
.stack-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.stack-card p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.stack-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.stack-tags li {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* =========================================================
   SCENE MOSAIC
   ========================================================= */
.scenes { padding: clamp(64px, 8vw, 120px) 0; }
.scenes .section-head { margin-bottom: 48px; }
/* Mosaic: TRUE masonry via CSS columns. Tiles flow into columns naturally,
   no gaps. Per-tile aspect-ratio variants create visual rhythm. */
.mosaic {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  column-count: 4;
  column-gap: 14px;
}
@media (max-width: 1100px) { .mosaic { column-count: 3; } }
@media (max-width: 720px)  { .mosaic { column-count: 2; } }

.tile {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

/* Aspect ratio variants — drive each tile's height in the column */
.tile.t-square    { aspect-ratio: 1 / 1; }
.tile.t-portrait  { aspect-ratio: 3 / 4; }
.tile.t-landscape { aspect-ratio: 16 / 10; }
.tile.t-cine      { aspect-ratio: 21 / 9; }
.tile.t-tall      { aspect-ratio: 9 / 14; }

.tile img, .tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.tile img, .tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .4s;
  filter: saturate(.95);
}
.tile:hover img, .tile:hover video { transform: scale(1.035); filter: saturate(1.05); }

/* Subtle theme tint — historical cuts get a warmer ring, modern cuts get a cooler ring.
   Helps the eye group them without changing the imagery itself. */
.tile[data-theme="historical"] { box-shadow: 0 1px 2px rgba(120,72,30,.06), 0 0 0 1px rgba(120,72,30,.06); }
.tile[data-theme="modern"]     { box-shadow: 0 1px 2px rgba(31,79,160,.06), 0 0 0 1px rgba(31,79,160,.10); }

.tile figcaption {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; flex-direction: column; gap: 2px;
  padding: 8px 12px;
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(6px);
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s, transform .25s;
}
/* On hover-capable devices, hide captions until interaction so the imagery breathes */
@media (hover: hover) and (pointer: fine) {
  .tile figcaption { opacity: 0; transform: translateY(6px); }
  .tile:hover figcaption { opacity: 1; transform: translateY(0); }
}
.tile .t {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.tile .ts {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =========================================================
   PIPELINE
   ========================================================= */
.pipeline { padding: clamp(96px, 12vw, 180px) 0; background: var(--bg-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pipeline .section-head { margin-bottom: 64px; }
.pipe {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 960px) { .pipe { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pipe { grid-template-columns: 1fr; } }

.step {
  background: var(--bg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: background .2s;
}
.step:hover { background: var(--surface); }

/* directional cues between stages — small chevron at the right edge of each
   card except the last in its row, suggesting flow Script → Master */
.step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: -7px;
  width: 14px; height: 14px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-2);
  border-right: 1px solid var(--line-2);
  transform: rotate(45deg);
  z-index: 2;
  pointer-events: none;
}
/* last column has no chevron */
.step:nth-child(3n)::after, .step:last-child::after { display: none; }
@media (max-width: 960px) {
  .step:nth-child(3n)::after { display: block; }
  .step:nth-child(2n)::after { display: none; }
}
@media (max-width: 600px) {
  .step::after { display: none; }
  .step:not(:last-child)::after {
    display: block;
    top: auto; right: auto;
    left: 28px; bottom: -7px;
    transform: rotate(135deg);
  }
}
.step-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.step-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.step-tools {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.step-tools span {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
}
/* Per-card proportional duration bar — accent line that scales with --days */
.step-bar {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}
.step-bar span {
  display: block;
  height: 100%;
  width: calc(var(--days, 1) / 21 * 100%);
  background: var(--accent);
  border-radius: 2px;
  min-width: 6%;
  transition: width .4s ease;
}

.step-thumb {
  margin-top: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-warm);
}
.step-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9);
}

.pipe-note {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; gap: 8px;
}
.pipe-note p {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 70ch;
}
.pipe-note p em { color: var(--accent); font-style: italic; }

/* =========================================================
   PRODUCTIONS
   ========================================================= */
.prods { padding: clamp(96px, 12vw, 160px) 0; }
.prods .section-head { margin-bottom: 56px; }
.prod-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 960px) { .prod-grid { grid-template-columns: 1fr; } }

.prod {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.prod-featured { grid-row: span 1; }
.prod-featured .prod-media { aspect-ratio: 16 / 9; }
.prod .prod-media { aspect-ratio: 4 / 3; position: relative; background: var(--bg-warm); }
.prod .prod-media video, .prod .prod-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.95);
}

.prod-meta {
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.tag {
  display: inline-block; align-self: flex-start;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--bg-warm);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.tag-live {
  color: var(--accent);
  border-color: rgba(179,58,27,.3);
  background: rgba(179,58,27,.06);
}
.tag-wip {
  color: var(--accent-2);
  border-color: rgba(31,79,160,.25);
  background: rgba(31,79,160,.06);
}

.prod h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.prod-featured h3 { font-size: 38px; }
.prod-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.prod p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.prod .btn { align-self: flex-start; margin-top: 10px; }

/* =========================================================
   CONTACT
   ========================================================= */
.cta {
  padding: clamp(120px, 18vw, 240px) var(--gutter);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-inner { max-width: 880px; margin: 0 auto; }
.cta-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 24px 0 40px;
}
.cta-headline em { color: var(--accent); display: block; }
.cta-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  padding: 40px var(--gutter) 60px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.foot-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.foot-links { display: flex; gap: 24px; }
.foot-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color .2s;
}
.foot-links a:hover { color: var(--ink); }
.foot-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-clip { opacity: 1; }
}
