:root {
  --ink: #071b34;
  --muted: #515b61;
  --ivory: #fbfaf5;
  --paper: #ffffff;
  --mist: #efefea;
  --line: #dcdcd5;
  --navy: #001a35;
  --gold: #9a7a3f;
  --danger: #8f2525;
  --serif: "Libre Caslon Text", Georgia, serif;
  --sans: "Hanken Grotesk", Arial, sans-serif;
  --max: 1200px;
  --pad: clamp(22px, 6vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 21, 21, .12);
  background: rgba(251, 250, 245, .91);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background-color .3s ease;
}
.site-header.scrolled { background: rgba(251, 250, 245, .98); box-shadow: 0 12px 35px rgba(7, 27, 52, .07); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-family: var(--sans);
  position: relative;
}
.temple-icon { position: relative; width: 17px; height: 16px; display: block; }
.temple-icon::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 7.5px solid transparent;
  border-right: 7.5px solid transparent;
  border-bottom: 5px solid white;
}
.temple-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  bottom: 0;
  border-top: 1px solid white;
  border-bottom: 2px solid white;
  background: repeating-linear-gradient(90deg, white 0 1px, transparent 1px 4px);
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 46px);
}
.main-nav a, .header-cta, .eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: #525655;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta {
  border: 1px solid var(--ink);
  padding: 11px 22px;
  transition: .25s;
}
.header-cta:hover { background: var(--ink); color: white; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.account-link {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  background: #020405;
  transition: transform .25s ease, background-color .25s ease;
}
.account-link::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}
.account-link::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 14px;
  height: 7px;
  border: 1px solid white;
  border-radius: 10px 10px 5px 5px;
}
.account-link:hover { transform: translateY(-2px); background: var(--gold); }
.menu-toggle { display: none; }

main { min-height: 70vh; }
.loading-screen {
  min-height: 70vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.loading-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-family: var(--serif);
}

.container {
  width: min(calc(100% - (var(--pad) * 2)), var(--max));
  margin-inline: auto;
}
.section { padding: clamp(80px, 10vw, 146px) 0; }
.section-sm { padding: clamp(52px, 7vw, 92px) 0; }
.eyebrow {
  display: inline-block;
  color: var(--muted);
  margin-bottom: 22px;
}
.eyebrow.ruled { display: inline-flex; align-items: center; gap: 16px; }
.eyebrow.ruled::before { content: ""; width: 32px; height: 1px; background: var(--gold); }
.eyebrow.gold { color: var(--gold); }
.display {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.045em;
  white-space: pre-line;
}
.headline {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.035em;
  white-space: pre-line;
}
.subhead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: 400;
  line-height: 1.18;
}
.lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
}
.rule { height: 1px; background: var(--line); }
.button {
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
}
.button:hover { background: var(--navy); border-color: var(--navy); }
.button.outline { background: transparent; color: var(--ink); }
.button.outline:hover { background: var(--ink); color: white; }
.button.gold { border-color: var(--gold); background: var(--gold); }
.text-link {
  font-family: var(--sans);
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/hero-architecture.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(1.05);
  opacity: .42;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(250,249,244,.96) 0%, rgba(250,249,244,.78) 42%, rgba(250,249,244,.2) 100%),
    linear-gradient(0deg, rgba(250,249,244,.8), transparent 50%);
}
.hero-content { padding: 110px 0 90px; }
.hero .display { max-width: 820px; }
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.hero-index {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
}

.home-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
}
.home-intro .headline { max-width: 470px; }
.manifesto-list { border-top: 1px solid var(--line); }
.manifesto-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.manifesto-row span { color: var(--gold); font-family: var(--serif); }
.manifesto-row h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 400; font-size: 23px; }
.manifesto-row p { margin: 0; color: var(--muted); }

.doctrine-section { padding-top: clamp(100px, 11vw, 160px); padding-bottom: clamp(90px, 12vw, 170px); }
.doctrine-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(70px, 11vw, 150px);
  align-items: start;
}
.doctrine-intro { max-width: 350px; }
.doctrine-title { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.doctrine-title > span {
  color: #c8cdce;
  font-family: var(--serif);
  font-size: 52px;
  line-height: .9;
  letter-spacing: -.04em;
}
.doctrine-title h2 {
  margin: -3px 0 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.15;
}
.doctrine-intro p { margin: 0 0 28px; color: var(--ink); font-size: 16px; line-height: 1.55; }
.doctrine-cards { display: grid; gap: 30px; }
.doctrine-card {
  min-height: 150px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 16px;
  padding: 30px 34px;
  border: 1px solid #dfe1df;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 26px rgba(7,27,52,.025);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.doctrine-card:nth-child(2) { margin-left: 48px; }
.doctrine-card:hover { transform: translateY(-5px); border-color: rgba(154,122,63,.55); box-shadow: 0 18px 42px rgba(7,27,52,.07); }
.doctrine-symbol { color: var(--ink); font-size: 19px; line-height: 1.2; }
.doctrine-card h3 { margin: 0 0 12px; font-size: 24px; font-weight: 400; }
.doctrine-card p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; }
.practice-showcase { padding-top: clamp(85px, 10vw, 145px); background: var(--ivory); }
.practice-showcase .section-heading { margin-bottom: 72px; }
.practice-showcase .section-heading p { color: #4f5659; font-size: 16px; }

.dark-panel {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}
.dark-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/dark-architecture.jpg") center/cover no-repeat;
  opacity: .12;
  mix-blend-mode: screen;
  pointer-events: none;
}
.dark-panel > * { position: relative; z-index: 1; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 60px;
}
.section-heading p { max-width: 480px; margin: 0; color: var(--muted); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.practice-card {
  min-height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: #e9e9e5;
  border: 1px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s ease, background-color .4s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.practice-card-image,
.practice-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.practice-card-image {
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  filter: grayscale(1) contrast(.95);
  transform: scale(1.015);
  transition: opacity .65s ease, filter .65s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.practice-card::after {
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgba(241,241,237,.75) 0%, rgba(241,241,237,.96) 68%);
  opacity: 0;
  transition: opacity .45s ease, background .45s ease;
}
.practice-card.has-image .practice-card-image { opacity: .24; }
.practice-card.has-image::after { opacity: 1; }
.practice-card.has-image:hover {
  background: var(--navy);
  color: white;
}
.practice-card.has-image:hover .practice-card-image {
  opacity: .68;
  filter: grayscale(.15) contrast(1.03);
  transform: scale(1.085);
}
.practice-card.has-image:hover::after {
  background: linear-gradient(180deg, rgba(7,27,52,.08) 0%, rgba(7,27,52,.92) 78%);
}
.practice-card.featured {
  grid-column: span 2;
  background: var(--navy);
  color: white;
}
.practice-card.featured .practice-card-image {
  opacity: .58;
  filter: grayscale(.35) contrast(1.05);
}
.practice-card.featured::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(5,24,44,.95) 0%, rgba(5,24,44,.68) 62%, rgba(5,24,44,.2) 100%);
}
.practice-card > *:not(.practice-card-image) { position: relative; z-index: 1; }
.practice-card:hover { transform: translateY(-7px); border-color: rgba(154,122,63,.65); box-shadow: 0 18px 40px rgba(7,27,52,.09); }
.card-number { color: var(--gold); font-family: var(--serif); font-size: 12px; }
.practice-card h3 { margin: 48px 0 8px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.practice-card p { max-width: 470px; margin: 0; color: #455058; font-size: 14px; }
.practice-card.featured p,
.practice-card.has-image:hover p { color: rgba(255,255,255,.82); }
.card-arrow { position: absolute; right: 24px; top: 20px; font-size: 18px; transition: transform .3s ease; }
.practice-card:hover .card-arrow { transform: translate(3px,-3px); }

.team-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper);
  border: 1px solid var(--line);
}
.team-photo { min-height: 610px; background: #ddd center top/cover no-repeat; filter: saturate(.72); }
.team-copy { padding: clamp(34px, 6vw, 85px); align-self: center; }
.team-copy h2 { margin: 12px 0 10px; font-family: var(--serif); font-size: clamp(38px, 4vw, 60px); font-weight: 400; line-height: 1; }
.team-copy .role { color: var(--gold); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.team-copy p { color: var(--muted); }
.team-copy .credentials { font-size: 13px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 7vw, 100px);
  margin-top: 90px;
}
.team-card:nth-child(even) { margin-top: 100px; }
.team-card .photo { aspect-ratio: 4/5; background: #ddd center top/cover no-repeat; filter: saturate(.75); }
.team-card h3 { margin: 22px 0 4px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.team-card .role { color: var(--gold); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.team-card p { color: var(--muted); }

.team-editorial-hero {
  padding-top: clamp(76px, 8vw, 110px);
  padding-bottom: clamp(66px, 7vw, 96px);
  border-bottom: 0;
}
.team-editorial-hero .display { max-width: 1120px; font-size: clamp(46px, 4.55vw, 64px); line-height: 1.08; }
.team-editorial-hero .lede { max-width: 700px; margin-top: 30px; color: var(--ink); }
.team-lead-section { padding-top: 0; padding-bottom: clamp(100px, 13vw, 185px); overflow: hidden; }
.team-lead-stage {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 0 0 0 46px;
}
.team-lead-stage::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  height: 250px;
  background: #e9e9e4;
}
.team-lead-portrait {
  position: relative;
  z-index: 1;
  width: 61%;
  height: 800px;
  overflow: hidden;
  background: #d9d9d4;
  box-shadow: 0 24px 55px rgba(7,27,52,.15);
}
.team-lead-portrait .team-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  filter: none;
  transform: scale(1);
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.team-lead-stage:hover .team-lead-portrait .team-photo { transform: scale(1.045); }
.team-lead-card {
  --card-x: 0px;
  --card-y: 0px;
  position: relative;
  z-index: 2;
  width: 56%;
  margin-left: -17%;
  padding: clamp(42px, 5.2vw, 68px);
  border: 1px solid rgba(7,27,52,.08);
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), transparent 50%),
    #f2f2ee;
  box-shadow: 0 22px 58px rgba(7,27,52,.14);
  transform: translate3d(var(--card-x),var(--card-y),0);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.team-lead-stage:hover .team-lead-card { box-shadow: 0 30px 75px rgba(7,27,52,.18); }
.team-lead-card .role {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-lead-card .role span { width: 8px; height: 8px; background: #737c7a; }
.team-lead-card h2 {
  margin: 26px 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.035em;
}
.team-lead-card blockquote {
  margin: 0 0 28px;
  padding: 8px 0 8px 24px;
  border-left: 2px solid #7c847f;
  font-family: var(--serif);
  font-size: clamp(22px, 2.35vw, 31px);
  font-style: italic;
  line-height: 1.4;
}
.team-lead-card p { margin: 0 0 20px; color: var(--ink); font-size: 15px; line-height: 1.65; }
.team-lead-card .button { margin-top: 12px; }
.team-partners-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f4f7 0%, #f8f7f2 58%, #f3f2ed 100%);
}
.ambient-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .32;
  pointer-events: none;
}
.glow-one { right: -250px; top: -250px; background: #ece2c9; }
.glow-two { left: -300px; bottom: -350px; background: #dce7f2; }
.team-partners-section .container { position: relative; z-index: 1; max-width: 1040px; }
.team-partners-section .team-grid { margin: 0; gap: clamp(50px, 8vw, 95px); }
.team-card:nth-child(even) { margin-top: 120px; }
.photo-frame { aspect-ratio: 4/5; overflow: hidden; background: #ddd; box-shadow: 0 8px 26px rgba(7,27,52,.1); }
.team-card .photo { width: 100%; height: 100%; aspect-ratio: auto; filter: none; transform: scale(1); transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.team-card:hover .photo { transform: scale(1.035); }
.team-card-copy { padding-top: 30px; }
.team-card-copy .role {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.team-card-copy h3 { margin: 18px 0 14px; font-size: 31px; }
.team-card-copy p { margin: 0 0 18px; color: var(--ink); font-size: 15px; line-height: 1.62; }
.team-card-copy .text-link { margin-top: 8px; }

.editorial-hero {
  padding: clamp(100px, 13vw, 180px) 0 clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
}
.editorial-hero.split .container {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}
.about-image {
  min-height: 470px;
  background: url("../images/about-library.jpg") center/cover no-repeat;
  filter: grayscale(1);
  opacity: .72;
}
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 9vw, 140px);
  align-items: center;
}
.quote-image {
  min-height: 430px;
  background: url("../images/about-pen.jpg") center/cover no-repeat;
  filter: grayscale(1) contrast(1.12);
}
.quote-section blockquote {
  margin: 25px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.3vw, 51px);
  line-height: 1.15;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { min-height: 265px; padding: 32px; background: #efefe9; }
.value-card .value-symbol { color: var(--gold); font-family: var(--serif); font-size: 22px; }
.value-card h3 { margin: 55px 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.value-card p { color: var(--muted); }
.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: var(--paper);
}
.impact-image { background: url("../images/about-court.jpg") center/cover no-repeat; filter: grayscale(1); }
.impact-copy { align-self: center; padding: clamp(38px, 7vw, 92px); }
.metrics { display: flex; gap: 52px; margin-top: 34px; }
.metric strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.metric span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }

.insight-feature {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  min-height: 470px;
  background: var(--navy);
  color: white;
}
.insight-feature-image { background: #071d34 center/cover no-repeat; opacity: .72; }
.insight-feature-copy { align-self: center; padding: clamp(32px, 5vw, 64px); }
.insight-feature h2 { margin: 18px 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 55px); line-height: 1.05; font-weight: 400; }
.insight-feature p { color: rgba(255,255,255,.7); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.insight-card { background: var(--paper); border: 1px solid var(--line); }
.insight-card-image { aspect-ratio: 16/10; background: #ddd center/cover no-repeat; filter: grayscale(.8); }
.insight-card-copy { padding: 28px; }
.insight-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 25px; line-height: 1.15; font-weight: 400; }
.insight-card p { color: var(--muted); }
.insight-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--gold); font-size: 10px; letter-spacing: .1em; }
.article-view { max-width: 820px; }
.article-view .article-meta { color: var(--gold); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.article-view .display { font-size: clamp(44px, 5vw, 72px); }
.article-view .article-body { margin-top: 45px; color: #3f4342; font-family: var(--serif); font-size: 21px; line-height: 1.8; white-space: pre-line; }

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 8vw, 120px);
}
.faq-side { position: sticky; top: 110px; align-self: start; }
.faq-aside {
  margin-top: 48px;
  padding: 28px;
  background: #efefe9;
  border-top: 2px solid var(--gold);
}
.faq-aside p { color: var(--muted); font-size: 14px; }
.faq-group { margin-bottom: 58px; }
.faq-group-title { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-question span:last-child { font-size: 20px; transition: transform .25s; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { margin: 0; padding: 0 40px 25px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.contact-details { margin-top: 80px; }
.contact-line { display: grid; grid-template-columns: 28px 1fr; gap: 16px; margin: 26px 0; }
.contact-line span:first-child { color: var(--gold); }
.contact-line strong { display: block; font-family: var(--serif); font-size: 17px; font-weight: 400; }
.contact-line small { display: block; color: var(--muted); }
.contact-form { padding: clamp(30px, 5vw, 64px); background: var(--paper); border: 1px solid #eeeeea; }
.contact-form h2 { margin: 0 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.contact-form > p { margin: 0 0 35px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 28px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bfc1bd;
  border-radius: 0;
  background: transparent;
  padding: 9px 0;
  outline: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 22px; margin-top: 32px; }
.form-note { max-width: 270px; color: var(--muted); font-size: 10px; }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.network-card { min-height: 260px; position: relative; overflow: hidden; background: #ddd center/cover no-repeat; filter: grayscale(1); }
.network-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.network-card span { position: absolute; z-index: 1; left: 22px; bottom: 18px; color: white; font-family: var(--serif); font-size: 21px; }

.legal-nav { display: flex; gap: 10px; flex-wrap: wrap; margin: 45px 0; }
.legal-copy { max-width: 850px; }
.legal-copy section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-copy h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.legal-copy p, .legal-copy li { color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #f1f1ec; }
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(35px, 5vw, 80px);
  padding: 72px var(--pad);
}
.footer-main > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-main p, .footer-main a { margin: 0; color: var(--muted); font-size: 13px; }
.footer-main a:hover { color: var(--ink); }
.footer-brand { margin-bottom: 15px; }
.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
  color: #797c7a;
  font-size: 9px;
  letter-spacing: .08em;
}
.footer-links { display: flex; gap: 20px; }
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  max-width: 380px;
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
  transform: translateY(120px);
  opacity: 0;
  transition: .3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: var(--danger); }
.empty-state { padding: 50px; border: 1px solid var(--line); text-align: center; color: var(--muted); }

.site-footer, .field, .form-note, .insight-meta, .footer-bottom { font-family: var(--sans); }
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .85s cubic-bezier(.2,.7,.2,1) var(--reveal-delay,0ms),
    transform .85s cubic-bezier(.2,.7,.2,1) var(--reveal-delay,0ms);
  will-change: transform, opacity;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.practice-card.reveal.revealed:hover { transform: translateY(-7px); }
.doctrine-card.reveal.revealed:hover { transform: translateY(-5px); }
.text-link { transition: color .25s ease, letter-spacing .25s ease; }
.text-link:hover { color: var(--gold); letter-spacing: .13em; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .main-nav {
    position: fixed;
    inset: 80px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 50px var(--pad);
    background: var(--ivory);
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .menu-open .main-nav { transform: translateX(0); }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: 0; text-transform: none; }
  .main-nav a::after { display: none; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    place-self: center end;
    width: 40px;
    height: 40px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span { height: 1px; background: var(--ink); transition: .25s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .header-cta { display: none; }
  .home-intro, .doctrine-layout, .editorial-hero.split .container, .quote-section, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .doctrine-intro { max-width: 520px; }
  .doctrine-cards { max-width: 760px; margin-left: auto; }
  .team-lead-stage { min-height: 0; display: grid; grid-template-columns: 1fr; padding: 0 38px; }
  .team-lead-portrait { width: 82%; height: 720px; }
  .team-lead-card { width: 72%; margin: -22% 0 0 auto; }
  .faq-side { position: static; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-feature, .impact, .insight-feature { grid-template-columns: 1fr; }
  .team-photo, .impact-image, .insight-feature-image { min-height: 520px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --pad: 20px; }
  .site-header { min-height: 68px; gap: 12px; }
  .brand { font-size: 12px; }
  .brand-mark { width: 28px; height: 28px; }
  .main-nav { inset: 68px 0 0; }
  .header-actions { gap: 0; }
  .account-link { width: 28px; height: 28px; flex-basis: 28px; }
  .hero { min-height: calc(100svh - 64px); }
  .hero-content { padding: 90px 0 65px; }
  .display { font-size: clamp(42px, 13vw, 60px); }
  .hero-actions, .section-heading, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .practice-grid, .values-grid, .insight-grid, .network-grid, .form-grid, .team-grid { grid-template-columns: 1fr; }
  .doctrine-card:nth-child(2) { margin-left: 0; }
  .practice-card.featured { grid-column: auto; }
  .team-card:nth-child(even) { margin-top: 0; }
  .team-lead-stage { padding: 0; }
  .team-lead-portrait { width: 92%; height: 530px; }
  .team-lead-card { width: 92%; margin: -18% 0 0 auto; padding: 34px 26px; }
  .team-lead-card h2 { font-size: 46px; }
  .team-lead-card blockquote { font-size: 22px; }
  .team-photo, .impact-image, .insight-feature-image { min-height: 420px; }
  .metrics { gap: 28px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; padding-top: 55px; padding-bottom: 55px; }
  .footer-bottom { padding-top: 18px; padding-bottom: 18px; }
}

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