:root {
  --bg: #f5f5f7;
  --bg-deep: #ece9e3;
  --surface: #ffffff;
  --ink: #1a2442;
  --ink-soft: #3d465c;
  --muted: #6e7688;
  --line: #ddd8cf;
  --gold: #9c824a;
  --gold-soft: #b89a63;
  --navy: #1a2442;
  --navy-2: #12182d;
  --danger: #8b2e2e;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 18px 50px rgba(26, 36, 66, 0.1);
  --radius: 22px;
  --glass: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.72);
  --blur: 18px;
  --header-h: 84px;
  --wrap: 1240px;
  --z-nav: 80;
  --z-overlay: 90;
  --z-drawer: 100;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  position: relative;
  isolation: isolate;
}
body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  animation: drift 24s var(--ease) infinite alternate;
}
body::before {
  top: -8%;
  right: -8%;
  background: rgba(156, 130, 74, 0.28);
}
body::after {
  bottom: 8%;
  left: -12%;
  background: rgba(26, 36, 66, 0.16);
  animation-delay: -10s;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 300;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}
.skip:focus { top: 16px; }

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 12px;
  z-index: var(--z-nav);
  margin: 12px auto 0;
  width: min(100% - 24px, calc(var(--wrap) + 32px));
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 980px;
  box-shadow: 0 10px 40px rgba(26, 36, 66, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 16px 50px rgba(26, 36, 66, 0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 10px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 52px;
  height: 52px;
  flex: none;
  display: block;
  border-radius: 50%;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.1;
}
.brand-text .name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-text .name em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}
.brand-text span {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  min-height: 44px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.22s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(156, 130, 74, 0.45);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 980px;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.nav-cta:active { transform: scale(0.97); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.22s var(--ease), opacity 0.22s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 20, 25, 0.45);
  z-index: var(--z-overlay);
}

/* ——— Type ——— */
.kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.area-kicker {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
}
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 980px;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5vw, 64px); line-height: 1.12; }
h1 em { font-style: italic; font-weight: 600; }
h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.18; }
.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.5;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 980px;
  transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.2s var(--ease), box-shadow 0.22s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-solid { background: var(--ink); color: #fff; box-shadow: 0 10px 28px rgba(26, 36, 66, 0.22); }
.btn-solid:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-line { border: 1px solid rgba(26, 36, 66, 0.18); background: var(--glass); backdrop-filter: blur(12px); }
.btn-line:hover { background: var(--ink); color: #fff; }

.more {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  white-space: nowrap;
}
.more:hover { opacity: 0.7; }

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.crumb b { color: var(--ink-soft); font-weight: 500; }

.page-head {
  background: var(--surface);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-head-brand {
  position: relative;
  overflow: hidden;
}
.page-head-brand h1 {
  position: relative;
  z-index: 1;
}
.head-mark {
  position: absolute;
  right: -2%;
  top: 8px;
  width: min(46vw, 300px);
  height: auto;
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-sub {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 16px;
}

.sec { padding: 80px 0; }
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ——— Hero ——— */
.hero {
  background: transparent;
  border: 0;
}
.hero-copy > * {
  animation: rise 0.7s var(--ease) both;
}
.hero-copy > *:nth-child(2) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.2s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  padding: 40px 0 48px;
  align-items: center;
}
.hero h1 { max-width: 16ch; }
.hero-copy p { color: var(--ink-soft); font-size: 16.5px; margin-top: 20px; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo {
  aspect-ratio: 4 / 5;
  padding: 10px;
  border-radius: 32px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  animation: rise 0.8s 0.12s var(--ease) both;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.principles { background: transparent; padding: 36px 0 48px; }
.principles .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pr {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  padding: 28px 26px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26, 36, 66, 0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pr:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(26, 36, 66, 0.12); }
.pr .ico {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 16px;
}
.pr .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}
.pr h3 { font-size: 22px; margin-bottom: 10px; font-weight: 700; }
.pr p { color: var(--ink-soft); font-size: 15.5px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.feat-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26, 36, 66, 0.07);
  min-height: 220px;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.feat-card:hover {
  border-color: rgba(156, 130, 74, 0.45);
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 50px rgba(26, 36, 66, 0.12);
}
.feat-card .ico { width: 36px; height: 36px; color: var(--gold); }
.feat-card h3 { font-size: 20px; margin: 16px 0 10px; }
.feat-card p { color: var(--ink-soft); font-size: 15px; }

.why {
  background: transparent;
  position: relative;
  overflow: hidden;
  border: 0;
}
.why-mark {
  position: absolute;
  left: -2%;
  top: 10%;
  width: min(42vw, 340px);
  opacity: 0.07;
  pointer-events: none;
}
.why .wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}
.why-list { display: grid; gap: 22px; }
.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}
.why-item svg { color: var(--gold); margin-top: 6px; }
.why-item h3 { font-size: 20px; margin-bottom: 4px; }
.why-item p { color: var(--ink-soft); font-size: 15.5px; }

.pubs .pub {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  padding: 26px 24px;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(26, 36, 66, 0.07);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.pub:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(26, 36, 66, 0.12); }

.social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
}
.social a:hover { border-color: var(--gold); color: var(--gold); }
.social svg { width: 16px; height: 16px; }
.foot-brand .brand { margin-bottom: 14px; }

/* Practice list */
.areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.area-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  min-height: 44px;
  transition: background 0.22s var(--ease), transform 0.22s var(--ease);
}
.area-row:hover { background: rgba(255,255,255,.5); transform: translateX(6px); }
.area-row .n { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }
.area-row .t { font-family: var(--serif); font-weight: 600; font-size: 20px; }
.area-row .a { color: var(--navy); opacity: 0; transition: opacity 0.22s; }
.area-row:hover .a { opacity: 1; }
.areas > a:nth-child(odd) { margin-right: 28px; }
.areas > a:nth-child(even) { margin-left: 28px; }

.about { background: transparent; border: 0; }
.about .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}
.visual {
  aspect-ratio: 4 / 5;
  padding: 10px;
  border-radius: 32px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}
.about-copy { position: relative; overflow: hidden; }
.about-title {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.about-mark {
  right: -8%;
  top: -12%;
}
.about-copy .lede { margin: 8px 0 22px; }
.about-copy p { color: var(--ink-soft); max-width: 62ch; }
.about-copy p + p { margin-top: 14px; }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.fact { padding: 0; border: 0; }
.fact b {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  font-variant-numeric: lining-nums tabular-nums;
}
.fact span {
  display: block;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 14ch;
}

.pubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pub { padding-top: 22px; }
.pub:hover h3 { color: var(--navy); }
.pub .meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.pub h3 { font-size: 22px; line-height: 1.3; transition: color 0.22s; }
.pub p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; }

.cta-band {
  background: transparent;
  border: 0;
  padding: 72px 0;
}
.cta-band .wrap { display: block; }
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-band h2 { max-width: 18ch; }
.cta-band p { color: var(--ink-soft); margin-top: 12px; max-width: 52ch; }

.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.site-footer h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}
.site-footer a { display: block; padding: 6px 0; min-height: 36px; color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
}

/* About extras */
.story .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 80px;
}
.values { background: transparent; border: 0; }
.v-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  margin-top: 48px;
}
.v-item {
  padding: 40px 40px 40px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
}
.v-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--line);
}
.v-item .n { font-family: var(--serif); font-style: italic; color: var(--muted); }
.v-item h3 { font-size: 22px; margin-bottom: 8px; }
.v-item p { color: var(--ink-soft); font-size: 14.5px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.member .photo {
  aspect-ratio: 3 / 4;
  background: #e8ecf1;
  position: relative;
  overflow: hidden;
}
.member .photo span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 42px;
  color: var(--navy);
  letter-spacing: 0.08em;
}
.member .photo::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.member:hover .photo::after { transform: scaleX(1); }
.member h3 { font-size: 24px; margin-top: 18px; }
.member .role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 6px;
}
.member p { color: var(--ink-soft); font-size: 14px; margin-top: 10px; }

/* Practice interior */
.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 72px;
  padding: 64px 0 96px;
}
.side { position: sticky; top: 112px; align-self: start; }
.side-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 6px;
  font-weight: 600;
}
.side-nav { display: flex; flex-direction: column; max-height: 58vh; overflow: auto; }
.side-nav button {
  all: unset;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 4px;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.22s, padding-left 0.22s;
}
.side-nav button .n { font-size: 11px; color: var(--muted); min-width: 22px; font-variant-numeric: tabular-nums; }
.side-nav button:hover { color: var(--ink); padding-left: 8px; }
.side-nav button.on { color: var(--ink); font-weight: 600; }
.side-nav button.on .n { color: var(--navy); }
.side-cta {
  margin-top: 28px;
  padding: 24px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.side-cta p { font-family: var(--serif); font-size: 18px; line-height: 1.45; margin-bottom: 14px; }
.side-cta a { display: inline-block; font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.side-cta a:hover { opacity: 0.7; }

.area-intro { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); line-height: 1.55; max-width: 62ch; }
.svc-label {
  margin: 48px 0 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}
.svc {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 32px;
}
.svc h3 { font-size: 19px; }
.svc p { color: var(--ink-soft); font-size: 15px; }
.content-foot { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; }
.pager {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 44%;
  min-height: 44px;
}
.pager:hover .t { color: var(--navy); }
.pager .dir { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pager .t { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.pager.next { text-align: right; align-items: flex-end; margin-left: auto; }
.fade { animation: fadein 0.4s var(--ease) both; }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.page-index { font-family: var(--serif); color: var(--muted); white-space: nowrap; }
.page-index b { font-size: 22px; }
.page-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

/* Publications */
.filters {
  display: flex;
  gap: 4px;
  margin-top: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.filters button {
  all: unset;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 16px;
  min-height: 44px;
  position: relative;
}
.filters button:hover, .filters button.on { color: var(--ink); }
.filters button.on::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: -1px;
  height: 2px;
  background: var(--navy);
}
.pub-list { border-top: 1px solid var(--ink); }
.pub-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.35fr) minmax(0, 1fr) 40px;
  gap: 28px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background 0.22s, padding-left 0.22s;
}
.pub-row:hover { background: var(--surface); padding-left: 16px; }
.pub-row:hover .go { opacity: 1; }
.pub-row.hide { display: none; }
.pub-meta { display: flex; flex-direction: column; gap: 6px; }
.pub-meta .cat { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.pub-meta .date { font-size: 12.5px; color: var(--muted); }
.pub-row h3 { font-size: 22px; line-height: 1.3; }
.pub-row .exc { font-size: 14.5px; color: var(--ink-soft); }
.pub-row .go { color: var(--navy); opacity: 0; justify-self: end; }
.empty { padding: 56px 0; color: var(--muted); display: none; }
.note {
  margin-top: 48px;
  padding: 24px 28px;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-size: 13.5px;
  color: var(--muted);
  max-width: 74ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
  gap: 0;
  padding: 72px 0 110px;
}
.info-list { border-top: 1px solid var(--ink); }
.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-row .l { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-row .v { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.info-row .v small { display: block; font-family: var(--sans); font-size: 13.5px; color: var(--ink-soft); font-weight: 400; margin-top: 4px; }
.map-embed {
  margin-top: 36px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  display: block;
}
.form-card {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-head { padding: 32px 36px; border-bottom: 1px solid var(--line); }
.form-head h2 { font-size: 28px; }
.form-head p { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.f-body { padding: 8px 36px 36px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.f-field { padding-top: 22px; }
.f-field label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.req { color: var(--navy); }
.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 14px 16px;
  min-height: 48px;
  border-radius: 14px;
  outline: none;
  transition: border-color 0.22s, background 0.22s;
  resize: vertical;
}
.f-field textarea { min-height: 120px; }
.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus { border-color: var(--ink); background: #fff; }
.f-field.is-invalid input,
.f-field.is-invalid select,
.f-field.is-invalid textarea { border-color: var(--danger); }
.err { display: none; color: var(--danger); font-size: 12.5px; margin-top: 6px; }
.f-field.is-invalid .err { display: block; }
.f-consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 24px; font-size: 13px; color: var(--ink-soft); }
.f-consent input { margin-top: 4px; accent-color: var(--navy); width: 18px; height: 18px; flex: none; }
.f-submit {
  margin-top: 24px;
  width: 100%;
  min-height: 52px;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 980px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.f-submit:active { transform: scale(0.98); }
.f-submit:hover { background: var(--navy-2); }
.f-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.f-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }
.form-ok {
  display: none;
  padding: 40px 36px;
  color: var(--ink-soft);
}
.form-ok.is-visible { display: block; }
.form-ok h2 { margin-bottom: 10px; }

.stats {
  background: transparent;
  border: 0;
  padding: 36px 0;
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 28px 16px;
  box-shadow: 0 12px 40px rgba(26, 36, 66, 0.07);
}
.stats b {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  display: block;
  color: var(--navy);
  line-height: 1.1;
}
.stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  min-height: 180px;
  transition: transform 0.22s var(--ease);
}
.step:hover { transform: translateY(-4px); }
.step .n {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 22px;
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 14.5px; }

.quote {
  background: transparent;
  border: 0;
}
.quote .wrap {
  max-width: 820px;
  text-align: center;
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 48px 32px;
  box-shadow: 0 12px 40px rgba(26, 36, 66, 0.07);
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
  font-weight: 600;
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.contact-bar a, .contact-bar div {
  background: var(--glass);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  min-height: 108px;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.contact-bar a:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26, 36, 66, 0.1); }
.contact-bar .l {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-bar .v { font-family: var(--serif); font-size: 20px; font-weight: 600; }

.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
}
.reveal-ready.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

@media (max-width: 1024px) {
  .site-header {
    border-radius: 24px;
    top: 8px;
    width: min(100% - 16px, calc(var(--wrap) + 32px));
  }
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .nav-toggle { display: inline-flex; }
  .nav-overlay.is-open { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 28px 32px;
    gap: 4px;
    z-index: var(--z-drawer);
    transform: translateX(110%);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { transform: none; }
  .nav-links a { color: var(--ink-soft); }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] { color: var(--ink); }
  .nav-links a { justify-content: start; padding: 14px 4px; }
  .nav-cta { display: none; }
  .hero .wrap, .about .wrap, .story .wrap, .contact-grid, .why .wrap { grid-template-columns: 1fr; gap: 36px; }
  .feat-grid, .principles .wrap { grid-template-columns: 1fr; }
  .pr { padding: 28px 24px; }
  .areas { grid-template-columns: 1fr; }
  .areas > a { margin: 0 !important; }
  .pubs, .team-grid, .v-grid, .foot-grid, .stats .wrap, .steps, .contact-bar { grid-template-columns: 1fr; }
  .v-item, .v-item:nth-child(even) { padding: 28px 0 !important; border-left: 0 !important; }
  .layout { grid-template-columns: 1fr; }
  .side { position: static; }
  .side-nav { max-height: none; }
  .svc { grid-template-columns: 1fr; gap: 8px; }
  .pub-row { grid-template-columns: 1fr; gap: 8px; }
  .pub-row .go { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .form-head, .f-body { padding-inline: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before, body::after { animation: none; }
  .hero-copy > *, .hero-photo { animation: none; }
  .reveal-ready { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
