:root {
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --ink: #1a1814;
  --ink-2: #2b2823;
  --mute: #6d675c;
  --line: rgba(26, 24, 20, 0.14);
  --bronze: #b56a2b;
  --cream: #f7f3ea;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter Tight", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
address { font-style: normal; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
p { margin: 0 0 1em; color: var(--mute); }
p:last-child { margin-bottom: 0; }

.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.kicker {
  margin: 0 0 18px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.text-link {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.text-link:hover { color: var(--bronze); }

.quiet-link {
  font-size: 0.92rem;
  color: var(--mute);
  transition: color 0.35s var(--ease);
}
.quiet-link:hover { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Header — logo + Meni */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  pointer-events: none;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}
.site-header > * { pointer-events: auto; }
.brand img {
  height: 58px;
  width: auto;
  transition: height 0.45s var(--ease);
}
.site-header.is-scrolled,
.site-header.is-inner {
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(1.05) blur(18px);
  -webkit-backdrop-filter: saturate(1.05) blur(18px);
  border-bottom-color: var(--line);
}
.site-header.is-scrolled .brand img,
.site-header.is-inner .brand img { height: 48px; }
.site-header.is-open {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.logo-dark { display: none; }
.site-header.is-scrolled .logo-light,
.site-header.is-open .logo-light { display: none; }
.site-header.is-scrolled .logo-dark,
.site-header.is-open .logo-dark { display: block; }

.header-end {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-phone {
  display: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
}
.site-header.is-scrolled .nav-phone,
.site-header.is-open .nav-phone { color: var(--ink); }
.nav-phone:hover { color: var(--bronze); }

.nav-toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
}
.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle { color: var(--ink); }
.nav-toggle:hover { color: var(--bronze); }

.nav-index {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--paper);
  color: var(--ink);
  padding: calc(var(--header) + 12px) clamp(24px, 4vw, 56px) 32px;
  overflow: auto;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease), visibility 0.7s;
}
.nav-index.is-open {
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0);
}
.nav-index-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-content: start;
}
.nav-col nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 7vw, 2.1rem);
  line-height: 1.22;
  padding: 6px 0;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
}
.nav-col-practice {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.nav-col-practice nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.nav-col-practice nav a {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.35;
  padding: 9px 0;
  gap: 8px;
}
.nav-index.is-open .nav-col nav a {
  animation: navItem 0.65s var(--ease) forwards;
}
.nav-col:first-child nav a:nth-child(1) { animation-delay: 0.18s; }
.nav-col:first-child nav a:nth-child(2) { animation-delay: 0.24s; }
.nav-col:first-child nav a:nth-child(3) { animation-delay: 0.30s; }
.nav-col:first-child nav a:nth-child(4) { animation-delay: 0.36s; }
.nav-col:first-child nav a:nth-child(5) { animation-delay: 0.42s; }
.nav-col:first-child nav a:nth-child(6) { animation-delay: 0.48s; }
.nav-col:first-child nav a:nth-child(7) { animation-delay: 0.54s; }
.nav-col:nth-child(2) nav a:nth-child(1) { animation-delay: 0.22s; }
.nav-col:nth-child(2) nav a:nth-child(2) { animation-delay: 0.28s; }
.nav-col:nth-child(2) nav a:nth-child(3) { animation-delay: 0.34s; }
.nav-col:nth-child(2) nav a:nth-child(4) { animation-delay: 0.40s; }
.nav-col:nth-child(2) nav a:nth-child(5) { animation-delay: 0.46s; }
.nav-col:nth-child(2) nav a:nth-child(6) { animation-delay: 0.52s; }
.nav-col:nth-child(2) nav a:nth-child(7) { animation-delay: 0.58s; }
.nav-col:nth-child(2) nav a:nth-child(8) { animation-delay: 0.64s; }
@keyframes navItem {
  to { opacity: 1; transform: none; }
}
.nav-col nav a em {
  font-style: italic;
  font-size: 0.45em;
  color: var(--bronze);
  min-width: 1.5em;
}
.nav-col-practice nav a em {
  font-size: 0.72em;
  min-width: 1.35em;
}
.nav-col nav a:hover { color: var(--bronze); }

.nav-aside {
  display: none;
}
.nav-index.is-open .nav-aside {
  animation: navItem 0.8s var(--ease) 0.35s forwards;
}
.nav-aside-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 11ch;
}
.nav-aside-foot {
  display: grid;
  gap: 22px;
}
.nav-aside-lines {
  display: grid;
  gap: 5px;
  font-size: 0.95rem;
  color: var(--mute);
}
.nav-aside-lines a { color: var(--ink); }
.nav-aside-lines a:hover { color: var(--bronze); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero-media, .hero-veil { position: absolute; inset: 0; }
.hero-media { background: var(--ink); }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.7) contrast(1.08) brightness(0.72);
  transform: scale(1.03);
  animation: heroIn 2.2s var(--ease) both;
}
.hero-veil {
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.25) 0%, rgba(26, 24, 20, 0.15) 40%, rgba(26, 24, 20, 0.78) 100%);
}
@keyframes heroIn {
  from { transform: scale(1.06); }
  to { transform: scale(1.03); }
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 24px calc(48px + env(safe-area-inset-bottom));
  max-width: 760px;
  animation: fadeUp 1.15s var(--ease) 0.35s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero h1 {
  font-size: clamp(4rem, 11vw, 8.4rem);
  color: var(--paper);
  margin-bottom: 22px;
}
.hero-stand {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: rgba(243, 239, 230, 0.82);
  max-width: 22em;
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero .text-link { color: var(--paper); }
.hero .text-link:hover { color: var(--bronze); }
.hero .quiet-link { color: rgba(243, 239, 230, 0.7); }
.hero-place {
  position: absolute;
  right: 24px; bottom: 48px;
  z-index: 1;
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.55);
}

/* Manifesto */
.manifesto {
  padding: clamp(90px, 14vw, 160px) 0;
  background: var(--paper);
}
.manifesto h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  max-width: 14ch;
  margin-bottom: 32px;
}
.manifesto h2 em { color: var(--bronze); font-weight: 400; }
.manifesto-lead {
  max-width: 38em;
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Practice */
.practice { background: var(--ink); color: var(--paper); }
.practice-layout {
  display: grid;
  grid-template-columns: 1fr;
}
.practice-visual {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
}
.practice-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.7);
  transition: opacity 0.7s var(--ease), transform 1.2s var(--ease);
}
.practice-visual img.is-swap { opacity: 0; transform: scale(1.04); }
.practice-index {
  position: absolute;
  left: 24px; bottom: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.8;
  color: rgba(243, 239, 230, 0.22);
}
.practice-panel { padding: 48px 20px 64px; }
.practice-head { margin-bottom: 28px; }
.practice-head h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--paper); }
.practice-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  color: rgba(243, 239, 230, 0.55);
  transition: color 0.4s var(--ease);
}
.practice-row:last-child { border-bottom: 1px solid rgba(243, 239, 230, 0.12); }
.practice-row:hover,
.practice-row.is-active { color: var(--paper); }
.pr-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--bronze);
}
.pr-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}
.pr-copy {
  grid-column: 2;
  margin-top: 6px;
  font-size: 0.88rem;
  color: rgba(243, 239, 230, 0.5);
}

/* Profile — typographic, no photo (contrast to practice above) */
.profile {
  background: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0 0;
}
.profile-top { margin-bottom: 36px; }
.profile-intro h2 { font-size: clamp(3rem, 7vw, 5.4rem); }
.profile-role {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--bronze);
}
.profile-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
.profile-copy p { max-width: 38em; font-size: 1.05rem; }
.facts {
  display: grid;
  gap: 22px;
  margin: 0;
  padding-top: 8px;
}
.facts dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}
.facts dd { margin: 0; font-size: 1rem; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.stats > div {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}
.stats > div:last-child { border-right: 0; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
}
.stat-label { font-size: 0.8rem; color: var(--mute); }

/* Clients — logo grid */
.clients { padding: clamp(80px, 10vw, 120px) 0; background: var(--paper-2); }
.clients h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.section-more { margin: 0 0 36px; }
.logo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.logo-slot {
  min-height: 120px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
}
.logo-slot img {
  max-width: 70%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
}

/* Press */
.press { padding: clamp(80px, 10vw, 130px) 0; background: var(--ink); color: var(--paper); }
.press-head { margin-bottom: 48px; }
.press-more { margin: 18px 0 0; }
.press-more a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--paper);
  border-bottom: 1px solid var(--bronze);
}
.press-head h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 16ch; color: var(--paper); }
.press-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.press-photo { overflow: hidden; margin-bottom: 18px; }
.press-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.78);
  transition: transform 1s var(--ease);
}
.press a:hover img { transform: scale(1.04); }
.press-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}
.press h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--paper);
  margin-bottom: 10px;
}
.press-lead p { color: rgba(243, 239, 230, 0.6); max-width: 40em; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
}
.contact-copy, .contact-form { padding: clamp(56px, 8vw, 100px) 24px; }
.contact h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 20px; }
.contact h2 em { color: var(--bronze); }
.contact-copy p { max-width: 34em; }
.contact-facts {
  display: grid;
  gap: 8px;
  margin-top: 32px;
  font-size: 1.05rem;
}
.contact-facts a { display: block; }
.contact-facts a:hover { color: var(--bronze); }
.contact-form {
  background: var(--paper-2);
  display: grid;
  gap: 22px;
  align-content: start;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color 0.35s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus { border-bottom-color: var(--bronze); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.submit {
  justify-self: start;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--bronze);
  cursor: pointer;
  padding: 0 0 2px;
}

.map { height: 320px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

/* Footer */
.site-footer {
  background: #11100e;
  color: rgba(243, 239, 230, 0.7);
  padding: 64px 24px 28px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.footer-top img { height: 48px; }
.footer-top p { margin: 0; color: var(--paper); font-family: var(--serif); font-size: 1.2rem; line-height: 1.25; }
.footer-cols {
  display: grid;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(243, 239, 230, 0.1);
  border-bottom: 1px solid rgba(243, 239, 230, 0.1);
}
.footer-cols span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}
.footer-cols p, .footer-cols a { margin: 0; color: rgba(243, 239, 230, 0.7); }
.footer-cols nav { display: grid; gap: 6px; }
.footer-cols nav a:hover { color: var(--paper); }
.footer-copy { margin: 24px 0 0; font-size: 0.78rem; color: rgba(243, 239, 230, 0.4); }

/* Inner pages */
.site-header.is-inner .logo-light { display: none; }
.site-header.is-inner .logo-dark { display: block; }
.site-header.is-inner .nav-toggle,
.site-header.is-inner .nav-phone { color: var(--ink); }
.nav-col nav a[aria-current="page"] { color: var(--bronze); }

.page-hero {
  padding: calc(var(--header) + 48px) 0 56px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  max-width: 16ch;
}
.page-stand {
  margin: 22px 0 0;
  max-width: 34em;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--mute);
}
.page-mast {
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
}
.page-mast > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.72) contrast(1.05) brightness(0.7);
}
.page-mast-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 24, 20, 0.18) 0%, rgba(26, 24, 20, 0.22) 42%, rgba(26, 24, 20, 0.78) 100%);
}
.page-mast-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 52px;
}
.page-mast h1 { color: var(--paper); }
.page-mast .page-stand,
.page-mast .empty-note { color: rgba(243, 239, 230, 0.8); padding-bottom: 0; }
.bleed {
  margin: 0;
  height: min(68vh, 680px);
  overflow: hidden;
}
.bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.78);
}
.page-split {
  display: grid;
  gap: 48px;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.page-prose { max-width: 40em; }
.page-prose p {
  font-size: 1.05rem;
  margin-bottom: 1.15em;
}
.page-prose ul {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.page-prose li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.02rem;
}
.page-prose li:last-child { border-bottom: 1px solid var(--line); }
.page-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 4px;
}
.page-rail nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.page-rail nav a {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--mute);
}
.page-rail nav a:hover,
.page-rail nav a[aria-current="page"] { color: var(--ink); }

.area-index {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.area-index a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.area-index a:hover .area-name { color: var(--bronze); }
.area-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
}
.area-name {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
}
.area-name,
.area-copy { grid-column: 2; }
.area-copy {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--mute);
}
body.inner .contact-copy,
body.inner .contact-form {
  padding-top: calc(var(--header) + 48px);
}

.team {
  padding: clamp(64px, 8vw, 96px) 0 clamp(80px, 10vw, 120px);
}
.team-grid {
  display: grid;
  gap: 40px;
}
.team-card h3 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 6px;
}
.team-role {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--bronze);
}
.team-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.98rem;
}
.team-card li:last-child { border-bottom: 1px solid var(--line); }

.logo-grid-named { grid-template-columns: 1fr; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: center;
  color: var(--ink);
  line-height: 1.3;
}

.news-list {
  display: grid;
  gap: 40px;
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(80px, 10vw, 120px);
}
.news-card a { display: grid; gap: 16px; }
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.82);
}
.news-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.news-card p { max-width: 40em; }
.news-src {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.empty-note {
  max-width: 28em;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--mute);
  padding-bottom: clamp(80px, 10vw, 140px);
}
.page-bottom {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(72px, 10vw, 120px);
}
.blog-index {
  display: grid;
  border-top: 1px solid var(--line);
}
.blog-index a {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.blog-index a:hover .blog-title { color: var(--bronze); }
.blog-meta {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}
.blog-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  color: var(--ink);
  line-height: 1.1;
}
.blog-excerpt { margin: 0; max-width: 40em; }
.post-note {
  margin-top: 2.2em;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--mute);
}

@media (min-width: 800px) {
  .hero-copy { padding: 0 56px 72px; }
  .hero-place { right: 48px; }
  .practice-layout { grid-template-columns: 0.95fr 1.05fr; min-height: 100svh; }
  .practice-visual { position: sticky; top: 0; height: 100svh; min-height: 100svh; }
  .practice-panel { padding: 120px 48px 80px; }
  .profile-grid { grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: start; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .logo-grid { grid-template-columns: repeat(4, 1fr); }
  .logo-grid-named { grid-template-columns: 1fr 1fr; }
  .press-grid { grid-template-columns: 1.4fr 0.8fr; align-items: start; gap: 56px; }
  .contact { grid-template-columns: 1fr 1fr; }
  .contact-copy { padding: 100px 64px; }
  .contact-form { padding: 100px 64px; }
  body.inner .contact-copy,
  body.inner .contact-form { padding-top: calc(var(--header) + 56px); }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .map { height: 420px; }
  .nav-phone { display: block; }
  .nav-index {
    overflow: hidden;
    padding: calc(var(--header) + 12px) clamp(24px, 4vw, 56px) 36px;
  }
  .nav-index-inner {
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 56px;
    align-items: stretch;
    height: calc(100svh - var(--header) - 48px);
    min-height: 0;
    max-height: calc(100svh - var(--header) - 48px);
  }
  .nav-col { padding-bottom: 28px; }
  .nav-col nav a,
  .nav-col-practice nav a {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    line-height: 1.25;
    padding: 5px 0;
    gap: 14px;
  }
  .nav-col-practice {
    padding-top: 0;
    border-top: 0;
  }
  .nav-col-practice nav {
    display: block;
  }
  .nav-col-practice nav a em {
    font-size: 0.45em;
    min-width: 1.5em;
  }
  .nav-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    height: 100%;
    padding: 4px 0 8px 32px;
    border-left: 1px solid var(--line);
    opacity: 0;
    transform: translateY(16px);
  }
  .page-hero { padding: calc(var(--header) + 64px) 0 72px; }
  .page-mast-copy { padding-bottom: 72px; }
  .bleed { height: min(78vh, 780px); }
  .page-split { grid-template-columns: 1.3fr 0.7fr; gap: 64px; }
  .page-rail { position: sticky; top: calc(var(--header) + 24px); align-self: start; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .news-list { grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: start; }
}

@media (min-width: 1100px) {
  .practice-row { grid-template-columns: 48px 0.9fr 1.2fr; align-items: baseline; }
  .pr-copy { grid-column: auto; margin-top: 0; }
  .page-split { grid-template-columns: 1.35fr 0.75fr; gap: 80px; }
  .area-index { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .nav-index { clip-path: none; }
  .nav-index:not(.is-open) { display: none; }
  .nav-col nav a, .nav-aside { opacity: 1; transform: none; animation: none !important; }
}
