:root {
  --ink: #11100f;
  --soft-ink: #292724;
  --paper: #f8f8f5;
  --white: #ffffff;
  --muted: #66645f;
  --rule: #cbc9c1;
  --pink: #e22f64;
  --yellow: #f5d547;
  --cyan: #56ced6;
  --serif: "Alegreya", Georgia, serif;
  --sans: "Cabin", "Trebuchet MS", sans-serif;
  --display: "Franklin Gothic Heavy", "Arial Black", sans-serif;
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--ink);
  color: var(--ink);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
button, input, textarea, select { font: inherit; }
button { letter-spacing: 0; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  background: var(--yellow);
  color: var(--ink);
  font: 700 0.92rem/1 var(--sans);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 50;
  min-height: 72px;
  border-bottom: 1px solid #3a3835;
  background: var(--ink);
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  width: min(calc(100% - 40px), var(--shell));
  min-height: 72px;
  margin: 0 auto;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
  font: 900 1.03rem/1 var(--sans);
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 3px solid var(--pink);
  color: var(--pink);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  font: 700 0.82rem/1.2 var(--sans);
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.6rem 0;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  content: "";
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-contact {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--yellow);
  padding: 0.48rem 0.72rem;
  color: var(--yellow);
  font: 700 0.78rem/1 var(--sans);
  text-decoration: none;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #55514d;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }
.menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100svh - 112px));
  align-items: stretch;
  overflow: hidden;
  background: #f5a0a7;
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.15) 48%, rgba(255,255,255,0) 70%),
    linear-gradient(0deg, rgba(17,16,15,0.9) 0%, rgba(17,16,15,0) 40%);
  content: "";
}

.hero-inner {
  display: grid;
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
  padding: 3.4rem 0 2.5rem;
  grid-template-rows: auto 1fr auto;
}

.hero-kicker,
.eyebrow {
  margin: 0;
  font: 700 0.77rem/1.25 var(--sans);
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
}

.hero-kicker::before {
  width: 38px;
  height: 4px;
  background: var(--ink);
  content: "";
}

.hero h1 {
  width: min(750px, 72%);
  align-self: center;
  margin: 0;
  font: 900 6.2rem/0.86 var(--display);
  text-transform: uppercase;
}

.hero-bottom {
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font: 500 1.33rem/1.4 var(--sans);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.text-link,
.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  font: 700 0.8rem/1 var(--sans);
  text-decoration: none;
  text-transform: uppercase;
}

.button-link { background: var(--yellow); color: var(--ink); }
.text-link { border: 1px solid rgba(255,255,255,0.68); color: var(--white); }
.button-link:hover { background: var(--cyan); }
.text-link:hover { border-color: var(--pink); color: #ffd5df; }

.article-surface {
  position: relative;
  overflow: hidden;
  border-top: 8px solid var(--yellow);
  background: var(--ink);
  color: var(--white);
}

.article-surface::after {
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 22rem;
  height: 10rem;
  border: 2rem solid var(--pink);
  content: "";
  opacity: 0.35;
  transform: rotate(-9deg);
}

.surface-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
  padding: 4.6rem 0 5rem;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 2.25rem;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
}

.section-heading h2,
.section-title {
  margin: 0.35rem 0 0;
  overflow-wrap: anywhere;
  font: 900 3.45rem/0.97 var(--display);
  text-transform: uppercase;
}

.section-heading p:last-child { margin: 0; color: #c9c6c0; font-family: var(--sans); line-height: 1.45; }

.tab-list {
  display: flex;
  width: 100%;
  gap: 0;
  overflow-x: auto;
  border: 1px solid #4c4945;
  scrollbar-width: thin;
}

.tab-list button {
  flex: 1 0 auto;
  min-height: 47px;
  border: 0;
  border-right: 1px solid #4c4945;
  padding: 0.7rem 1rem;
  background: transparent;
  color: #c9c6c0;
  cursor: pointer;
  font: 700 0.77rem/1.2 var(--sans);
  text-transform: uppercase;
}

.tab-list button:last-child { border-right: 0; }
.tab-list button[aria-selected="true"] { background: var(--pink); color: var(--white); }
.tab-list button:hover { color: var(--white); }

.story-grid {
  display: grid;
  margin-top: 1px;
  border-top: 1px solid #4c4945;
  border-left: 1px solid #4c4945;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-link {
  position: relative;
  display: grid;
  min-height: 218px;
  align-content: space-between;
  gap: 1.2rem;
  border-right: 1px solid #4c4945;
  border-bottom: 1px solid #4c4945;
  padding: 1.35rem;
  color: var(--white);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.story-link::after {
  justify-self: end;
  color: var(--yellow);
  content: "↗";
  font: 700 1.35rem/1 var(--sans);
}

.story-link:hover { background: var(--white); color: var(--ink); }
.story-link:hover::after { color: var(--pink); }
.story-link .eyebrow { color: var(--cyan); }
.story-link:hover .eyebrow { color: #006d74; }
.story-link h3 { margin: 0.65rem 0 0; font: 700 1.38rem/1.16 var(--sans); }
.story-link p { margin: 0.65rem 0 0; color: #bdbab3; font: 0.91rem/1.4 var(--sans); }
.story-link:hover p { color: #55524d; }

.article-panel[hidden] { display: none; }
html:not(.js) .article-panel[hidden] { display: block; }

.band { border-bottom: 1px solid var(--rule); }
.band-inner { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; padding: 5.6rem 0; }

.manifesto {
  background: var(--white);
}

.manifesto-grid {
  display: grid;
  align-items: start;
  gap: 3.2rem;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
}

.manifesto .section-title { max-width: 360px; font-size: 2.9rem; }
.manifesto-copy { max-width: 820px; }
.manifesto-copy > p:first-child { margin-top: 0; font: 700 2rem/1.28 var(--serif); }
.manifesto-copy > p:last-child { margin-bottom: 0; font-family: var(--sans); color: var(--muted); }

.service-list { border-top: 2px solid var(--ink); }
.service-row {
  display: grid;
  gap: 1.4rem;
  border-bottom: 1px solid var(--rule);
  padding: 1.7rem 0;
  grid-template-columns: 46px minmax(180px, 0.45fr) minmax(0, 1fr);
}
.service-index { color: var(--pink); font: 700 0.83rem/1.6 var(--sans); }
.service-row h3 { margin: 0; font: 700 1.25rem/1.25 var(--sans); }
.service-row p { max-width: 700px; margin: 0; color: var(--muted); font-family: var(--sans); }

.projects-band { background: var(--yellow); }
.projects-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
.projects-head .section-title { max-width: 760px; }
.projects-head a { font: 700 0.82rem/1 var(--sans); text-transform: uppercase; }
.project-grid {
  display: grid;
  border-top: 2px solid var(--ink);
  border-left: 1px solid rgba(17,16,15,0.45);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.project-link {
  display: grid;
  min-height: 195px;
  align-content: space-between;
  border-right: 1px solid rgba(17,16,15,0.45);
  border-bottom: 1px solid rgba(17,16,15,0.45);
  padding: 1.4rem;
  text-decoration: none;
}
.project-link span { font: 700 0.73rem/1.2 var(--sans); text-transform: uppercase; }
.project-link strong { display: block; font: 900 1.55rem/1.08 var(--display); text-transform: uppercase; }
.project-link:hover { background: var(--pink); color: var(--white); }

.cta-band { background: var(--cyan); }
.cta-grid { display: grid; align-items: end; gap: 2rem; grid-template-columns: minmax(0, 1fr) auto; }
.cta-grid h2 { max-width: 900px; margin: 0; font: 900 3.6rem/0.98 var(--display); text-transform: uppercase; }
.cta-grid a { border-bottom: 3px solid var(--ink); font: 700 0.9rem/1.4 var(--sans); text-decoration: none; text-transform: uppercase; }

.page-hero {
  border-bottom: 8px solid var(--pink);
  background: var(--ink);
  color: var(--white);
}
.page-hero-inner { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; padding: 5.5rem 0 4.5rem; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero h1 { max-width: 980px; margin: 0.65rem 0 0; font: 900 4.5rem/0.98 var(--display); text-transform: uppercase; }
.page-hero p { max-width: 760px; margin: 1.4rem 0 0; color: #cfccc6; font: 1.2rem/1.45 var(--sans); }

.content-shell { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; padding: 4.5rem 0 6rem; }
.prose-layout { display: grid; align-items: start; gap: 4rem; grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr); }
.prose-aside { position: sticky; top: 1.5rem; }
.prose-aside p { margin: 0; color: var(--muted); font: 0.85rem/1.45 var(--sans); text-transform: uppercase; }
.prose { max-width: 820px; min-width: 0; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin: 2.4rem 0 0.75rem; font: 900 2rem/1.08 var(--display); text-transform: uppercase; }
.prose h3 { margin: 1.8rem 0 0.55rem; font: 700 1.25rem/1.25 var(--sans); }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose blockquote { margin: 2rem 0; border-left: 7px solid var(--pink); padding: 0.3rem 0 0.3rem 1.4rem; font: 700 1.6rem/1.3 var(--serif); }
.prose a { color: #b51648; font-weight: 700; }
.prose img { width: auto; max-height: 560px; margin: 2rem auto; border: 1px solid var(--rule); }
.prose table { display: block; width: 100%; max-width: 100%; margin: 2rem 0; overflow-x: auto; border-collapse: collapse; font: 0.89rem/1.4 var(--sans); }
.prose th, .prose td { min-width: 130px; border: 1px solid var(--rule); padding: 0.75rem; text-align: left; }
.prose th { background: var(--ink) !important; color: var(--white) !important; }
.prose td { background: var(--white) !important; color: var(--ink) !important; }
.prose hr { margin: 2.5rem 0; border: 0; border-top: 1px solid var(--rule); }

.format-strip { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0 2rem; }
.format-strip span { border: 1px solid var(--ink); padding: 0.35rem 0.5rem; font: 700 0.75rem/1 var(--sans); }

.reference-list { border-top: 2px solid var(--ink); }
.reference-item { display: grid; gap: 1rem; border-bottom: 1px solid var(--rule); padding: 1.2rem 0; grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr); }
.reference-item strong { font-family: var(--sans); }
.reference-item p { margin: 0; }

.portfolio-list { display: grid; border-top: 2px solid var(--ink); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.portfolio-item { min-width: 0; min-height: 250px; overflow-wrap: anywhere; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1.7rem; text-decoration: none; }
.portfolio-item:nth-child(2n) { border-right: 0; }
.portfolio-item span { color: var(--pink); font: 700 0.75rem/1.2 var(--sans); text-transform: uppercase; }
.portfolio-item h2 { margin: 2.4rem 0 0.6rem; font: 900 1.9rem/1.05 var(--display); text-transform: uppercase; }
.portfolio-item p { margin: 0; color: var(--muted); font-family: var(--sans); }
.portfolio-item:hover { background: var(--ink); color: var(--white); }
.portfolio-item:hover p { color: #c9c6c0; }

.project-meta { display: grid; margin-bottom: 3rem; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--rule); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-meta div { border-right: 1px solid var(--rule); padding: 1rem; }
.project-meta div:last-child { border-right: 0; }
.project-meta span { display: block; color: var(--muted); font: 700 0.7rem/1.2 var(--sans); text-transform: uppercase; }
.project-meta strong { display: block; margin-top: 0.3rem; font: 700 1rem/1.35 var(--sans); }

.library-intro { display: grid; align-items: end; gap: 2rem; margin-bottom: 2.7rem; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr); }
.library-intro > * { min-width: 0; overflow-wrap: anywhere; }
.library-intro h2 { margin: 0; font: 900 3rem/1 var(--display); text-transform: uppercase; }
.library-intro p { margin: 0; color: var(--muted); font-family: var(--sans); }
.library-group { border-top: 2px solid var(--ink); }
.library-group summary { display: grid; padding: 1.2rem 0; cursor: pointer; list-style: none; font: 900 1.35rem/1.2 var(--display); text-transform: uppercase; grid-template-columns: 1fr auto; }
.library-group summary::-webkit-details-marker { display: none; }
.library-group summary::after { color: var(--pink); content: "+"; font-family: var(--sans); }
.library-group[open] summary::after { content: "−"; }
.library-links { display: grid; padding-bottom: 1.8rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.library-links a { display: grid; min-height: 118px; align-content: space-between; border: 1px solid var(--rule); margin: -1px 0 0 -1px; padding: 1rem; text-decoration: none; }
.library-links a span { color: var(--muted); font: 0.76rem/1.2 var(--sans); text-transform: uppercase; }
.library-links a strong { font: 700 1.08rem/1.25 var(--sans); }
.library-links a:hover { border-color: var(--pink); background: var(--white); color: #a20d3b; }

.article-page { background: var(--white); }
.article-head { border-bottom: 1px solid var(--rule); background: var(--paper); }
.article-head-inner { width: min(calc(100% - 40px), 980px); margin: 0 auto; padding: 5rem 0 3.3rem; }
.article-head .eyebrow { color: #a20d3b; }
.article-head h1 { max-width: 940px; margin: 0.65rem 0 1.2rem; overflow-wrap: anywhere; font: 900 3.7rem/1.02 var(--display); text-transform: uppercase; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; color: var(--muted); font: 0.82rem/1.4 var(--sans); }
.article-layout { display: grid; width: min(calc(100% - 40px), 1080px); margin: 0 auto; padding: 3.8rem 0 6rem; gap: 3.2rem; grid-template-columns: 190px minmax(0, 760px); }
.article-rail { position: sticky; top: 1.5rem; align-self: start; }
.article-rail a { display: inline-block; margin-bottom: 1.2rem; font: 700 0.78rem/1.35 var(--sans); text-transform: uppercase; }
.article-rail p { margin: 0; color: var(--muted); font: 0.8rem/1.45 var(--sans); }
.article-body { max-width: 760px; min-width: 0; }
.article-body > :first-child { margin-top: 0; }
.article-body h2 { margin: 2.8rem 0 0.8rem; font: 900 2.05rem/1.12 var(--display); text-transform: uppercase; }
.article-body h3 { margin: 2rem 0 0.6rem; font: 700 1.25rem/1.25 var(--sans); }
.article-body p { margin: 0 0 1.15rem; }
.article-body a { color: #a20d3b; font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 1.3rem; }
.article-body li { margin-bottom: 0.45rem; }
.article-body blockquote { margin: 2rem 0; border-left: 7px solid var(--pink); padding-left: 1.35rem; font: 700 1.45rem/1.35 var(--serif); }
.article-body img { width: auto; max-height: 540px; margin: 1.8rem auto; border: 1px solid var(--rule); }
.article-body table { display: block; width: 100% !important; max-width: 100%; margin: 1.8rem 0 !important; overflow-x: auto; border-collapse: collapse !important; font: 0.84rem/1.4 var(--sans) !important; }
.article-body th, .article-body td { min-width: 125px; border: 1px solid var(--rule) !important; padding: 0.68rem !important; text-align: left !important; }
.article-body th { background: var(--ink) !important; color: var(--white) !important; }
.article-body td { background: var(--white) !important; color: var(--ink) !important; }

.archive-simple { display: grid; gap: 1rem; border-top: 2px solid var(--ink); }
.archive-simple a { display: grid; align-items: center; border-bottom: 1px solid var(--rule); padding: 1rem 0; gap: 1rem; text-decoration: none; grid-template-columns: 1fr auto; }
.archive-simple a::after { color: var(--pink); content: "→"; font-family: var(--sans); }
.archive-simple a:hover { color: #a20d3b; }

.site-footer { border-top: 1px solid #3b3936; background: var(--ink); color: var(--white); }
.footer-inner { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; padding: 3.5rem 0 2rem; }
.footer-top { display: grid; gap: 3rem; grid-template-columns: minmax(230px, 1fr) repeat(2, minmax(150px, 0.4fr)); }
.footer-brand { max-width: 520px; }
.footer-brand strong { display: block; font: 900 2rem/1 var(--display); text-transform: uppercase; }
.footer-brand p { margin: 1rem 0 0; color: #aaa7a0; font-family: var(--sans); }
.footer-nav { display: grid; align-content: start; gap: 0.65rem; }
.footer-nav strong { margin-bottom: 0.35rem; color: var(--yellow); font: 700 0.74rem/1 var(--sans); text-transform: uppercase; }
.footer-nav a { width: fit-content; color: #d8d5ce; font: 0.9rem/1.35 var(--sans); text-decoration: none; }
.footer-nav a:hover { color: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; border-top: 1px solid #3b3936; padding-top: 1.2rem; color: #88847d; font: 0.75rem/1.4 var(--sans); }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-contact { display: none; }
  .menu-button { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-bottom: 5px solid var(--pink);
    padding: 1rem 20px 1.4rem;
    background: var(--ink);
    gap: 0;
    flex-direction: column;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-bottom: 1px solid #3b3936; padding: 0.95rem 0; }
  .hero h1 { width: 88%; font-size: 4.65rem; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-actions { justify-self: start; }
  .section-heading, .manifesto-grid, .prose-layout, .library-intro { grid-template-columns: minmax(0, 1fr); }
  .prose-aside { position: static; }
  .story-grid, .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-rail { position: static; border-bottom: 1px solid var(--rule); padding-bottom: 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .header-inner, .hero-inner, .surface-inner, .band-inner, .page-hero-inner, .content-shell, .footer-inner, .article-head-inner, .article-layout { width: min(calc(100% - 28px), var(--shell)); }
  .hero { min-height: min(610px, calc(100svh - 72px)); }
  .hero-inner { padding: 2rem 0 1.4rem; }
  .hero::before { background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(255,255,255,0.18)), linear-gradient(0deg, rgba(17,16,15,0.94), rgba(17,16,15,0) 48%); }
  .hero-visual { object-position: 57% center; }
  .hero h1 { width: 100%; font-size: 3.3rem; line-height: 0.9; }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { width: 100%; }
  .hero-actions a { flex: 1 1 145px; }
  .surface-inner, .band-inner { padding: 3.6rem 0; }
  .section-heading { gap: 1rem; }
  .section-heading h2, .section-title { font-size: 2.5rem; }
  .tab-list button { padding-inline: 0.8rem; }
  .story-grid, .project-grid, .portfolio-list, .library-links { grid-template-columns: minmax(0, 1fr); }
  .story-link { min-height: 170px; }
  .project-link { min-height: 150px; }
  .manifesto .section-title { font-size: 2.35rem; }
  .manifesto-copy > p:first-child { font-size: 1.48rem; }
  .service-row { grid-template-columns: 38px minmax(0, 1fr); }
  .service-row p { grid-column: 2; }
  .projects-head, .cta-grid { align-items: start; flex-direction: column; grid-template-columns: 1fr; }
  .cta-grid h2 { font-size: 2.55rem; }
  .page-hero-inner { padding: 4rem 0 3rem; }
  .page-hero h1 { font-size: 3rem; overflow-wrap: anywhere; }
  .page-hero p { font-size: 1.03rem; }
  .portfolio-item { min-height: 215px; border-right: 0; }
  .project-meta { grid-template-columns: 1fr; }
  .project-meta div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .project-meta div:last-child { border-bottom: 0; }
  .reference-item { grid-template-columns: 1fr; }
  .library-intro h2 { font-size: 2.4rem; }
  .article-head-inner { padding: 3.8rem 0 2.6rem; }
  .article-head h1 { font-size: 2.7rem; }
  .article-layout { padding: 2.8rem 0 4.5rem; gap: 2rem; }
  .article-body h2 { font-size: 1.75rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
