/* ============================================================
   Starving Effort — Rebrand (Studio Edition)
   Concept: Cinematic editorial. Quiet, hard-edged, warm.
   Warm paper content × deep-ink cinematic bands. Oversized serif,
   brass hairline system, magazine index numbering, real assets.
   ============================================================ */

:root {
  --ink: #14121c;
  --ink-2: #1b1826;
  --ink-3: #262232;
  --paper: #f5f1e9;
  --paper-2: #ece6da;
  --surface: #fffdf8;
  --text: #1a1722;
  --text-soft: #423d4d;
  --muted: #847d70;
  --muted-2: #a9a294;
  --brass: #9a7b4f;
  --brass-lt: #b89868;
  --brass-deep: #7c6038;
  --line: #e1dbce;
  --line-2: #eae4d9;
  --line-dark: rgba(255,255,255,.10);

  --energy-1: #ff2d8a;
  --energy-2: #b44dff;
  --energy: linear-gradient(135deg, #ff2d8a, #b44dff);

  --font-display: "Shippori Mincho B1", "Noto Serif JP", Georgia, serif;
  --font-serif: "Noto Serif JP", Georgia, serif;
  --font-sans: "Noto Sans JP", "Inter", system-ui, sans-serif;
  --font-accent: "Inter", system-ui, sans-serif;

  --max-w: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --radius: 16px;
  --radius-lg: 22px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.85;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
::selection { background: rgba(180,77,255,.18); }

/* Film grain */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .32; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{transition-delay:.09s}
.reveal[data-delay="2"]{transition-delay:.18s}
.reveal[data-delay="3"]{transition-delay:.27s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ---------- Section index header (editorial) ---------- */
.idx { display:flex; align-items:baseline; gap:18px; margin-bottom:14px; }
.idx__num {
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  letter-spacing: .14em; color: var(--brass);
  font-variant-numeric: tabular-nums;
}
.idx__line { flex: 0 0 40px; height: 1px; background: var(--brass); opacity: .45; transform: translateY(-4px); }
.idx__label { font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.24; letter-spacing: .01em;
}
.display em { font-style: normal; background: var(--energy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lead { color: var(--muted); font-size: 15.5px; line-height: 1.95; margin-top: 18px; max-width: 560px; }
.clause { display: inline-block; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,241,233,0); transition: background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245,241,233,.78);
  -webkit-backdrop-filter: blur(18px) saturate(1.2); backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line); box-shadow: 0 1px 22px rgba(20,18,28,.05);
}
.nav.is-hero { color: #f5f1e9; }
.nav__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; height: 76px; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display:flex; align-items:center; gap:11px; font-family: var(--font-accent); font-weight: 600; font-size: 15px; letter-spacing: .18em; text-transform: uppercase; }
.nav__logo-mark { width: 9px; height: 9px; border-radius: 2px; background: var(--energy); transform: rotate(45deg); box-shadow: 0 0 12px rgba(255,45,138,.5); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { position: relative; font-size: 13.5px; color: inherit; opacity: .68; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav__links a.is-accent { color: #d6308a; opacity: .95; font-weight: 600; }
.nav__cta { padding: 9px 22px; border: 1px solid currentColor; border-radius: 999px; font-size: 12.5px !important; letter-spacing: .04em; opacity: .9 !important; transition: background .25s, color .25s, transform .2s; }
.nav.is-hero .nav__cta:hover { background: #f5f1e9; color: var(--ink); transform: translateY(-1px); }
.nav:not(.is-hero) .nav__cta { color: var(--ink); }
.nav:not(.is-hero) .nav__cta:hover { background: var(--ink); color: var(--paper); transform: translateY(-1px); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display:block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }

/* ---------- HERO (cinematic dark) ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(135% 120% at 74% -8%, #241d36 0%, #16131f 52%, #0f0d15 100%);
  color: #f5f1e9; overflow: hidden; padding: 132px 0 0;
}
.hero__aurora { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__aurora span { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; animation: drift 24s ease-in-out infinite; }
.hero__aurora span:nth-child(1){ width: 560px; height: 560px; top: -160px; right: -80px; background: radial-gradient(circle at 30% 30%, rgba(180,77,255,.34), transparent 64%); }
.hero__aurora span:nth-child(2){ width: 520px; height: 520px; bottom: -200px; left: -120px; background: radial-gradient(circle, rgba(154,123,79,.30), transparent 65%); animation-delay: -9s; }
.hero__aurora span:nth-child(3){ width: 420px; height: 420px; top: 28%; left: 44%; background: radial-gradient(circle, rgba(255,45,138,.16), transparent 65%); animation-delay: -15s; }
@keyframes drift { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(34px,-26px) scale(1.07)} 66%{transform:translate(-24px,20px) scale(.95)} }

/* abstract hero media (ChatGPT-generated art) + legibility scrim */
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(72% 92% at 80% 26%, #3a2a55 0%, #1d1830 46%, #0f0d15 100%);
}
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,21,.97) 0%, rgba(15,13,21,.8) 32%, rgba(15,13,21,.32) 64%, rgba(15,13,21,.05) 100%),
    linear-gradient(0deg, rgba(15,13,21,.92) 0%, rgba(15,13,21,.1) 26%, transparent 42%);
}

/* interactive halftone art panel — top-right open space */
.hero__art {
  position: absolute; z-index: 1; top: 72px; right: 7vw;
  width: min(64vw, 840px); height: min(86vh, 860px);
  pointer-events: none;
}
.hero__art canvas { width: 100%; height: 100%; display: block; transition: opacity .5s ease; }
@media (max-width: 900px) { .hero__art { display: none; } }

/* ambient editorial glow (subtle — layers under media when no image) */
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(58% 48% at 80% 6%, rgba(180,77,255,.24), transparent 70%),
    radial-gradient(46% 42% at 10% 16%, rgba(201,154,99,.16), transparent 72%);
}

/* mono technical corner marks (studio feel) */
.hero__mark {
  position: absolute; z-index: 2; top: 118px;
  font-family: var(--font-accent); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(245,241,233,.42);
}
.hero__mark--tl { left: 40px; }
.hero__mark--tr { right: 40px; }

/* hero content grid (lead + floating recent card) */
.hero__grid {
  position: relative; z-index: 2; flex: 1 1 auto;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 24px 40px 0;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
.hero__lead { max-width: 620px; }
.hero__stats {
  display: flex; align-items: center; gap: 18px; margin-top: 38px; flex-wrap: wrap;
  font-family: var(--font-accent); font-size: 12.5px; color: rgba(245,241,233,.62);
}
.hero__stats b { color: #f5f1e9; font-weight: 600; }
.hero__stats i { width: 4px; height: 4px; border-radius: 50%; background: var(--brass); opacity: .75; }

/* floating recent-work card */
.hero__card {
  justify-self: end; width: min(100%, 290px);
  background: linear-gradient(165deg, rgba(42,34,60,.92), rgba(20,17,28,.92));
  border: 1px solid var(--line-dark); border-radius: 20px; padding: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.hero__card:hover { transform: translateY(-6px); box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(180,77,255,.26); }
.hero__card-top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-accent); font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(245,241,233,.5); margin-bottom: 14px;
}
.hero__card-arrow { color: var(--brass-lt); font-size: 13px; }
.hero__card-thumb {
  aspect-ratio: 16 / 10; border-radius: 12px; overflow: hidden;
  background: linear-gradient(155deg, #fffdf8, #efe9dd);
  display: flex; align-items: center; justify-content: center;
}
.hero__card-thumb img { width: 54%; height: auto; }
.hero__card-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 14px 0 4px; color: #fff; }
.hero__card-meta { font-family: var(--font-accent); font-size: 12px; color: rgba(245,241,233,.5); }

/* GIANT brand wordmark — edge-to-edge anchor (the lesson from Atlas/Wiltord) */
.hero__wordmark { position: relative; z-index: 1; width: 100%; overflow: hidden; margin-top: 18px; line-height: .92; }
.hero__wordmark .line { display: block; overflow: hidden; }
.hero__wordmark .line > span {
  display: block; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(76px, 18.5vw, 300px); letter-spacing: -.022em; padding: 0 38px;
  background: linear-gradient(180deg, #f5f1e9 0%, #d3cbda 74%, #968fa6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transform: translateY(110%); animation: lineRise 1.25s var(--ease) .5s forwards;
}

.hero__inner { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; width: 100%; }

/* hero load animations — line-mask reveal + rise/fade */
.hero__title .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__title .line > span { display: block; transform: translateY(118%); animation: lineRise 1.05s var(--ease) forwards; }
.hero__title .line:nth-child(1) > span { animation-delay: .18s; }
.hero__title .line:nth-child(2) > span { animation-delay: .34s; }
@keyframes lineRise { to { transform: translateY(0); } }
.h-rise { opacity: 0; animation: riseFade .95s var(--ease) forwards; animation-delay: var(--d, .15s); }
@keyframes riseFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .line > span, .hero__wordmark .line > span, .h-rise { animation: none; transform: none; opacity: 1; }
}
.hero__eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 30px; }
.hero__eyebrow span { width: 42px; height: 1px; background: linear-gradient(90deg, var(--brass-lt), transparent); }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5.6vw, 80px); line-height: 1.2; letter-spacing: .01em; }
.hero__title em { font-style: normal; background: var(--energy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__sub { margin-top: 34px; max-width: 540px; font-size: clamp(15px, 1.6vw, 18px); line-height: 2; color: rgba(245,241,233,.74); }
.hero__cta-row { margin-top: 42px; display: flex; gap: 14px; flex-wrap: wrap; }

/* marquee capability strip */
.marquee { position: relative; z-index: 2; margin-top: 18px; border-top: 1px solid var(--line-dark); background: rgba(16,14,22,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); overflow: hidden; }
.marquee__track { display: flex; gap: 0; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; padding: 16px 0; font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(245,241,233,.5); }
.marquee__track span::after { content: "✦"; margin: 0 34px; color: var(--brass); opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; border-radius: 999px; font-size: 14px; font-weight: 500; letter-spacing: .02em; cursor: pointer; border: 1.5px solid transparent; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.btn--ghost { background: transparent; color: #f5f1e9; border-color: rgba(245,241,233,.32); }
.btn--ghost:hover { border-color: #f5f1e9; transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--dark:hover { background: var(--brass-deep); border-color: var(--brass-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,18,28,.22); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- ABOUT / MANIFESTO ---------- */
.about { padding: 120px 0; background: var(--paper); }
.about__top { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 64px; }
.about__statement { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.5; }
.about__statement .hl { color: var(--brass); }
.about__note { color: var(--muted); font-size: 15px; line-height: 2; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.principal { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 38px 34px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.principal::after { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--brass); opacity:0; transition: opacity .4s; }
.principal--ai::after { background: var(--energy); }
.principal:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(20,18,28,.10); }
.principal:hover::after { opacity: .8; }
.principal__head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.principal__avatar { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; flex-shrink: 0; box-shadow: 0 6px 18px rgba(20,18,28,.16); background: var(--ink); }
.principal__avatar img { width: 100%; height: 100%; object-fit: cover; }
.principal__name { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1.2; }
.principal__role { font-family: var(--font-accent); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.principal__bio { color: var(--muted); font-size: 14.5px; line-height: 1.95; margin-bottom: 22px; }
.tags { display: flex; gap: 9px; flex-wrap: wrap; }
.tag-btn { font-family: var(--font-accent); font-size: 12.5px; font-weight: 600; padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line); transition: transform .2s, background .2s, border-color .2s, color .2s; }
.tag-btn:hover { transform: translateY(-1px); border-color: var(--brass); }
.tag-btn--x { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.tag-btn--yt { background: #cc0000; color: #fff; border-color: #cc0000; }
.tag-btn--accent { background: var(--energy); color: #fff; border-color: transparent; box-shadow: 0 3px 14px rgba(255,45,138,.28); }

/* ---------- CAPABILITIES ---------- */
.cap { padding: 110px 0; background: var(--paper-2); }
.cap__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.cap__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px 36px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.cap__card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(20,18,28,.08); }
.cap__num { font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--muted-2); }
.cap__icon { width: 54px; height: 54px; margin: 18px 0 22px; display: flex; align-items: center; justify-content: center; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; color: var(--brass); transition: background .35s, color .35s, transform .35s; }
.cap__card:hover .cap__icon { background: var(--ink); color: var(--paper); }
.cap__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.cap__desc { color: var(--muted); font-size: 14px; line-height: 1.95; }

/* ---------- WORK (cinematic grid) ---------- */
.work { padding: 120px 0; background: radial-gradient(120% 90% at 80% -10%, #221c33, #14121c 60%); color: #f5f1e9; position: relative; overflow: hidden; }
.work .idx__label, .work .idx__num { color: rgba(245,241,233,.55); }
.work .idx__num { color: var(--brass-lt); }
.work .display { color: #fff; }
.work .lead { color: rgba(245,241,233,.55); }
.work__grid { margin-top: 56px; display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: 240px; gap: 18px; }
.tile { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--line-dark); background: linear-gradient(160deg, #221d33, #15131e); box-shadow: 0 24px 56px rgba(0,0,0,.42); transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: block; }
.tile:hover { transform: translateY(-8px); box-shadow: 0 36px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(180,77,255,.28); }
.tile--feature { grid-row: span 2; }
.tile__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.tile:hover .tile__img { transform: scale(1.06); }
.tile--contain .tile__img { background-size: 72%; background-repeat: no-repeat; background-position: center 40%; }
.tile--light { background: linear-gradient(155deg, #fffdf8, #efe9dd); }
.tile__overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 6px; background: linear-gradient(to top, rgba(12,10,18,.92) 6%, rgba(12,10,18,.45) 52%, transparent 100%); transition: transform .35s var(--ease); }
.tile--light .tile__overlay { background: linear-gradient(to top, rgba(20,18,28,.86) 4%, rgba(20,18,28,.35) 46%, transparent 100%); }
.tile__tag { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-accent); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 5px 11px; border-radius: 999px; margin-bottom: 4px; }
.tile__name { font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.35; color: #fff; }
.tile--feature .tile__name { font-size: 26px; }
.tile__cat { font-family: var(--font-accent); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.tile--service { display: flex; align-items: center; justify-content: center; }
.tile__svc-icon { color: #c79bff; opacity: .5; width: 42%; transition: opacity .35s, transform .5s var(--ease); }
.tile--service:hover .tile__svc-icon { opacity: .8; transform: scale(1.07); }

/* ---------- CHALLENGE FEATURE (now) ---------- */
.now { padding: 0; background: var(--ink); color: #f5f1e9; }
.now__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
.now__copy { padding: 96px 56px 96px 40px; }
.now__pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-accent); font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #ffd9ec; background: linear-gradient(135deg, rgba(255,45,138,.22), rgba(180,77,255,.22)); border: 1px solid rgba(255,45,138,.42); padding: 7px 15px; border-radius: 999px; margin-bottom: 24px; }
.now__pill-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff2d8a; box-shadow: 0 0 9px rgba(255,45,138,.9); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.now__title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); font-weight: 700; line-height: 1.3; }
.now__desc { margin-top: 22px; color: rgba(245,241,233,.7); font-size: 15px; line-height: 2; max-width: 440px; }
.now__stats { display: flex; gap: 40px; margin: 34px 0 32px; }
.now__stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; background: var(--energy); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.now__stat-lbl { font-family: var(--font-accent); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.now__visual { position: relative; overflow: hidden; min-height: 460px; }
.now__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.now__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(20,18,28,.2) 28%, transparent 60%); }

/* ---------- LAB LOG ---------- */
.lab { padding: 120px 0; background: var(--paper); }
.lab__grid { margin-top: 48px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.lab__entry { display: block; padding: 30px 36px; border-bottom: 1px solid var(--line-2); position: relative; transition: background .25s, padding-left .25s var(--ease); }
.lab__entry:last-child { border-bottom: none; }
.lab__entry--link::after { content: "→"; position: absolute; right: 34px; top: 30px; color: var(--brass); opacity: 0; transform: translateX(-8px); transition: opacity .25s, transform .25s var(--ease); }
.lab__entry--link:hover { background: var(--paper-2); padding-left: 44px; }
.lab__entry--link:hover::after { opacity: 1; transform: translateX(0); }
.lab__date { font-family: var(--font-accent); font-size: 12px; color: var(--brass); letter-spacing: .08em; font-weight: 600; }
.lab__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 8px 0; line-height: 1.5; }
.lab__excerpt { color: var(--muted); font-size: 14px; line-height: 1.8; }
.lab__more { text-align: center; margin-top: 44px; }

/* ---------- CONTACT ---------- */
.contact { padding: 120px 0; background: var(--paper-2); }
.contact .idx, .contact .display, .contact .lead { text-align: center; justify-content: center; }
.contact .idx { display: inline-flex; }
.contact__head { text-align: center; margin-bottom: 48px; }
.contact .lead { margin-left: auto; margin-right: auto; }
.contact__form { max-width: 600px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 48px 44px; box-shadow: 0 18px 50px rgba(20,18,28,.06); }
.fg { margin-bottom: 22px; }
.fg label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 9px; }
.fg input, .fg textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); font-size: 15px; transition: border-color .2s, box-shadow .2s, background .2s; }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--brass); background: var(--surface); box-shadow: 0 0 0 3px rgba(154,123,79,.12); }
.fg textarea { resize: vertical; }
.contact__form .btn { width: 100%; justify-content: center; }

/* ---------- FOOTER ---------- */
.footer { padding: 60px 0; background: var(--ink); color: rgba(245,241,233,.7); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer__brand { font-family: var(--font-accent); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #f5f1e9; font-size: 14px; }
.footer__copy { font-size: 12px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .about__top { grid-template-columns: 1fr; gap: 28px; }
  .about__grid { grid-template-columns: 1fr; }
  .cap__grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .work__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .tile--feature { grid-row: span 2; grid-column: span 2; }
  .now__inner { grid-template-columns: 1fr; }
  .now__visual { min-height: 300px; order: -1; }
  .now__visual::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 60%); }
  .now__copy { padding: 64px 40px; }
}
@media (max-width: 768px) {
  .container, .nav__inner, .hero__inner { padding-left: 24px; padding-right: 24px; }
  .nav__inner { height: 64px; }
  .nav__toggle { display: flex; }
  .nav__links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; gap: 22px; padding: 28px 24px; background: rgba(245,241,233,.98); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
  .nav__links a { color: var(--ink); opacity: .85; }
  .nav__links--open { display: flex; }
  .nav.is-hero { color: var(--ink); }
  .hero { min-height: 92vh; padding: 110px 0 90px; }
  .hero__mark { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 26px; padding-top: 8px; }
  .hero__card { justify-self: start; width: min(100%, 320px); }
  .hero__wordmark .line > span { font-size: clamp(52px, 17vw, 92px); padding: 0 24px; }
  .about, .cap, .work, .lab, .contact { padding: 84px 0; }
  .now__copy { padding: 56px 24px; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .tile--feature { grid-column: span 1; grid-row: span 1; }
  .now__stats { gap: 28px; }
}

/* ============================================================
   LEVEL-UP PASS — stats band, services index, footer wordmark
   ============================================================ */

/* Motion disabled (per request) — keep hover feedback, drop entrance/loop */
.reveal, .h-rise { opacity: 1 !important; transform: none !important; }
.hero__title .line > span, .hero__wordmark .line > span { transform: none !important; animation: none !important; }
.marquee__track { animation: none !important; }

/* About — big stat band (Atlas/Mondragon signature) */
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 60px 0 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 38px 26px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display); font-weight: 800; line-height: .98;
  font-size: clamp(36px, 4.6vw, 60px); letter-spacing: -.01em; color: var(--ink);
}
.stat__num span { color: var(--brass); }
.stat__lbl {
  font-family: var(--font-accent); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 14px;
}

/* Capabilities — dashed-connector services index (Mondragon signature) */
.svc { margin-top: 50px; border-top: 1px solid var(--line); }
.svc__row {
  display: flex; align-items: baseline; gap: 26px;
  padding: 30px 6px; border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .3s;
}
.svc__row:hover { padding-left: 22px; padding-right: 22px; background: var(--surface); }
.svc__no { font-family: var(--font-accent); font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted-2); min-width: 28px; }
.svc__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 42px); color: var(--ink); white-space: nowrap; transition: color .25s; }
.svc__line { flex: 1 1 auto; align-self: center; height: 0; border-top: 1px dashed var(--muted-2); opacity: .55; }
.svc__cat { font-family: var(--font-accent); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; transition: color .25s; }
.svc__arrow { color: var(--muted-2); transition: transform .3s var(--ease), color .25s; }
.svc__row:hover .svc__name { color: var(--brass-deep); }
.svc__row:hover .svc__cat, .svc__row:hover .svc__arrow { color: var(--brass); }
.svc__row:hover .svc__arrow { transform: translate(4px,-4px); }

/* Contact — bigger display */
.contact .display { font-size: clamp(40px, 6.4vw, 86px); line-height: 1.08; }

/* Footer — giant wordmark bookend */
.footer { padding: 0; overflow: hidden; }
.footer__mark { overflow: hidden; line-height: .86; padding-top: 64px; }
.footer__mark span {
  display: block; white-space: nowrap; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(64px, 17vw, 260px); letter-spacing: -.022em; padding: 0 38px;
  color: rgba(245,241,233,.07);
}
.footer__inner { padding: 26px 40px 42px; border-top: 1px solid rgba(255,255,255,.08); }

@media (max-width: 768px) {
  .about__stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .svc__line { display: none; }
  .svc__name { white-space: normal; font-size: clamp(22px, 6.4vw, 32px); }
  .svc__row { gap: 16px; flex-wrap: wrap; }
  .footer__mark span { font-size: clamp(46px, 16vw, 92px); }
}
