:root {
  --oxford: #0d0d0d;
  --oxford-2: #1b1b1b;
  --ink: #1f2022;
  --muted: #6b6b6b;
  --line: #dedbd4;
  --paper: #f4f1ea;
  --wash: #ebe7df;
  --gold: #8a744c;
  --gold-soft: #e8e0d0;
  --danger: #9a332b;
  --ok: #23674f;
  --radius: 12px;
  --max: 1320px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, var(--paper) 0%, #f8f6f1 48%, var(--paper) 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 0, 0, 0.025), transparent 34%);
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: var(--oxford);
  transition: opacity 460ms var(--ease-out), visibility 460ms var(--ease-out);
}

.intro-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
}

.intro-skip {
  position: absolute;
  right: 20px;
  top: 18px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  color: var(--oxford);
  padding: 9px 12px;
  cursor: pointer;
}

.intro-stage {
  position: relative;
  width: min(82vw, 660px);
  aspect-ratio: 1307 / 1215;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, .12));
}

.intro-part {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.intro-columns {
  left: 6.5%;
  top: 37.2%;
  width: 87.5%;
  opacity: 0;
  transform: translateY(18%) scale(.98);
  animation: columnsBuild 780ms var(--ease-soft) 1540ms forwards;
}

.intro-fronton {
  left: 3.1%;
  top: 4.3%;
  width: 93.5%;
  opacity: 0;
  transform: translateY(-20%) scale(.96);
  animation: frontonBuild 820ms var(--ease-soft) 260ms forwards;
}

.intro-lines {
  left: 6.2%;
  top: 30.5%;
  width: 88%;
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: center;
  animation: linesBuild 680ms var(--ease-out) 2920ms forwards;
}

.intro-scale {
  left: 37.2%;
  top: 11%;
  width: 26.6%;
  opacity: 0;
  transform: translateY(-12%) scale(.92);
  animation: scaleBuild 740ms var(--ease-soft) 920ms forwards, scaleSettle 900ms var(--ease-soft) 1660ms forwards;
}

.intro-stairs {
  left: 3.2%;
  top: 89.4%;
  width: 93.6%;
  opacity: 0;
  transform: translateY(22%) scale(.98);
  animation: stairsBuild 700ms var(--ease-soft) 2260ms forwards;
}

@keyframes columnsBuild {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes frontonBuild {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes linesBuild {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes scaleBuild {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scaleSettle {
  0% {
    transform: translateY(0) rotate(-1.6deg) scale(1);
  }

  48% {
    transform: translateY(0) rotate(1deg) scale(1);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

@keyframes stairsBuild {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(138, 116, 76, 0.62);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--oxford);
  color: #fff;
  padding: .75rem 1rem;
  transition: transform 180ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 14px 16px;
  pointer-events: none;
  transition: transform 260ms var(--ease-out);
  will-change: transform;
}

.nav-shell {
  pointer-events: auto;
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 14px;
  background: rgba(244, 241, 234, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
  padding: 10px 10px 10px 14px;
  transform-origin: left center;
  transition: transform 260ms var(--ease-out), opacity 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.nav-compact .site-header .nav-shell {
  width: 68px;
  padding: 10px 12px;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.nav-lift .site-header {
  transform: translateY(-125%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.brand-wordmark {
  display: block;
  width: 154px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  transform-origin: left center;
  transition: transform 230ms var(--ease-soft), opacity 190ms var(--ease-out);
}

.nav-compact .brand-wordmark {
  width: 0;
  opacity: 0;
  transform: translateX(-12px) scaleX(.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  transform-origin: left center;
  transition: transform 230ms var(--ease-soft), opacity 180ms var(--ease-out), visibility 180ms var(--ease-out);
}

.nav-compact .nav-links,
.nav-compact .nav-toggle {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px) scaleX(.82);
}

.nav-links a {
  position: relative;
  border-radius: 8px;
  color: #292929;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 10px 12px;
  transition: color 180ms var(--ease-out), transform 160ms var(--ease-out);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  border-radius: 999px;
  background: rgba(138, 116, 76, 0);
  box-shadow: 0 0 0 rgba(138, 116, 76, 0);
  transition: background 180ms var(--ease-out), box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--oxford);
}

.nav-links a:hover::after {
  background: rgba(138, 116, 76, .82);
  box-shadow: 0 0 8px rgba(138, 116, 76, .24);
  transform: translateY(-1px);
}

.nav-links a:active,
.button:active,
.ghost-button:active {
  transform: scale(.98);
}

.nav-links .nav-cta {
  background: var(--oxford);
  color: #fff;
}

.nav-links .nav-cta::after {
  background: rgba(255, 255, 255, .42);
}

.nav-links .nav-cta:hover {
  background: var(--oxford-2);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--oxford);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

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

main {
  min-height: 70vh;
}

.section {
  padding: clamp(64px, 8vw, 108px) 20px;
}

.section.tight {
  padding-top: clamp(38px, 5vw, 70px);
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding-top: clamp(54px, 8vw, 100px);
  padding-bottom: clamp(42px, 6vw, 82px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(260px, .55fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}

.folio {
  position: relative;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 18px;
  background: rgba(255, 253, 248, .9);
  padding: clamp(30px, 4.4vw, 58px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .07);
  isolation: isolate;
}

.folio::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 18px;
  width: 3px;
  border-radius: 3px;
  background: var(--gold);
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
.page-title {
  max-width: 780px;
  margin: 0;
  color: var(--oxford);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

h2 {
  margin: 0;
  color: var(--oxford);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.45;
}

h3 {
  margin: 0;
  color: var(--oxford);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 600;
  line-height: 1.36;
}

p {
  margin: 0;
}

.lead {
  max-width: 740px;
  margin-top: 24px;
  color: #55575b;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  line-height: 1.66;
}

.is-typing::after {
  content: "";
  display: inline-block;
  width: .08em;
  height: .8em;
  margin-left: .04em;
  background: var(--gold);
  vertical-align: -.04em;
  animation: caretBlink 850ms steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.hero-scale-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 34vw, 440px);
  border-radius: 18px;
  background: rgba(255, 253, 248, .42);
  overflow: hidden;
}

.hero-scale-panel::before {
  content: "";
  position: absolute;
  inset: 15% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, .06), transparent 68%);
}

.hero-scale-mark {
  position: relative;
  width: min(82%, 360px);
  opacity: .9;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .14));
  transform-origin: 50% 76%;
  animation: scaleWeigh 3.6s var(--ease-soft) infinite;
}

@keyframes scaleWeigh {
  0% {
    transform: rotate(-3.1deg) translateY(0);
  }

  18% {
    transform: rotate(2.4deg) translateY(2px);
  }

  34% {
    transform: rotate(-1.8deg) translateY(-1px);
  }

  52% {
    transform: rotate(1.25deg) translateY(1px);
  }

  72% {
    transform: rotate(-.7deg) translateY(0);
  }

  100% {
    transform: rotate(-3.1deg) translateY(0);
  }
}

.quote {
  margin-top: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  color: var(--oxford);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: .04em;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.centered-actions {
  justify-content: center;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 9px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: transform 160ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.button {
  border: 1px solid var(--oxford);
  background: var(--oxford);
  color: #fff;
}

.button:hover {
  background: var(--oxford-2);
}

.ghost-button {
  border: 1px solid rgba(0, 0, 0, .18);
  background: #fff;
  color: var(--oxford);
}

.ghost-button:hover {
  border-color: rgba(0, 0, 0, .34);
  background: #f7f4ed;
}

.band .action-row {
  justify-content: center;
}

.band .button {
  border-color: #fff;
  background: #fff;
  color: var(--oxford);
}

.band .button:hover {
  background: var(--paper);
}

.band .ghost-button {
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
  color: #fff;
}

.band .ghost-button:hover {
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .08);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--oxford);
  background: rgba(13, 13, 13, .05);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

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

.brief-cards-section {
  padding-top: 0;
  padding-bottom: clamp(48px, 6vw, 84px);
}

.index-card {
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 14px;
  background: var(--oxford);
  color: #fff;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .12);
}

.index-card.light {
  background: #fff;
  color: var(--ink);
}

.index-card strong {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.index-card p,
.index-card li {
  color: inherit;
  opacity: .82;
}

.index-card .card-icon {
  color: inherit;
  background: rgba(255, 255, 255, .12);
}

.index-card.light .card-icon {
  color: var(--oxford);
  background: rgba(13, 13, 13, .05);
}

.section-head {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 740px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.practice-grid-centered {
  max-width: 1120px;
  margin: 0 auto;
}

.practice-card {
  min-height: 232px;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, .11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .9);
  padding: 22px;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft), border-color 240ms var(--ease-soft);
}

.practice-card .card-icon {
  margin-bottom: 20px;
}

.practice-card:nth-child(1),
.practice-card:nth-child(4) {
  grid-column: span 6;
}

.practice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, .22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .06);
}

.practice-card p {
  margin-top: 16px;
  color: var(--muted);
}

.card-link {
  margin-top: 22px;
  color: var(--oxford);
  font-weight: 800;
}

.band {
  background: var(--oxford);
  color: #fff;
}

.band h2,
.band h3 {
  color: #fff;
}

.band p,
.band li {
  color: rgba(255, 255, 255, .76);
}

.values-grid,
.team-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plain-card {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: var(--radius);
  background: #fffdf8;
  padding: 22px;
}

.value-card {
  min-height: 246px;
}

.band .plain-card {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .045);
}

.band .plain-card .card-icon {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.plain-card p,
.plain-card ul {
  margin-top: 12px;
  color: var(--muted);
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-collective {
  margin: 0 0 22px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.team-collective img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.team-collective figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--oxford);
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.identity-piece {
  margin: 24px 0 0;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.identity-piece img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.identity-piece figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .9rem;
}

.band .plain-card p,
.band .plain-card ul {
  color: rgba(255, 255, 255, .74);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 16px;
  background: #fffdf8;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .06);
}

.process-path {
  position: absolute;
  inset: 52px 68px;
  border-top: 1px solid rgba(138, 116, 76, .42);
  border-right: 1px solid rgba(138, 116, 76, .42);
  border-bottom: 1px solid rgba(138, 116, 76, .42);
  pointer-events: none;
}

.process-path::before,
.process-path::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.process-path::before {
  top: -5px;
  right: -1px;
  transform: rotate(45deg);
}

.process-path::after {
  bottom: -5px;
  left: -1px;
  transform: rotate(225deg);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  min-height: 196px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  background: #fff;
  padding: 24px;
}

.process-step:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.process-step:nth-of-type(4) {
  grid-column: 1;
  grid-row: 2;
}

.process-step span {
  color: var(--gold);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.list-page {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.side-nav a {
  border-radius: 8px;
  color: #42506a;
  padding: 9px 10px;
  font-size: .92rem;
}

.side-nav a:hover {
  background: #f2f4f6;
  color: var(--oxford);
}

.article-stack {
  display: grid;
  gap: 20px;
}

.article-card {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 14px;
  background: #fffdf8;
  padding: clamp(22px, 3vw, 36px);
}

.article-card p,
.article-card ul {
  margin-top: 14px;
  color: var(--muted);
}

ul.clean {
  padding-left: 1.1rem;
}

ul.clean li + li {
  margin-top: 8px;
}

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, .13);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .13);
}

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--oxford);
  padding: 24px 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-button span {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1;
}

.faq-panel {
  display: none;
  max-width: 74ch;
  padding: 0 0 24px;
  color: var(--muted);
}

.faq-item[data-open="true"] .faq-panel {
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .6fr) minmax(0, 1fr);
  gap: 28px;
}

.contact-card {
  border-radius: 14px;
  background: var(--oxford);
  color: #fff;
  padding: 28px;
}

.contact-card a,
.contact-card strong {
  color: #fff;
}

.contact-card p {
  color: rgba(255, 255, 255, .76);
}

.contact-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.contact-lead {
  color: rgba(255, 255, 255, .78);
}

.contact-line {
  margin-top: 16px;
}

.contact-line.first {
  margin-top: 24px;
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, .11);
  border-radius: 14px;
  background: #fff;
  padding: clamp(22px, 4vw, 34px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--oxford);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: .92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 9px;
  background: #fbfcfd;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 180ms var(--ease-out), background 180ms var(--ease-out);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  outline: none;
}

.notice {
  border: 1px solid rgba(138, 116, 76, .28);
  border-radius: 12px;
  background: var(--gold-soft);
  color: #4c4232;
  padding: 14px 16px;
}

.form-status {
  min-height: 24px;
  color: var(--danger);
  font-weight: 700;
}

.form-status.ok {
  color: var(--ok);
}

.legal-doc {
  max-width: 880px;
}

.legal-doc h2 {
  margin-top: 42px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.legal-doc p,
.legal-doc ul {
  margin-top: 14px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, .1);
  background: #f8f6f1;
  padding: 48px 20px 28px;
}

.footer-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.legal-note {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
  color: var(--muted);
  font-size: .9rem;
}

.mt-20 {
  margin-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 680ms var(--ease-soft), transform 680ms var(--ease-soft);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-shell {
    align-items: flex-start;
  }

  .nav-links {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .12);
    padding: 10px;
  }

  .nav-shell[data-open="true"] .nav-links {
    display: grid;
  }

  .nav-shell[data-open="true"] .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-shell[data-open="true"] .nav-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .list-page,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
  }

  .practice-card,
  .practice-card:nth-child(1),
  .practice-card:nth-child(4) {
    grid-column: span 6;
  }

  .values-grid,
  .team-grid,
  .experience-grid,
  .case-index {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px;
  }

  .nav-shell {
    width: calc(100vw - 20px);
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .folio {
    padding: 28px 24px 28px 34px;
  }

  .practice-grid,
  .values-grid,
  .team-grid,
  .experience-grid,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .practice-card:nth-child(1),
  .practice-card:nth-child(4) {
    grid-column: span 1;
    min-height: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .process-path {
    display: none;
  }

  .process-step:nth-of-type(3),
  .process-step:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

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

  .action-row .button,
  .action-row .ghost-button {
    width: 100%;
  }

  .intro-stage {
    width: min(94vw, 520px);
  }

  .hero-scale-mark {
    max-width: 240px;
    justify-self: start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .intro-part,
  .intro-stairs {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
