@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #11100f;
  --paper: #f5f1e9;
  --paper-2: #ebe4d8;
  --paper-3: #ded4c4;
  --muted: #6e6860;
  --line: rgba(17, 16, 15, .16);
  --line-strong: rgba(17, 16, 15, .32);
  --white: #fffdf8;
  --accent: #c62d32;
  --accent-dark: #8f1d24;
  --max: 1380px;
  --content: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 76px;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(245, 241, 233, .91);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: -.02em; }
.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
}
.brand-name { font-size: 14px; line-height: 1; }
.brand-name span { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .2em; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 12px; }
.nav a { position: relative; }
.nav > a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 15px; transition: .2s ease; }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; }
.menu-button span { display: block; width: 24px; height: 1px; background: currentColor; margin: 5px 0; }

.section-pad { padding: 112px 32px; }
.eyebrow { margin: 0 0 34px; color: var(--muted); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 20px; font-size: 12px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.text-link { display: inline-block; padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: 12px; }
.text-link span { margin-left: 8px; }

/* Homepage */
.hero {
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 132px 32px 36px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  grid-template-rows: auto 1fr auto;
  gap: 28px 44px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(to right, transparent calc(33.333% - .5px), rgba(17,16,15,.07) 33.333%, transparent calc(33.333% + .5px)),
    linear-gradient(to right, transparent calc(66.666% - .5px), rgba(17,16,15,.07) 66.666%, transparent calc(66.666% + .5px));
}
.hero-kicker { grid-column: 1 / -1; text-transform: uppercase; letter-spacing: .24em; font-size: 10px; color: var(--muted); }
.hero-kicker span { color: var(--accent); margin: 0 8px; }
.hero-copy { align-self: center; max-width: 1050px; position: relative; z-index: 1; }
.hero h1,
.section-heading h2,
.manifesto h2,
.split-intro h2,
.japan-copy h2,
.contact h2,
.page-hero h1,
.article-hero h1,
.perspectives-hero h1 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0;
}
.hero h1 { font-size: clamp(68px, 9vw, 128px); line-height: .86; }
.hero h1 em { font-weight: 400; color: var(--accent); }
.hero-lede { max-width: 720px; margin: 34px 0 0; color: #3e3a35; font-size: clamp(18px, 1.8vw, 23px); line-height: 1.45; }
.hero-lede strong { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; }
.hero-aside { align-self: end; padding-bottom: 4px; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.hero-aside p { margin: 4px 0; }
.scroll-note { grid-column: 1 / -1; display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 14px; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; color: var(--muted); }

.manifesto { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.manifesto h2 { font-size: clamp(48px, 6.4vw, 88px); line-height: .96; }
.manifesto-copy { max-width: 520px; padding-top: 8px; }
.manifesto-copy p { margin: 0 0 24px; font-size: 19px; line-height: 1.6; }
.manifesto-copy em { font-family: 'Instrument Serif', serif; font-size: 1.08em; }

.services { background: var(--ink); color: var(--white); }
.services .eyebrow { color: #88847e; }
.section-heading { max-width: var(--max); margin: 0 auto 64px; }
.section-heading h2 { font-size: clamp(48px, 6.3vw, 86px); line-height: .95; }
.service-list { max-width: var(--max); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.18); }
.service-item { display: grid; grid-template-columns: 72px minmax(0, 1fr) 210px; gap: 28px; padding: 31px 0; border-bottom: 1px solid rgba(255,255,255,.18); align-items: start; }
.service-number, .service-meta { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: #85817b; }
.service-item h3 { margin: -6px 0 10px; font-family: 'Instrument Serif', serif; font-weight: 400; font-size: clamp(31px, 3.7vw, 48px); letter-spacing: -.025em; }
.service-item h3 a:hover { color: #f2b7b4; }
.service-item p { max-width: 690px; margin: 0; color: #c6c1ba; font-size: 14px; line-height: 1.7; }
.service-link { display: inline-block; margin-top: 16px; border-bottom: 1px solid rgba(255,255,255,.42); color: var(--white); font-size: 11px; padding-bottom: 3px; }
.service-meta { text-align: right; }

.split-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; }
.split-intro { position: sticky; top: 125px; align-self: start; }
.split-intro h2 { font-size: clamp(47px, 5.7vw, 76px); line-height: .96; }
.split-intro h2 em { color: var(--accent); font-weight: 400; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 29px 0 35px; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--muted); font-size: 10px; }
.steps strong { font-family: 'Instrument Serif', serif; font-size: 33px; font-weight: 400; }
.steps p { margin: 7px 0 0; color: #5c5750; max-width: 470px; font-size: 14px; }

.japan-section { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); display: grid; grid-template-columns: .62fr 1.38fr; min-height: 650px; overflow: hidden; }
.japan-symbol { display: grid; place-items: center; background: var(--accent); color: var(--paper); font-family: 'Instrument Serif', serif; font-size: clamp(190px, 25vw, 350px); line-height: 1; user-select: none; }
.japan-copy { display: flex; flex-direction: column; justify-content: center; max-width: 780px; }
.japan-copy h2 { font-size: clamp(48px, 5.9vw, 78px); line-height: .97; margin-bottom: 34px; }
.japan-copy h2 em { color: var(--accent); font-weight: 400; }
.japan-copy > p:not(.eyebrow) { max-width: 640px; margin: 0 0 18px; color: #4c4740; font-size: 16px; line-height: 1.72; }
.inline-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 12px !important; }
.inline-links a { border-bottom: 1px solid var(--ink); font-size: 12px; padding-bottom: 2px; }

.studio { max-width: var(--max); margin: 0 auto; }
.studio-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }
.studio-lede { max-width: 760px; margin: 0; font-family: 'Instrument Serif', serif; font-size: clamp(31px, 3.7vw, 49px); line-height: 1.16; letter-spacing: -.025em; }
.studio-card { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); padding: 24px 0 4px; }
.card-label { display: block; margin-bottom: 21px; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.studio-card ul { list-style: none; padding: 0; margin: 0; }
.studio-card li { padding: 14px 0; border-top: 1px solid var(--line); font-size: 13px; }
.studio-link { margin-top: 30px; }

.home-perspectives { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.home-perspectives .section-heading h2 em { color: var(--accent); font-weight: 400; }
.home-perspectives-grid { display: grid; grid-template-columns: 1.16fr .84fr; gap: 80px; }
.perspective-feature { border-top: 2px solid var(--ink); padding-top: 22px; }
.perspective-feature > span { color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.perspective-feature h3 { max-width: 800px; margin: 27px 0 18px; font-family: 'Instrument Serif', serif; font-size: clamp(38px, 4.8vw, 61px); font-weight: 400; letter-spacing: -.035em; line-height: 1.01; }
.perspective-feature p { max-width: 660px; color: #5c5750; font-size: 15px; line-height: 1.65; }
.perspective-links { border-top: 1px solid var(--line); }
.perspective-links a { display: flex; justify-content: space-between; gap: 22px; padding: 19px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.perspective-links a:hover { color: var(--accent-dark); }
.perspective-links .all-perspectives { margin-top: 20px; border: 0; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }

.contact { background: var(--accent); color: var(--white); }
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(56px, 7vw, 112px); align-items: start; }
.contact-intro { align-self: start; padding-top: 4px; }
.contact-intro .eyebrow { color: rgba(255,255,255,.72); }
.contact h2 { max-width: 560px; font-size: clamp(58px, 6.5vw, 94px); line-height: .9; }
.contact-action { width: 100%; max-width: 760px; justify-self: end; }
.contact-action > p { max-width: 650px; margin: 0 0 24px; font-size: 18px; line-height: 1.55; }

.footer { background: var(--ink); color: var(--white); padding: 46px 32px 30px; display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.footer-brand { font-family: 'Instrument Serif', serif; font-size: clamp(27px, 3.7vw, 48px); letter-spacing: -.02em; }
.footer-brand span { color: #807c76; }
.footer-meta { display: flex; gap: 22px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #aaa59e; }
.footer-meta a { padding-block: 3px; border-bottom: 1px solid rgba(255,253,248,.4); color: rgba(255,253,248,.88); font-weight: 600; }
.footer-meta a:hover { border-color: var(--white); color: var(--white); }
.footer-credit strong { color: var(--white); font-family: 'Instrument Serif', serif; font-size: 1.35em; font-weight: 400; letter-spacing: .03em; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }

/* Utility pages */
.legal { max-width: 820px; margin: 0 auto; padding: 140px 32px 90px; }
.legal h1 { margin: 0 0 46px; font-family: 'Instrument Serif', serif; font-size: clamp(50px, 7.5vw, 82px); font-weight: 400; letter-spacing: -.04em; }
.legal h2 { margin-top: 42px; font-family: 'Instrument Serif', serif; font-size: 28px; font-weight: 400; }
.legal p, .legal li { color: #4d4841; line-height: 1.75; }
.legal-back { display: inline-block; margin-bottom: 28px; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.not-found { min-height: 100svh; max-width: var(--max); margin: 0 auto; padding: 116px 32px 64px; display: flex; flex-direction: column; justify-content: flex-end; }
.not-found-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.not-found h1 { max-width: 800px; margin: 0; font-family: 'Instrument Serif', serif; font-size: clamp(68px, 10vw, 138px); font-weight: 400; letter-spacing: -.05em; line-height: .84; }
.not-found-grid > div > p { max-width: 500px; color: #504b44; font-size: 18px; line-height: 1.65; }

/* Commercial + editorial pages */
.breadcrumbs { margin-bottom: 48px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.breadcrumbs li + li::before { content: '/'; margin-right: 9px; color: rgba(17,16,15,.32); }
.breadcrumbs a:hover { color: var(--ink); }

.page-hero, .article-hero, .perspectives-hero { max-width: var(--max); margin: 0 auto; padding-top: 145px; padding-bottom: 72px; }
.page-hero { min-height: 62svh; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero .breadcrumbs { margin-bottom: auto; }
.page-hero h1 { max-width: 1030px; font-size: clamp(56px, 7.4vw, 96px); line-height: .92; }
.page-dek { max-width: 760px; margin: 30px 0 0; color: #49443d; font-size: clamp(18px, 1.8vw, 22px); line-height: 1.5; }

.page-intro { max-width: var(--max); margin: 0 auto; padding-top: 62px; padding-bottom: 62px; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); }
.page-intro > p { max-width: 980px; margin: 0; padding-left: clamp(24px, 4vw, 58px); border-left: 4px solid var(--accent); font-family: 'Instrument Serif', serif; font-size: clamp(29px, 3.8vw, 47px); letter-spacing: -.025em; line-height: 1.17; }

.content-layout { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 245px minmax(0, var(--content)); gap: clamp(60px, 8vw, 120px); align-items: start; justify-content: center; }
.content-aside { position: sticky; top: 120px; }
.content-aside .eyebrow { margin-bottom: 18px; }
.content-aside ol { margin: 0; padding: 0; list-style: none; counter-reset: questions; border-top: 2px solid var(--ink); }
.content-aside li { counter-increment: questions; display: grid; grid-template-columns: 32px 1fr; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--line); color: #5a554e; font-size: 11px; line-height: 1.45; }
.content-aside li::before { content: counter(questions, decimal-leading-zero); color: var(--accent); font-size: 8px; letter-spacing: .1em; }
.prose { max-width: var(--content); }
.prose section + section { margin-top: 64px; padding-top: 58px; border-top: 1px solid var(--line); }
.prose h2 { margin: 0 0 23px; font-family: 'Instrument Serif', serif; font-size: clamp(34px, 3.9vw, 48px); font-weight: 400; letter-spacing: -.03em; line-height: 1.04; }
.prose p { margin: 0 0 20px; color: #46413a; font-size: 16px; line-height: 1.78; }
.prose a, .article-cta p a, .page-cta p a { border-bottom: 1px solid var(--accent); color: var(--accent-dark); }

.page-cta { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); background: var(--ink); color: var(--white); display: grid; grid-template-columns: 220px minmax(0, 780px); gap: clamp(50px, 8vw, 110px); justify-content: center; }
.page-cta .eyebrow { color: #8e8982; }
.page-cta h2, .article-cta h2 { max-width: 780px; margin: 0; font-family: 'Instrument Serif', serif; font-size: clamp(45px, 5.8vw, 72px); font-weight: 400; letter-spacing: -.04em; line-height: .96; }
.page-cta p, .article-cta p { max-width: 590px; margin: 23px 0; font-size: 16px; line-height: 1.65; }
.page-cta p a { border-color: rgba(255,255,255,.6); color: inherit; }

.related, .perspective-index { max-width: var(--max); margin: 0 auto; }
.compact-heading { margin-bottom: 42px; }
.compact-heading h2 { font-size: clamp(43px, 5.3vw, 66px); }
.editorial-list { border-top: 2px solid var(--ink); }
.editorial-row { display: grid; grid-template-columns: 54px minmax(0, 1fr) 24px; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--line); align-items: start; }
.editorial-row > span { color: var(--muted); font-size: 9px; letter-spacing: .15em; }
.editorial-row h3 { margin: -5px 0 9px; font-family: 'Instrument Serif', serif; font-size: clamp(27px, 3vw, 40px); font-weight: 400; letter-spacing: -.025em; line-height: 1.06; }
.editorial-row p { max-width: 720px; margin: 0; color: #5e5952; font-size: 14px; line-height: 1.62; }
.editorial-row small { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.editorial-row:hover h3 { color: var(--accent-dark); }

.article-hero { max-width: 1120px; padding-bottom: 62px; border-bottom: 1px solid var(--line); }
.article-hero h1 { max-width: 1040px; font-size: clamp(51px, 6.7vw, 86px); line-height: .94; }
.article-hero .page-dek { max-width: 730px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 38px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.article-layout { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 180px minmax(0, 720px); gap: 74px; align-items: start; justify-content: center; }
.article-aside { position: sticky; top: 120px; padding-top: 4px; color: var(--muted); border-top: 2px solid var(--accent); }
.japanese-index { display: block; margin-top: 18px; color: var(--accent); font-family: 'Instrument Serif', serif; font-size: 78px; line-height: .85; }
.article-aside p { max-width: 170px; margin-top: 26px; font-size: 10px; line-height: 1.65; }
.article-prose h2 { font-size: clamp(32px, 3.6vw, 45px); }
.article-prose > section:first-child h2::before { content: '01 / '; color: var(--accent); font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: .15em; vertical-align: middle; }
.article-cta { max-width: 1050px; margin: 0 auto; border-top: 1px solid var(--line); display: grid; grid-template-columns: 180px minmax(0, 720px); gap: 74px; justify-content: center; }
.article-cta h2 { font-size: clamp(41px, 5vw, 62px); }

.perspectives-hero { min-height: 68svh; display: flex; flex-direction: column; justify-content: flex-end; }
.perspectives-hero > div { margin-top: 60px; }
.perspectives-hero h1 { max-width: 1080px; font-size: clamp(58px, 7.8vw, 102px); line-height: .91; }
.perspectives-hero h1 em { color: var(--accent); font-weight: 400; }
.featured-perspective { max-width: var(--max); margin: 0 auto; min-height: 520px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); color: var(--ink); display: grid; grid-template-columns: 180px minmax(0, 820px); gap: clamp(56px, 8vw, 110px); align-items: center; justify-content: center; }
.featured-index { align-self: start; padding-top: 4px; color: var(--accent); font-family: 'Instrument Serif', serif; font-size: clamp(90px, 11vw, 150px); line-height: .8; }
.featured-perspective .eyebrow { color: var(--muted); margin-bottom: 23px; }
.featured-perspective h2 { max-width: 820px; margin: 0; font-family: 'Instrument Serif', serif; font-size: clamp(42px, 5.5vw, 68px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.featured-perspective h2 a:hover { color: var(--accent-dark); }
.featured-perspective p { max-width: 660px; margin: 25px 0; color: #514c45; font-size: 15px; line-height: 1.68; }

@media (max-width: 900px) {
  .site-header { padding: 17px 20px; }
  .nav { position: fixed; top: 0; right: 0; width: min(82vw, 360px); height: 100svh; background: var(--ink); color: var(--white); padding: 100px 28px 30px; display: flex; flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility 0s linear .3s; }
  .nav.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .nav-cta { border: 0; border-radius: 0; }
  .menu-button { display: block; position: relative; z-index: 60; }
  .menu-button.active { color: var(--white); }
  .hero { padding: 120px 20px 28px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(62px, 17vw, 104px); }
  .hero-aside { display: none; }
  .section-pad { padding: 82px 20px; }
  .manifesto-grid, .split-section, .studio-grid, .contact-grid, .japan-section, .home-perspectives-grid, .content-layout, .article-layout, .page-cta, .article-cta, .featured-perspective, .not-found-grid { grid-template-columns: 1fr; }
  .manifesto-grid, .split-section, .studio-grid, .contact-grid, .home-perspectives-grid, .content-layout, .article-layout, .page-cta, .article-cta, .featured-perspective { gap: 44px; }
  .split-intro { position: static; }
  .service-item { grid-template-columns: 44px 1fr; }
  .service-meta { display: none; }
  .japan-section { min-height: 0; }
  .japan-symbol { height: 260px; font-size: 190px; }
  .japan-copy { padding-top: 70px; }
  .contact-action { max-width: none; justify-self: start; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-wrap: wrap; }
  .content-aside, .article-aside { position: static; }
  .content-aside { max-width: 620px; }
  .article-aside { display: none; }
  .featured-perspective { min-height: auto; }
  .featured-index { font-size: 96px; }
  .breadcrumbs { margin-bottom: 42px; }
  .page-hero { min-height: 560px; }
  .page-intro > p { padding-left: 24px; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .hero { min-height: 820px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .manifesto-copy p { font-size: 17px; }
  .service-item { grid-template-columns: 1fr; gap: 10px; }
  .service-item h3 { margin-top: 0; }
  .steps li { grid-template-columns: 40px 1fr; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 9px; }
  .page-hero, .article-hero, .perspectives-hero { padding-top: 120px; }
  .page-hero h1, .perspectives-hero h1 { font-size: clamp(52px, 15vw, 76px); }
  .article-hero h1 { font-size: clamp(46px, 13vw, 68px); }
  .editorial-row { grid-template-columns: 30px minmax(0, 1fr) 16px; gap: 11px; }
  .prose p { font-size: 15.5px; }
  .page-intro > p { font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
