/* =============================================================
   Chhaya Digital — brand landing page
   Design notes (per impeccable slop rules):
   - No gradient text, no radial glows, no glassmorphism
   - Flat surfaces + one deep green accent + one burnt orange
   - Fraunces (display serif) + Schibsted Grotesk (body)
   - Cards use a defined border, not hairline + wide shadow
   - No eyebrow labels above headings; plain editorial rules
   ============================================================= */

:root {
  --paper: #f7f7f4;
  --surface: #fdfdfb;
  --ink: #121714;
  --ink-2: #38423b;
  --muted: #5e685f;
  --line: #dfe3dc;
  --line-strong: #c6cdc4;
  --accent: #1d603d;
  --accent-dark: #15482d;
  --accent-soft: #e6f0e9;
  --orange: #b3511c;
  --orange-soft: #f6e9df;

  /* theme-independent solids (stay dark in both themes) */
  --ink-solid: #171a1c;
  --ink-solid-2: #101214;

  /* semantic button tokens */
  --btn-solid-bg: #1e5f3c;
  --btn-solid-hover: #17482d;
  --btn-dark-bg: #171a1c;
  --btn-dark-fg: #ffffff;
  --btn-dark-hover: #000000;
  --cta-bg: #1e5f3c;

  /* tag tokens */
  --tag-license-bg: #e9f1ec;
  --tag-license-fg: #17482d;

  --radius-sm: 5px;
  --maxw: 1180px;
  --font-body: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  color-scheme: light;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; text-underline-offset: 0.18em; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(3.1rem, 4.8vw + 1rem, 5.75rem); }
h2 { font-size: clamp(2rem, 1.65vw + 1.2rem, 2.75rem); }
h3 { font-size: 1.15rem; font-weight: 500; }

p { color: var(--ink-2); text-wrap: pretty; }

.prose { max-width: 66ch; }
.prose p + p { margin-top: 1em; }
.mt-16 { margin-top: 16px; }

.mono { font-family: var(--font-mono); }
.container { width: min(100% - 64px, var(--maxw)); margin: 0 auto; }
.center { text-align: center; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border: 3px solid var(--paper); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 0.95rem/1 var(--font-body);
  min-height: 50px; padding: 15px 24px; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s ease-out, border-color .18s ease-out, color .18s ease-out, transform .18s ease-out;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--btn-solid-bg); color: #fff; }
.btn-solid:hover { background: var(--btn-solid-hover); }
.btn-dark { background: var(--btn-dark-bg); color: var(--btn-dark-fg); }
.btn-dark:hover { background: var(--btn-dark-hover); color: var(--btn-dark-fg); }
.btn-line { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-line:hover { background: var(--surface); border-color: var(--ink); }
.btn-sm { min-height: 42px; padding: 10px 18px; font-size: 0.88rem; }
.btn:disabled { cursor: not-allowed; opacity: 0.62; transform: none; }

/* ---------- Keyboard focus ---------- */
a:focus-visible,
.btn:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-solid:focus-visible { outline-color: var(--accent-dark); }
.btn-dark:focus-visible { outline-color: #ffffff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark {
  position: relative; width: 36px; height: 36px; flex: 0 0 auto;
  background: var(--ink-solid); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.brand-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 100%; height: 100%; background: var(--accent); z-index: -1;
}
.brand-name { font-weight: 650; font-size: 1rem; letter-spacing: -0.015em; line-height: 1.1; }
.brand-name small { display: block; margin-top: 3px; font-family: var(--font-body); font-size: 0.69rem; font-weight: 500; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative;
  color: var(--ink-2); font-weight: 500; font-size: 0.94rem;
  padding: 10px 14px;
  transition: color .15s ease-out;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .18s ease-out;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  width: 40px; height: 40px; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
  transition: background .18s ease-out, border-color .18s ease-out;
}
.nav-toggle:hover { background: var(--surface); border-color: var(--ink); }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 12px 32px 22px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .22s ease-out, opacity .22s ease-out;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero { min-height: 720px; padding: 116px 0 108px; position: relative; display: grid; align-items: center; border-bottom: 1px solid var(--line); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr); gap: clamp(72px, 9vw, 120px); align-items: center; }

.hero h1 { max-width: 10.5ch; margin: 0 0 28px; line-height: 0.98; text-wrap: balance; }
.hero h1 .accent { color: var(--accent); font-style: normal; }
.hero .sub { font-size: 1.16rem; line-height: 1.68; color: var(--ink-2); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-foot { display: flex; flex-wrap: wrap; gap: 8px 30px; margin-top: 46px; font-size: 0.72rem; letter-spacing: 0.055em; text-transform: uppercase; color: var(--muted); }
.hero-foot span { display: inline-flex; align-items: center; gap: 7px; }

/* Hero visual: editorial product dossier */
.hero-visual { position: relative; }
.sheet-stack { position: relative; padding: 28px 26px 24px 0; }
.sheet-stack::before {
  content: ""; position: absolute; right: 0; top: 0; width: 72%; height: 100%;
  background: var(--accent-soft); border: 1px solid #d5e3d9; z-index: 0;
}
.sheet {
  position: relative; z-index: 1;
  background: var(--surface);
  padding: 36px 38px 32px; border: 1px solid var(--line-strong);
}
.sheet::before {
  content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 3px; background: var(--accent);
}
.sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.sheet-title { font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; letter-spacing: -0.02em; }
.sheet-tag {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px; white-space: nowrap;
}
.sheet-tag.license { background: var(--tag-license-bg); color: var(--tag-license-fg); }
.sheet-desc { font-size: 1rem; line-height: 1.65; color: var(--ink-2); max-width: 42ch; }
.sheet-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 18px; margin-top: 28px; padding-top: 17px; border-top: 1px solid var(--line); font: 400 0.72rem/1.5 var(--font-mono); letter-spacing: 0.02em; color: var(--muted); }
.sheet-meta a { color: var(--accent); }
.sheet-meta a:hover { color: var(--accent-dark); }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: 0; padding: 72px 0 80px; }
  .hero-visual { max-width: 560px; }
}

/* ---------- Sections ---------- */
.section { padding: 120px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-tight { padding: 64px 0; }

.sec-rule { width: 48px; height: 2px; background: var(--accent); margin-bottom: 28px; }
.sec-head { max-width: 760px; margin-bottom: 64px; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head p { font-size: 1.06rem; color: var(--ink-2); max-width: 60ch; }

/* ---------- Manifesto ---------- */
.manifesto { padding: 132px 0; }
.manifesto .lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2vw + 1.1rem, 2.2rem);
  font-weight: 400; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--ink); max-width: 28em;
}
.manifesto .lead em { font-style: italic; color: var(--accent); }
.manifesto .meta { max-width: 74ch; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.76rem; line-height: 1.7; color: var(--muted); }

/* ---------- Focus lanes ---------- */
.lane { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line-strong); }
.lane-cell { padding: 56px 48px; }
.lane + .lane .lane-cell { padding-top: 40px; }
.lane-cell + .lane-cell { border-left: 1px solid var(--line); }
.lane h3 { font-size: 1.65rem; margin-bottom: 14px; }
.lane p { color: var(--ink-2); max-width: 44ch; }

@media (max-width: 820px) {
  .lane { grid-template-columns: 1fr; }
  .lane-cell { padding: 36px 8px; }
  .lane-cell + .lane-cell { border-left: none; border-top: 1px solid var(--line); }
}

/* ---------- Work list ---------- */
.work-list { border-top: 1px solid var(--line-strong); }
.work-row {
  display: grid; grid-template-columns: 1.2fr 1fr 0.8fr 1.4fr;
  gap: 24px; align-items: baseline;
  padding: 34px 8px; border-bottom: 1px solid var(--line);
  transition: background .18s ease-out;
}
.work-row:hover { background: rgba(255, 255, 255, 0.5); }
.work-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.work-tag {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px; justify-self: start; white-space: nowrap;
}
.work-tag.t-license { background: var(--tag-license-bg); color: var(--tag-license-fg); }
.work-ver { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); }
.work-desc { color: var(--ink-2); font-size: 0.98rem; }
.work-desc a { color: var(--accent); font-weight: 600; }
.work-desc a:hover { color: var(--accent-dark); }

@media (max-width: 820px) {
  .work-row { grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 28px 4px; }
  .work-desc { grid-column: 1 / -1; }
}

/* ---------- Principles ---------- */
.principles { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(64px, 9vw, 128px); }
.principles .pr-head { position: sticky; top: 120px; align-self: start; }
.principles h2 { margin-bottom: 16px; }
.principles .pr-head p { color: var(--ink-2); max-width: 44ch; }
.principle { padding: 34px 0; border-top: 1px solid var(--line-strong); }
.principle:last-child { border-bottom: 1px solid var(--line-strong); }
.principle h3 { font-size: 1.25rem; margin-bottom: 8px; }
.principle p { color: var(--ink-2); max-width: 52ch; font-size: 0.98rem; }
@media (max-width: 820px) {
  .principles { grid-template-columns: 1fr; gap: 12px; }
  .principles .pr-head { position: static; }
}

/* ---------- Studio / name ---------- */
.studio-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(64px, 8vw, 112px); align-items: center; }
@media (max-width: 820px) { .studio-grid { grid-template-columns: 1fr; gap: 36px; } }
.studio-note {
  position: relative; background: var(--ink-solid); color: #e8eae6;
  padding: 48px 44px; margin-left: 10px; margin-top: 10px;
  box-shadow: 8px 14px 34px rgba(16, 18, 20, 0.16);
}
.studio-note::before {
  content: ""; position: absolute; left: -10px; bottom: -10px;
  width: 64%; height: 3px; background: var(--orange); z-index: -1;
}
.studio-note .note-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #a9b0a6; }
.studio-note p { color: #d8dcd4; margin-top: 18px; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.45; }
.studio-note p em { color: var(--orange-soft); font-style: italic; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item { padding: 0 0 24px; border-top: 1px solid var(--line-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  cursor: pointer; list-style: none; padding: 26px 0 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.25rem; margin: 0; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto;
  font-family: var(--font-mono); font-size: 1.15rem; line-height: 1;
  color: var(--accent); transition: transform .2s ease-out;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-2); max-width: 60ch; font-size: 0.98rem; padding-top: 10px; }
.faq-item p a { color: var(--accent); font-weight: 600; }
.faq-item p a:hover { color: var(--accent-dark); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(64px, 9vw, 128px); align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-grid form { background: var(--surface); border: 1px solid var(--line-strong); padding: 42px; }

.field { margin-bottom: 22px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: 400 0.97rem/1.5 var(--font-body); color: var(--ink);
  min-height: 52px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .15s ease-out, box-shadow .15s ease-out;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29, 96, 61, 0.12); }
.form-msg { display: none; padding: 13px 15px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 20px; }
.form-msg.show { display: block; }
.form-msg.info { background: var(--paper); color: var(--ink-2); border: 1px solid var(--line); }
.form-msg.success { background: var(--accent-soft); color: var(--accent-dark); }
.form-msg.error { background: var(--orange-soft); color: #753411; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--orange); }
.contact-meta { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 20px; }
.contact-meta a { font-weight: 600; color: var(--accent); }
.contact-meta a:hover { color: var(--accent-dark); }
.contact-meta li { padding: 7px 0; font-size: 0.94rem; color: var(--ink-2); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--cta-bg); color: #fff; padding: 96px 0; border-top: 3px solid var(--orange); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 52ch; }
.cta-band .btn-solid { background: #fff; color: var(--cta-bg); }
.cta-band .btn-solid:hover { background: var(--accent-soft); }
.cta-band .btn-line { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.cta-band .btn-line:hover { border-color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-solid); color: #9aa19b; padding: 84px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.7fr; gap: 56px; padding-bottom: 60px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand-mark { background: #f4f5f1; color: var(--ink-solid); }
.site-footer .brand-name small { color: #8f9790; }
.footer-brand p { color: #a8b0a8; margin-top: 24px; font-size: 0.92rem; max-width: 38ch; }
.footer-col h3 { color: #fff; font-size: 0.84rem; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-col a { color: #a8b0a8; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 26px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; }
.footer-bottom .llc { color: #7d857e; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink-solid); color: #fff; padding: 12px 18px;
  font-weight: 600; font-size: 0.9rem; border-radius: var(--radius-sm);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Sub-page head ---------- */
.page-head { padding: 112px 0 96px; border-bottom: 1px solid var(--line); }
.page-head .container { width: min(100% - 48px, 860px); }
.page-head h1 { margin: 22px 0 22px; line-height: 1.02; text-wrap: balance; }
.page-head .sub { font-size: 1.12rem; color: var(--ink-2); max-width: 56ch; }
.page-head .crumbs { font-size: 0.8rem; color: var(--muted); }
.page-body { padding: 0 0 96px; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature { border-top: 1px solid var(--line-strong); background: transparent; padding: 32px 8px 12px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--ink-2); font-size: 0.97rem; }
.feature .mono { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Legal / prose ---------- */
.legal { max-width: 740px; font-size: 1.02rem; }
.legal .updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 12px; }
.legal p { color: var(--ink-2); margin-bottom: 1em; }
.legal ul { list-style: none; margin: 0 0 1.2em; }
.legal li { position: relative; padding-left: 22px; color: var(--ink-2); margin-bottom: 8px; }
.legal li::before { content: ""; position: absolute; left: 4px; top: 0.62em; width: 6px; height: 6px; background: var(--accent); }
.legal a { color: var(--accent); font-weight: 600; }
.legal a:hover { color: var(--accent-dark); }

/* ---------- Changelog ---------- */
.changelog { max-width: 760px; }
.cl-entry { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line-strong); }
.cl-entry:last-child { border-bottom: 1px solid var(--line-strong); }
.cl-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); }
.cl-meta .ver { display: block; font-weight: 500; color: var(--ink); }
.cl-meta .tag { display: inline-block; margin-top: 6px; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 7px; border-radius: 999px; background: var(--tag-license-bg); color: var(--tag-license-fg); }
.cl-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.cl-body ul { list-style: none; }
.cl-body li { position: relative; padding-left: 22px; color: var(--ink-2); margin-bottom: 8px; }
.cl-body li::before { content: ""; position: absolute; left: 4px; top: 0.62em; width: 6px; height: 6px; background: var(--accent); }
@media (max-width: 640px) { .cl-entry { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- Signature ---------- */
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); }

/* ---------- 404 ---------- */
.page-404 { padding: 96px 0 140px; }
.page-404 .container { max-width: 640px; }
.page-404-code { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.page-404 h1 { margin: 16px 0 14px; }
.page-404 p { color: var(--ink-2); max-width: 52ch; }

/* ---------- Responsive finishing ---------- */
@media (max-width: 640px) {
  .container { width: min(100% - 40px, var(--maxw)); }
  .nav { height: 72px; }
  .brand { gap: 11px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 0.95rem; }
  .brand-name small { font-size: 0.62rem; letter-spacing: 0.07em; }
  .nav-links { top: 72px; padding-inline: 20px; }

  h1 { font-size: clamp(2.85rem, 13.5vw, 3.55rem); }
  h2 { font-size: 2.15rem; }
  .hero { padding: 64px 0 72px; }
  .hero h1 { max-width: 9.5ch; margin-bottom: 24px; }
  .hero .sub { font-size: 1.04rem; line-height: 1.65; }
  .hero-actions { margin-top: 30px; }
  .hero-actions .btn { flex: 1 1 150px; }
  .hero-foot { margin-top: 34px; gap: 8px 18px; }
  .sheet-stack { padding: 18px 14px 14px 0; }
  .sheet-stack::before { width: 80%; }
  .sheet { padding: 28px 24px 24px; }
  .sheet-title { font-size: 1.45rem; }
  .sheet-meta { justify-content: flex-start; }

  .section { padding: 84px 0; }
  .manifesto { padding: 90px 0; }
  .manifesto .lead { font-size: 1.65rem; line-height: 1.38; }
  .sec-head { margin-bottom: 44px; }
  .lane-cell { padding: 34px 0; }
  .work-row { grid-template-columns: 1fr; gap: 8px; }
  .work-tag { margin-top: 6px; }
  .work-desc { grid-column: auto; margin-top: 8px; }
  .studio-note { padding: 38px 30px; margin-left: 6px; margin-top: 6px; }
  .studio-note::before { left: -6px; bottom: -6px; }
  .faq-item summary { align-items: center; }
  .faq-item summary h3 { font-size: 1.15rem; line-height: 1.25; }
  .cta-band { padding: 72px 0; }
  .footer-grid { gap: 40px; }
  .contact-grid form { padding: 28px 22px; }

  .page-head { padding: 76px 0 64px; }
  .page-head .container { width: min(100% - 40px, 860px); }
  .page-head h1 { margin: 18px 0; }
  .page-body { padding-bottom: 72px; }
}

/* ---------- Reveal (enhanced by GSAP, visible at rest) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .faq-item summary::after { transition: none; }
}
