:root {
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface-strong: #eef3f1;
  --ink: #101624;
  --ink-soft: #263246;
  --muted: #627083;
  --line: #dfe5ec;
  --line-strong: #c7d0dc;
  --accent: #2f6f73;
  --accent-strong: #214f52;
  --accent-warm: #aa6b3e;
  --shadow: 0 18px 50px rgba(16, 22, 36, 0.08);
  --radius: 8px;
  --max: 1120px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-sprite {
  display: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 24px;
  height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 229, 236, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.35);
  transition: 180ms ease;
  content: "";
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-link,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.icon-link:hover,
.menu-toggle:hover {
  color: var(--accent-strong);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  gap: 10px;
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
}

.button-secondary {
  color: var(--ink);
  background: var(--surface-strong);
  border-color: #d7e5e1;
}

.button-secondary:hover {
  color: #ffffff;
}

.button-ghost {
  color: var(--ink);
  background: var(--bg);
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--accent-strong);
  background: var(--bg);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
}

.menu-toggle .close-icon,
body.menu-open .menu-toggle .menu-icon {
  display: none;
}

body.menu-open .menu-toggle .close-icon {
  display: block;
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 16px;
  left: 16px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  padding: 12px 10px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

body.menu-open .mobile-nav {
  display: grid;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  padding: 88px 0 56px;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.status-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
}

.small-label,
.article-meta {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 12px;
  font-size: 88px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

h4 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.hero-role {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 24px;
  font-weight: 600;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.34;
}

.hero-body {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-story-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

.hero-story-link:hover {
  color: var(--accent-strong);
}

.capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.capability-row li,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink-soft);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.hero-media {
  width: min(320px, 100%);
  margin: 0;
  justify-self: end;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.focus-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.focus-band div {
  min-height: 142px;
  padding: 24px;
  background: var(--surface);
}

.focus-band p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-bottom: 72px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-strip div,
.proof-strip .proof-live {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: 24px;
  background: #ffffff;
}

.proof-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.findings-section,
.work-section,
.now-section,
.resume-section,
.contact-section,
.split-section {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 650px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.pathfinder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  min-height: 80px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pathfinder a {
  color: var(--accent);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.pathfinder a:hover {
  color: var(--accent-strong);
}

.pathfinder .q {
  color: var(--muted);
}

.avail-flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 4px;
  color: var(--muted);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.entry-kind {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--muted);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 72px;
}

.sticky-heading {
  position: sticky;
  top: 104px;
  align-self: start;
  margin-bottom: 0;
}

.story-content {
  display: grid;
  gap: 40px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 26px;
}

.timeline::before {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  position: absolute;
  top: 6px;
  left: -25px;
  width: 13px;
  height: 13px;
  background: var(--bg);
  border: 2px solid var(--accent-warm);
  border-radius: 999px;
  content: "";
}

.timeline-item span {
  color: var(--accent-warm);
  font-size: 12px;
  font-weight: 800;
}

.timeline-item h3 {
  margin: 4px 0 6px;
  font-size: 20px;
}

.timeline-item p,
.principle-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.principles {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.principles h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tab {
  min-height: 38px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 720;
  cursor: pointer;
}

.tab:hover,
.tab.active {
  color: var(--bg);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.article-list {
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.article-row.is-hidden {
  display: none;
}

.article-row h3 {
  margin: 6px 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.article-row p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 36px;
  padding: 0;
  color: var(--accent-strong);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.text-button svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms ease;
}

.text-button:hover svg {
  transform: translateX(3px);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.flagship-rows {
  display: grid;
  gap: 18px;
  margin-bottom: 72px;
}

.flagship-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.flagship-main {
  display: grid;
  align-content: start;
  gap: 18px;
}

.flagship-number {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.flagship-number::after {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.flagship-main h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 500;
}

.flagship-position {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.flagship-main dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.flagship-main dl div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 12px;
}

.flagship-main dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.flagship-main dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.flagship-media {
  min-width: 0;
}

.more-cases-heading {
  margin-bottom: 20px;
}

.case-card {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 100%;
  padding: 26px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 16px;
}

.case-number {
  color: var(--accent-warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.case-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 500;
}

.case-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.case-card dl div {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 12px;
}

.case-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.case-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.additional-works {
  padding-top: 104px;
}

.mini-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-work-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-work-grid h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
}

.mini-work-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.now-grid article {
  min-height: 240px;
  padding: 26px;
  background: var(--bg);
}

.now-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--ink-soft);
}

.now-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.now-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.resume-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 52px;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resume-panel .button {
  margin-top: 22px;
}

.resume-columns {
  display: grid;
  gap: 22px;
}

.resume-columns article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.resume-columns article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resume-columns h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.resume-columns ul {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.skill-groups {
  display: grid;
  gap: 14px;
}

.skill-groups div {
  display: grid;
  gap: 4px;
}

.skill-groups strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 830;
  text-transform: uppercase;
}

.skill-groups p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-actions .button {
  min-height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 26px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink-soft);
  font-weight: 720;
}

.contact-links a:hover {
  color: var(--accent-strong);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 48px));
  padding: 28px 0 36px;
  margin: 0 auto;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer a {
  color: var(--ink-soft);
  font-weight: 760;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.article-dialog {
  width: min(760px, calc(100% - 34px));
  max-height: min(82vh, 820px);
  padding: 34px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-dialog::backdrop {
  background: rgba(16, 22, 36, 0.38);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
}

.article-dialog h2 {
  max-width: 620px;
  margin: 8px 0 22px;
  font-size: 36px;
}

.dialog-body {
  display: grid;
  gap: 22px;
}

.dialog-body section {
  display: grid;
  gap: 7px;
}

.dialog-body h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 820;
}

.dialog-body p {
  margin: 0;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -9999px;
  color: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

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

@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;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 68px;
  }

  h1 {
    font-size: 72px;
  }

  .hero-media {
    justify-self: start;
  }

  .focus-band,
  .proof-strip,
  .mini-work-grid,
  .now-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flagship-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .flagship-media {
    order: -1;
  }

  .split-section,
  .resume-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sticky-heading {
    position: static;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }

  .section-shell,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    padding: 0 16px;
    gap: 14px;
  }

  .brand {
    font-size: 25px;
  }

  .header-actions .icon-link,
  .header-actions .avail-flag {
    display: none;
  }

  .hero {
    gap: 34px;
    padding: 44px 0 28px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-availability {
    font-size: 12px;
  }

  .hero-role {
    font-size: 20px;
  }

  .hero-lede {
    font-size: 22px;
  }

  .hero-body,
  .section-heading p,
  .contact-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
    padding: 0 12px;
  }

  .hero-media {
    justify-self: start;
    width: min(280px, 100%);
  }

  .focus-band {
    display: none;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 56px;
  }

  .proof-strip div,
  .proof-strip .proof-live {
    min-height: auto;
    padding: 18px;
  }

  .proof-strip strong {
    margin-bottom: 8px;
    font-size: 33px;
  }

  .proof-strip span {
    font-size: 13px;
  }

  .pathfinder {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: auto;
    padding: 20px 0;
  }

  .principle-list,
  .mini-work-grid,
  .now-grid {
    grid-template-columns: 1fr;
  }

  .findings-section,
  .work-section,
  .now-section,
  .resume-section,
  .contact-section,
  .split-section {
    padding: 60px 0;
  }

  .additional-works {
    padding-top: 60px;
  }

  .flagship-rows,
  .case-grid {
    gap: 24px;
  }

  .flagship-rows {
    margin-bottom: 56px;
  }

  .flagship-row {
    padding: 22px;
    gap: 22px;
  }

  .flagship-main h3 {
    font-size: 29px;
  }

  .flagship-main dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-row h3 {
    font-size: 24px;
  }

  .case-card,
  .principles,
  .resume-panel {
    padding: 22px;
  }

  .case-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .case-card h3 {
    font-size: 27px;
  }

  .case-actions {
    gap: 10px;
    width: 100%;
  }

  .case-actions .text-button {
    flex: 1 1 0;
    min-height: 44px;
    padding: 0 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .contact-actions {
    flex-direction: column;
  }

  .mini-work-grid {
    gap: 0;
  }

  .mini-work-grid article {
    gap: 6px;
    padding: 16px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .mini-work-grid article:first-child {
    border-top: 1px solid var(--line);
  }

  .mini-work-grid h3 {
    font-size: 18px;
  }

  .mini-work-grid p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .mini-work-grid .tag-row {
    display: none;
  }

  .site-footer {
    display: grid;
    gap: 10px;
  }

  .article-dialog {
    padding: 28px 22px;
  }

  .article-dialog h2 {
    padding-right: 28px;
    font-size: 30px;
  }
}

/* LIVE tile: the strip's one interactive cell */
.proof-strip .proof-live {
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.proof-strip .proof-live:hover {
  background: var(--surface-strong);
}

.proof-strip .proof-live strong {
  color: #16a34a;
  letter-spacing: 0.04em;
}

.proof-strip .proof-live span {
  color: var(--accent);
}

/* Hero hook: the two-beat headline; em carries the punch */
.hero-hook {
  margin-bottom: 14px;
}

.hero-hook em {
  font-style: normal;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: var(--accent-strong);
}

.hero-sub {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .hero-sub { font-size: 15.5px; margin-bottom: 22px; }
}
