:root {
  --paper: #f8f7f2;
  --paper-2: #f0efe9;
  --ink: #161616;
  --muted: #6a675f;
  --line: rgba(22, 22, 22, 0.18);
  --accent: #5959d8;
  --accent-soft: rgba(89, 89, 216, 0.10);
  --white: #fcfbf7;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

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

.section { padding: 112px 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow, .small-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.inverse { color: rgba(255,255,255,0.64); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}


.brand-logo-link {
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 190px);
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  width: clamp(145px, 13vw, 180px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--ink) !important;
}
.nav-toggle { display: none; }

.hero { padding: 104px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.hero h1,
.section h2,
.systems-band h2,
.execution-band h2,
.about h2,
.contact h2 {
  margin: 18px 0 0;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(4.1rem, 8.3vw, 8rem);
  max-width: 900px;
}
.hero h1 span { color: var(--accent); }

.lead {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.hero-body {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--ink); color: var(--paper); }
.button-light { background: transparent; color: var(--ink); }

.diagram-frame {
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  isolation: isolate;
}

.diagram-frame::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0, transparent 68%);
  opacity: 0.35;
  transform: scale(0.96);
  animation: systemGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  will-change: transform;
}

.orbit-1 {
  width: 88%;
  height: 88%;
  animation: orbitBreatheOuter 9s ease-in-out infinite;
}

.orbit-2 {
  width: 54%;
  height: 54%;
  animation: orbitBreatheInner 7s ease-in-out infinite reverse;
}

.connector {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  width: 74%;
  background: repeating-linear-gradient(
    to right,
    var(--ink) 0 5px,
    transparent 5px 11px
  );
  transform-origin: center;
  opacity: 0.54;
  will-change: transform, opacity;
}

.connector-a {
  animation: connectorSpinA 42s linear infinite;
}

.connector-b {
  animation: connectorSpinB 42s linear infinite;
}

.connector-c {
  animation: connectorSpinC 42s linear infinite;
}

.node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
  transform-origin: center;
  will-change: transform, box-shadow;
}

.node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(89, 89, 216, 0.22);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  animation: nodeRipple 4.8s ease-out infinite;
}

.node-1 {
  left: 48%;
  top: 3%;
  animation: nodeFloat1 6.4s ease-in-out infinite;
}
.node-1::after { animation-delay: 0s; }

.node-2 {
  right: 2%;
  top: 42%;
  animation: nodeFloat2 7.2s ease-in-out infinite;
}
.node-2::after { animation-delay: 0.8s; }

.node-3 {
  left: 60%;
  bottom: 3%;
  animation: nodeFloat3 6.8s ease-in-out infinite;
}
.node-3::after { animation-delay: 1.6s; }

.node-4 {
  left: 7%;
  bottom: 17%;
  animation: nodeFloat4 7.6s ease-in-out infinite;
}
.node-4::after { animation-delay: 2.4s; }

.node-5 {
  left: 5%;
  top: 24%;
  animation: nodeFloat5 6.9s ease-in-out infinite;
}
.node-5::after { animation-delay: 3.2s; }

.diagram-label,
.diagram-center {
  position: absolute;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
}

.diagram-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--ink);
  font-weight: 700;
  z-index: 3;
}

.label-1 { left: 38%; top: -5%; }
.label-2 { right: -4%; top: 37%; }
.label-3 { left: 55%; bottom: -5%; }
.label-4 { left: -8%; bottom: 12%; }
.label-5 { left: -4%; top: 17%; }

.diagram-frame:hover .node {
  box-shadow: 0 0 0 11px rgba(89, 89, 216, 0.12);
}

.diagram-frame:hover .diagram-center {
  color: var(--accent);
}

.diagram-frame:hover .diagram-label {
  color: var(--ink);
}

@keyframes orbitBreatheOuter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.012); }
}

@keyframes orbitBreatheInner {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.988); }
}

@keyframes connectorSpinA {
  from { transform: translate(-50%, -50%) rotate(20deg); }
  to { transform: translate(-50%, -50%) rotate(380deg); }
}

@keyframes connectorSpinB {
  from { transform: translate(-50%, -50%) rotate(92deg); }
  to { transform: translate(-50%, -50%) rotate(452deg); }
}

@keyframes connectorSpinC {
  from { transform: translate(-50%, -50%) rotate(155deg); }
  to { transform: translate(-50%, -50%) rotate(515deg); }
}

@keyframes nodeRipple {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  20% {
    opacity: 0.6;
  }
  65%, 100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes nodeFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -5px); }
}

@keyframes nodeFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, 3px); }
}

@keyframes nodeFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, 5px); }
}

@keyframes nodeFloat4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5px, -2px); }
}

@keyframes nodeFloat5 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(3px, 5px); }
}

@keyframes systemGlow {
  0%, 100% {
    opacity: 0.22;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.38;
    transform: scale(1.02);
  }
}

.capability-strip {
  margin-top: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.capability-strip span {
  padding: 20px;
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.capability-strip span + span { border-left: 1px solid var(--line); }

.two-col-head,
.section-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 44px;
  align-items: start;
}
.two-col-head > div > p,
.section-intro + p {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}

.section h2 {
  font-size: clamp(2.9rem, 5.7vw, 6rem);
  max-width: 950px;
}

.two-sides {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  gap: 24px;
  align-items: stretch;
}
.side-card {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 34px;
}
.side-card h3 {
  margin: 54px 0 26px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  columns: 2;
  column-gap: 30px;
}
.side-card li { margin-bottom: 8px; break-inside: avoid; }

.bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}
.bridge strong {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
}
.bridge-line { width: 1px; height: 90px; background: var(--line); }

.statement {
  margin: 96px 0 0;
  padding: 0;
  border: 0;
  font-size: clamp(2.7rem, 5.3vw, 5.4rem);
  letter-spacing: -0.05em;
  line-height: 1.01;
  font-weight: 500;
}
.statement span { color: var(--accent); }

.journey { background: var(--white); }
.journey-track {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(10, minmax(120px, 1fr));
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}
.journey-track div {
  min-width: 120px;
  padding: 20px 16px 24px;
  position: relative;
}
.journey-track div + div { border-left: 1px solid var(--line); }
.journey-track span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 40px;
}
.journey-track strong {
  font-size: 0.94rem;
  font-weight: 500;
}
.journey-copy {
  margin: 26px 0 0;
  color: var(--muted);
  max-width: 780px;
}

.capabilities { background: var(--paper-2); }
.practice-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.practice-card {
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}
.practice-head {
  display: grid;
  grid-template-columns: 64px 180px 1fr;
  gap: 24px;
  align-items: baseline;
}
.practice-head .number { color: var(--muted); font-size: 0.76rem; }
.practice-head h3 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.practice-columns {
  margin-top: 44px;
  margin-left: 268px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.practice-columns h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
}
.practice-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}
.practice-columns li { margin-top: 7px; font-size: 0.92rem; }

.systems-band {
  background: var(--ink);
  color: var(--paper);
  padding: 118px 0;
}
.systems-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 88px;
}
.systems-band h2 {
  font-size: clamp(3.2rem, 6vw, 6.1rem);
}
.systems-copy {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.65);
}
.systems-list {
  border-top: 1px solid rgba(255,255,255,0.2);
}
.systems-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.systems-list article > span {
  color: rgba(255,255,255,0.48);
  font-size: 0.78rem;
}
.systems-list h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 500;
}
.systems-list p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  max-width: 650px;
}

.execution-band {
  background: #222;
  color: var(--paper);
  padding: 118px 0;
}
.execution-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 44px;
}
.execution-band h2 { font-size: clamp(3.2rem, 6vw, 6.2rem); }
.execution-band p:last-child {
  max-width: 700px;
  color: rgba(255,255,255,0.67);
  font-size: 1.05rem;
  margin: 28px 0 0;
}

.work-list { margin-top: 64px; border-top: 1px solid var(--line); }
.work-item { border-bottom: 1px solid var(--line); }
.work-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: 70px 1.1fr 0.9fr 34px;
  gap: 24px;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
}
.work-index { color: var(--muted); font-size: 0.78rem; }
.work-name { font-size: 1.3rem; font-weight: 500; letter-spacing: -0.02em; }
.work-type { color: var(--muted); font-size: 0.92rem; }
.work-arrow {
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 200ms ease;
}
.work-toggle[aria-expanded="true"] .work-arrow { transform: rotate(45deg); }
.work-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}
.work-panel > div { overflow: hidden; }
.work-toggle[aria-expanded="true"] + .work-panel { grid-template-rows: 1fr; }
.work-panel-inner {
  padding: 0 0 28px 94px;
  max-width: 900px;
}
.work-panel-inner p {
  color: var(--muted);
  max-width: 700px;
  margin-top: 0;
}
.tag-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

.approach { background: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 88px;
}
.approach-title h2 {
  font-size: clamp(3.4rem, 6vw, 6.4rem);
}
.approach-title h2 span { color: var(--accent); }
.approach-title > p:last-child {
  max-width: 480px;
  color: var(--muted);
  margin-top: 28px;
}
.steps { border-top: 1px solid var(--line); }
.step {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
}
.step > span { color: var(--muted); font-size: 0.8rem; }
.step h3 {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 1.24rem;
}
.step p { margin: 0; color: var(--muted); }

.audience-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.audience-card {
  min-height: 340px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}
.audience-card + .audience-card {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.audience-card h3 {
  margin: 70px 0 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.about {
  padding: 118px 0;
  background: var(--ink);
  color: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.about h2 { font-size: clamp(3.5rem, 6vw, 6.5rem); }
.about-copy {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
}
.about-copy p { margin-top: 0; margin-bottom: 22px; }
.about-emphasis {
  color: white;
  font-size: 1.35rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.contact { background: var(--paper-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: start;
}
.contact h2 { font-size: clamp(3.5rem, 6vw, 6.2rem); }
.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}
.contact-copy > p:nth-of-type(2) { margin-top: 28px; }

.contact-form {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.submit-button { width: 100%; margin-top: 4px; }
.form-note, .form-status {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 12px 0 0;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}
.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .orbit,
  .connector,
  .node,
  .node::after,
  .diagram-frame::before {
    animation: none !important;
  }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section { padding: 88px 0; }
  .hero-grid,
  .systems-grid,
  .approach-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-diagram { max-width: 520px; margin: 10px auto 0; }
  .practice-columns {
    margin-left: 0;
    grid-template-columns: 1fr 1fr;
  }
  .practice-head { grid-template-columns: 50px 150px 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card + .audience-card {
    border-left: 0;
    padding-left: 0;
  }
  .audience-card { min-height: auto; padding-bottom: 42px; }
  .audience-card h3 { margin-top: 38px; max-width: 760px; }
}

@media (max-width: 760px) {

  .brand-logo {
    width: 156px;
  }
  .container { width: min(calc(100% - 34px), var(--max)); }
  .site-header { backdrop-filter: none; background: var(--paper); }
  .nav-wrap { min-height: 66px; }

  .nav-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .nav-toggle > span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: var(--ink);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 17px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-nav .nav-cta {
    margin-top: 14px;
    padding: 12px 16px;
    text-align: center;
  }

  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 5.2rem); }
  .hero-grid { gap: 50px; }

  .capability-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }
  .capability-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .capability-strip span:nth-child(4) { border-top: 1px solid var(--line); }

  .two-col-head,
  .section-intro,
  .execution-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .two-sides {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bridge {
    flex-direction: row;
    gap: 12px;
  }
  .bridge-line { width: 70px; height: 1px; }

  .side-card ul { columns: 1; }

  .practice-head {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
  .practice-head h3 {
    grid-column: 2;
    margin-top: 8px;
  }
  .practice-columns { grid-template-columns: 1fr; }

  .work-toggle {
    grid-template-columns: 44px 1fr 28px;
    gap: 14px;
  }
  .work-type { grid-column: 2; }
  .work-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .work-panel-inner { padding-left: 58px; }

  .field-grid { grid-template-columns: 1fr; gap: 0; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }
}

@media (max-width: 460px) {
  .hero h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  .section { padding: 74px 0; }
  .statement { margin-top: 70px; }
  .work-panel-inner { padding-left: 0; }
}
