/* Studio.Designerd — shared site system
   Audiences: Owners (index.html) · Aspirants (start.html, highlighted in nav)
   Work: work.html listing + works/<slug>.html cases
   Portfolio: portfolio.html (Pranjal personal book — separate from Work)
   open.html redirects to home. Chooser is gone.
*/
:root {
  --ink: #0A0A0A;
  --ink-2: #121212;
  --ink-3: #1A1A1A;
  --paper: #FFFFFF;
  --fog: #F2F1EC;
  /* Soft text bumped for WCAG contrast on ink */
  --soft: #B5B4AF;
  --dim: #8A8985;
  --line: #2A2A2A;
  --line-ink: #E4E3DE;
  --signal: #FF4F00;
  --signal-hover: #E64500;
  --signal-soft: rgba(255, 79, 0, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  /* Brand type: 2 fonts only — email-safe stacks
     Sans: Helvetica (UI/display) · Serif: Georgia (body)
     Email CSS: font-family: Helvetica, Arial, sans-serif;
                font-family: Georgia, 'Times New Roman', Times, serif; */
  --sans: Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", Times, serif;
  --wrap: min(1120px, calc(100% - 48px));
  --header-h: 64px;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input { font: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}
::selection {
  background: var(--signal);
  color: var(--paper);
}
.ico {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.skip {
  position: absolute; left: -9999px; top: 12px; z-index: 100;
  background: var(--paper); color: var(--ink); padding: 12px 16px;
}
.skip:focus { left: 16px; }

/* —— Sticky top bar (flush, modern) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header .inner {
  width: var(--wrap);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  border-radius: 2px;
}
.brand .mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 0;
}
.brand .dot { color: var(--signal); }
.brand-text { white-space: nowrap; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-link {
  display: none;
  padding: 8px 12px;
  color: var(--soft);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.35s var(--ease);
}
.header-link:hover, .header-link:focus-visible { color: var(--paper); }
.header-link.is-active { color: var(--paper); }
.header-actions .btn-ghost.keep-mobile { display: inline-flex; }
.header-actions .btn-ghost.is-active {
  border-color: #555;
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-lg { min-height: 48px; padding: 0 22px; font-size: 14px; }
.btn-signal {
  background: var(--signal);
  color: var(--paper);
}
.btn-signal:hover, .btn-signal:focus-visible { background: var(--signal-hover); }
.btn-paper {
  background: var(--paper);
  color: var(--ink);
}
.btn-paper:hover, .btn-paper:focus-visible { background: #E8E8E8; }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: #555; }
.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-ink);
}

/* —— Atmosphere —— */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 90% 10%, var(--signal-soft) 0%, transparent 55%),
    linear-gradient(180deg, #0B0B0B 0%, #0A0A0A 70%, #100A07 100%);
}
.page { position: relative; z-index: 1; min-height: 100svh; display: flex; flex-direction: column; }
main { flex: 1; }

/* —— Layout helpers —— */
.wrap { width: var(--wrap); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow .rule {
  width: 16px;
  height: 1px;
  background: var(--signal);
}
h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
  font-family: var(--sans);
}
h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  font-family: var(--sans);
}
h3 {
  font-family: var(--sans);
  text-wrap: balance;
}
.lede {
  max-width: 38ch;
  color: var(--soft);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  text-wrap: pretty;
}
.muted {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* —— Chooser (index) —— */
.chooser {
  width: var(--wrap);
  margin: 0 auto;
  padding: 56px 0 72px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-h));
}
.chooser-head { max-width: min(52ch, 100%); margin-bottom: 40px; }
.chooser-head .eyebrow {
  white-space: nowrap;
  max-width: none;
}
.chooser-head h1 {
  margin-top: 16px;
  max-width: none;
  line-height: 1.02;
}
.chooser-head h1 .line {
  display: block;
  white-space: nowrap;
}
.chooser-head .lede { margin-top: 18px; max-width: 40ch; }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.choice {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  text-decoration: none;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.choice:hover, .choice:focus-visible {
  border-color: var(--signal);
  transform: translateY(-3px);
  background: var(--ink-3);
}
.choice .n {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.choice h2 {
  margin-top: 20px;
  font-size: clamp(26px, 3vw, 34px);
  max-width: 12ch;
}
.choice p {
  margin-top: 14px;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  max-width: 32ch;
  flex: 1;
  text-wrap: pretty;
}
.choice .n img {
  width: 18px;
  height: 18px;
  border-radius: 2px;
}
.choice .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--paper);
  border-bottom: 1px solid var(--signal);
  padding-bottom: 3px;
  width: fit-content;
}
.chooser-foot {
  margin-top: 32px;
  color: var(--dim);
  font-size: 13px;
}

/* —— Landing hero —— */
.hero {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 48px;
  align-items: center;
  padding: 48px 0 56px;
  min-height: calc(100svh - var(--header-h) - 40px);
}
.hero h1 {
  margin-top: 16px;
  max-width: none;
  line-height: 1.02;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}
.hero .lede { margin-top: 20px; }
@media (max-width: 560px) {
  .hero h1 .line,
  .chooser-head h1 .line {
    white-space: normal;
  }
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--dim);
  font-size: 13px;
}

/* Signal board graphic */
.signal-board {
  border: 1.5px solid #D2D1CB;
  background: var(--fog);
  color: var(--ink);
  overflow: hidden;
}
.signal-board .top-bar {
  height: 3px;
  background: var(--signal);
}
.sb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line-ink);
}
.sb-head .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.sb-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--signal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sb-head .live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); font-style: normal;
}
.sb-radar {
  position: relative;
  height: 150px;
  margin: 18px 22px 6px;
  border: 1px solid var(--line-ink);
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(255,79,0,0.05) 28.5% 29%, transparent 29.5%),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(0,0,0,0.06) 48.5% 49%, transparent 49.5%),
    radial-gradient(circle at 50% 50%, transparent 0 68%, rgba(0,0,0,0.05) 68.5% 69%, transparent 69.5%);
}
.sb-radar::before, .sb-radar::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--line-ink);
}
.sb-radar::before { width: 1px; height: 100%; transform: translate(-50%, -50%); }
.sb-radar::after { width: 100%; height: 1px; transform: translate(-50%, -50%); }
.node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 600;
}
.node .pip {
  width: 11px; height: 11px; border-radius: 50%;
  border: 2px solid var(--ink); background: var(--fog);
}
.node.on .pip {
  border-color: var(--signal); background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft);
}
.node.core { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.node.core .pip { width: 14px; height: 14px; background: var(--ink); border-color: var(--ink); }
.node.a { left: 14%; top: 20%; }
.node.b { right: 12%; top: 26%; }
.node.c { left: 20%; bottom: 14%; }
.node.d { right: 16%; bottom: 18%; }
.sb-rows { list-style: none; padding: 6px 22px 18px; }
.sb-rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line-ink);
  font-size: 14px;
}
.sb-rows .t { font-family: var(--serif); font-size: 16px; }
.sb-rows .s {
  font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--dim); font-weight: 600;
}
.sb-rows .s.hot { color: var(--signal); }

/* Sections */
section.block {
  width: var(--wrap);
  margin: 0 auto;
  padding: 56px 0 8px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.section-head { max-width: 38ch; margin-bottom: 24px; }
.section-head h2 { margin-top: 12px; }
.section-head p {
  margin-top: 12px;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  text-wrap: pretty;
  max-width: 40ch;
}

.benefit-list { border-top: 1px solid var(--line); }
.benefit {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.benefit .icon-wrap {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--signal-soft);
  color: var(--signal);
}
.benefit h3 {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--signal);
}
.benefit p {
  color: var(--soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  max-width: 48ch;
  text-wrap: pretty;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step { padding: 22px 24px 8px 0; }
.step + .step { border-left: 1px solid var(--line); padding-left: 24px; }
.step .n {
  color: var(--signal);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--signal);
}
.step p {
  margin-top: 10px;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  max-width: 28ch;
  text-wrap: pretty;
}

/* Form */
.snapshot {
  width: var(--wrap);
  margin: 0 auto;
  padding: 56px 0 16px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.snapshot-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.snapshot-copy {
  padding: 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.snapshot-copy h2 { margin-top: 12px; max-width: 14ch; }
.snapshot-copy .body {
  margin-top: 14px;
  max-width: 32ch;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  text-wrap: pretty;
}
.snapshot-copy .perk {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 13px;
}
.form-sheet {
  background: var(--fog);
  color: var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-ink);
  margin-bottom: 4px;
}
.form-head .title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.form-head .meta {
  color: var(--signal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.field {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-ink);
  transition: border-color 0.3s var(--ease);
}
.field:focus-within { border-color: var(--ink); }
.field input:focus-visible {
  outline: none;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
  font-weight: 500;
}
.field input {
  width: 100%;
  border: 0; outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  line-height: 24px;
  padding: 0;
}
.field input::placeholder { color: #AFAEA8; }
.form-sheet .btn {
  width: 100%;
  margin-top: 24px;
  min-height: 48px;
}
.note, .msg {
  margin-top: 12px;
  font-size: 13px;
  line-height: 18px;
  color: var(--dim);
}
.note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.msg.ok { color: var(--ink); }
.msg.err { color: #4A4A4A; }

/* Tagline */
.tagline {
  width: var(--wrap);
  margin: 40px auto 0;
  padding: clamp(64px, 10vh, 110px) 0;
  border-top: 1px solid var(--line);
}
.tagline p {
  max-width: 20ch;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.tagline .line1, .tagline .line2 { display: block; }
.tagline .line1 { white-space: nowrap; }
.tagline .line2 { margin-top: 0.08em; }
.tagline .word { color: #3A3A38; transition: color 0.7s var(--ease); }
.tagline .word.on { color: var(--paper); }
.tagline .word.signal.on { color: var(--signal); }

/* Footer */
.site-footer {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.site-footer a {
  text-decoration: none;
  transition: color 0.35s var(--ease);
}
.site-footer a:hover, .site-footer a:focus-visible { color: var(--signal); }
.site-footer .mark {
  width: 20px; height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

/* Switch audience strip */
.switch {
  width: var(--wrap);
  margin: 0 auto;
  padding: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  color: var(--dim);
  font-size: 13px;
}
.switch a {
  color: var(--soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.switch a:hover, .switch a:focus-visible { color: var(--signal); border-color: var(--signal); }
.switch img {
  width: 16px;
  height: 16px;
  border-radius: 0;
}

/* —— Photo slots (swap src later; no people in stock) —— */
.photo-band {
  width: var(--wrap);
  margin: 8px auto 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.photo-band figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  aspect-ratio: 21 / 9;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.photo-grid {
  width: var(--wrap);
  margin: 40px auto 8px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
}
.photo-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
}
.photo-grid figure.tall { aspect-ratio: 3 / 4; }
.photo-grid figure.wide {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-grid figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 3px 7px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--dim);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.chooser-photo {
  width: var(--wrap);
  margin: 0 auto 28px;
}
.chooser-photo figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 32 / 9;
  background: var(--ink-2);
}
.chooser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chooser-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.72);
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
/* —— Portfolio one-signal: orange only on Free Snapshot CTA —— */
.page-portfolio .eyebrow,
.page-portfolio .case-card .type {
  color: var(--soft);
}
.page-portfolio .eyebrow .rule {
  background: var(--soft);
}
.page-portfolio .case-card .more {
  border-bottom-color: var(--line);
}
.page-portfolio .case-card .thumb .badge {
  color: var(--paper);
  background: rgba(0,0,0,0.72);
}
.page-portfolio .case-card:hover .more,
.page-portfolio .case-card:focus-visible .more {
  border-bottom-color: var(--paper);
  color: var(--paper);
}

/* —— Work / case studies —— */
.work-hero {
  width: var(--wrap);
  margin: 0 auto;
  padding: 40px 0 28px;
}
.work-hero h1 { margin-top: 14px; max-width: 14ch; }
.work-hero .lede { margin-top: 16px; max-width: 40ch; }
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.chip:hover, .chip:focus-visible, .chip.is-active {
  border-color: var(--paper);
  color: var(--paper);
}
.work-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 8px 0 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ink-2);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.case-card:hover, .case-card:focus-visible {
  border-color: var(--signal);
  transform: translateY(-2px);
}
.case-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--ink-3);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card .thumb .badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 8px;
  background: rgba(10, 10, 10, 0.78);
  color: var(--signal);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.case-card .body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.case-card .type {
  color: var(--signal);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.case-card h2 {
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 18ch;
}
.case-card p {
  color: var(--soft);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
  text-wrap: pretty;
  flex: 1;
}
.case-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 8px;
  color: var(--dim);
  font-size: 12px;
}
.case-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--signal);
  padding-bottom: 2px;
  width: fit-content;
}
.work-cta {
  width: var(--wrap);
  margin: 24px auto 8px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.work-cta h2 { font-size: 28px; max-width: 16ch; }
.work-cta p {
  margin-top: 10px;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  max-width: 40ch;
}
.work-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure.tall { aspect-ratio: 16 / 10; }
  .chooser-photo figure { aspect-ratio: 16 / 7; }
  .chooser-head .eyebrow { white-space: normal; }
  .work-grid { grid-template-columns: 1fr; }
  .work-cta { grid-template-columns: 1fr; }
  .work-cta .actions { justify-content: flex-start; }
}

@media (min-width: 900px) {
  .header-link { display: inline-flex; }
}
@media (max-width: 900px) {
  .choice-grid, .hero, .steps, .snapshot-panel { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    gap: 36px;
    padding: 28px 0 36px;
    align-items: start;
  }
  .hero .signal-board,
  .hero .object {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }
  .step + .step { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 8px; }
  .snapshot-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .choice { min-height: 0; }
  .header-actions .header-link { display: none; }
  .header-actions .header-link.keep-mobile { display: inline-flex; }
  .header-actions .btn.keep-mobile { display: inline-flex; }
}
@media (max-width: 560px) {
  :root { --wrap: min(1120px, calc(100% - 32px)); --header-h: 60px; }
  .brand-text { font-size: 14px; }
  .header-actions { gap: 4px; }
  .header-actions .btn { padding: 0 12px; min-height: 36px; font-size: 12px; }
  .header-actions .btn .ico { display: none; }
  .header-actions .header-link { padding: 8px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .form-sheet, .snapshot-copy, .choice { padding: 24px; }
  .tagline .line1,
  .tagline .line2,
  .hero h1 .line,
  .chooser-head h1 .line { white-space: normal; }
  h1 { font-size: clamp(34px, 9.5vw, 44px); }
  .chooser { padding: 28px 0 48px; min-height: auto; }
  .site-footer { padding-bottom: 32px; }
  .work-hero { padding-top: 28px; }
  .case-card .body { padding: 18px; }
  .work-cta { padding: 24px; }
}
@media (max-width: 560px) {
  .brand-text { display: none; }
  .header-actions .btn-signal { display: none; }
}

/* —— Work listing (Jorge-style) + case pages —— */
.page-work .eyebrow,
.page-case .eyebrow {
  color: var(--soft);
}
.page-work .eyebrow .rule,
.page-case .eyebrow .rule {
  background: var(--soft);
}
.page-work .case-card:hover,
.page-work .case-card:focus-visible {
  border-color: var(--paper);
  transform: none;
}
.page-work .case-card .type,
.page-work .case-card .more {
  color: var(--soft);
  border-bottom-color: var(--line);
}
.page-work .case-card:hover .more,
.page-work .case-card:focus-visible .more {
  color: var(--paper);
  border-bottom-color: var(--paper);
}
.page-work .case-card .thumb .badge,
.cover-soon {
  color: var(--dim);
  background: transparent;
}

.works-hero {
  width: var(--wrap);
  margin: 0 auto;
  padding: 48px 0 28px;
}
.works-title {
  font-size: clamp(56px, 9vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  max-width: none;
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}
.filter-link {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0 0 4px;
  margin: 0;
  color: var(--dim);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.filter-link:hover,
.filter-link:focus-visible {
  color: var(--paper);
}
.filter-link.is-active {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.works-grid {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  padding: 12px 0 32px;
}
.works-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.works-card[hidden] { display: none; }
.works-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.works-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works-card-media.is-empty,
.case-cover.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cover-soon {
  position: static;
  padding: 4px 8px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--line);
  color: var(--dim);
  background: transparent;
}
.works-card h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: none;
}
.works-card p {
  color: var(--soft);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.4;
  text-wrap: pretty;
}
.work-filter-empty {
  width: var(--wrap);
  margin: 0 auto 24px;
  color: var(--dim);
  font-size: 14px;
}

/* Case study */
.case-study {
  width: var(--wrap);
  margin: 0 auto;
  padding: 40px 0 8px;
}
.case-hero h1 {
  margin-top: 0;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 18ch;
}
.case-tagline {
  margin-top: 12px;
  max-width: 42ch;
  color: var(--soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
}
.case-sample-note {
  margin-top: 12px;
  color: var(--dim);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.case-cover {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  background: var(--ink-3);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.case-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-cover.is-empty {
  min-height: 220px;
  aspect-ratio: 16 / 10;
}
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  margin: 28px 0 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.case-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}
.case-meta > div { margin: 0; }
.case-meta dt {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.case-meta dd {
  color: var(--paper);
  font-size: 15px;
  line-height: 1.35;
}
.case-body {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 0;
}
.case-body > .label {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.case-body p {
  color: var(--soft);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
}

.case-next {
  width: var(--wrap);
  margin: 48px auto 8px;
  padding-top: 8px;
}
.case-next-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.case-next-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.case-all {
  color: var(--soft);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 2px;
}
.case-all:hover,
.case-all:focus-visible {
  color: var(--paper);
}
.case-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 16px;
}
.case-next-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.case-next-media {
  aspect-ratio: 1 / 1;
  background: var(--ink-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-next-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-next-card .case-next-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.case-next-card .case-next-tagline {
  color: var(--soft);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .works-grid { grid-template-columns: 1fr; gap: 28px; }
  .works-card-media { max-width: none; }
  .case-layout { grid-template-columns: 1fr; gap: 24px; }
  .case-next-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .works-hero { padding-top: 28px; }
  .works-title { font-size: clamp(48px, 16vw, 64px); }
  .case-study { padding-top: 28px; }
  .case-body p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .tagline .word, .btn, .choice { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .tagline .word { color: var(--paper); }
  .tagline .word.signal { color: var(--signal); }
}
