:root {
  --color-olive: #5E6552;
  --color-cream: #ECE2D2;
  --color-earth: #9A6A43;
  --color-charcoal: #25251F;
  --color-cream-deep: #e4d8c4;
  --color-olive-dark: #4a5141;
  --color-paper: #f7f3ea;
  --color-muted: #5c5a52;
  --font-sans: "TT Firs Neue", "Segoe UI", system-ui, sans-serif;
  --font-serif: "TT Firs Neue", "Segoe UI", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --container: 1280px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
  --radius: 2px;
  --header-h: 92px;
  --ease: 280ms ease;
  --fc-olive: var(--color-olive);
  --fc-cream: var(--color-cream);
  --fc-brown: var(--color-earth);
  --fc-charcoal: var(--color-charcoal);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .about-pin { height: auto; }
  .about-pin-media { position: relative; height: min(72vh, 640px); }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
  background: var(--color-paper);
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 16px; text-wrap: pretty; }
h1, .display-title { font-size: clamp(2.6rem, 5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p { margin: 0 0 16px; }
.lead { font-size: 1.125rem; color: var(--color-muted); max-width: 38rem; }
.muted { color: var(--color-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: absolute; left: 16px; top: -40px; background: var(--color-charcoal); color: var(--color-cream); padding: 8px 16px; z-index: 100; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--color-earth); outline-offset: 3px; }

.container-premium { width: min(var(--container), 88vw); margin-inline: auto; }
.section { padding: var(--space-2xl) 0; background: var(--color-paper); }
.section-cream { background: var(--color-cream); }
.section-dark { background: var(--color-charcoal); color: var(--color-cream); }
.section-dark .hero-text-link {
  color: var(--color-cream);
  background-image: linear-gradient(#ECE2D2, #ECE2D2);
}
.section-olive { background: var(--color-olive); color: var(--color-cream); }
.section-header { max-width: 720px; margin-bottom: var(--space-xl); }
.section-header.centered { margin-inline: auto; }
.section-more { margin-top: var(--space-lg); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-olive);
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}
.eyebrow.light, .section-dark .eyebrow, .section-olive .eyebrow { color: #d7c7b0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 24px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.btn-primary { background: var(--color-charcoal); color: var(--color-cream); }
.btn-primary:hover { background: #161612; }
.btn-outline { background: transparent; border-color: var(--color-charcoal); color: var(--color-charcoal); }
.btn-outline:hover { background: var(--color-charcoal); color: var(--color-cream); }
.section-dark .btn-outline, .btn-light {
  background: transparent; border-color: var(--color-cream); color: var(--color-cream);
}
.section-dark .btn-outline:hover, .btn-light:hover { background: var(--color-cream); color: var(--color-charcoal); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: 12px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; color: var(--color-earth);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat; background-size: 0 1px; background-position: 0 100%;
  transition: background-size var(--ease);
}
.text-link:hover { background-size: 100% 1px; }
.image-frame { overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 600ms ease; }
.image-frame:hover img { transform: scale(1.03); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(236, 226, 210, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease;
}
body.is-home .site-header { background: rgba(236, 226, 210, 0.94); }
.site-header.is-scrolled,
.site-header.header-scrolled {
  background: rgba(236, 226, 210, 0.99);
  border-bottom-color: rgba(37, 37, 31, 0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
  transition: min-height 250ms ease;
}
.site-header.is-scrolled .header-inner,
.site-header.header-scrolled .header-inner { min-height: 72px; }
.brand img { height: 56px; width: auto; transition: height 250ms ease; }
.site-header.is-scrolled .brand img,
.site-header.header-scrolled .brand img { height: 48px; }
.site-footer .brand img { height: 56px; width: auto; max-width: min(100%, 320px); }
.brand-on-dark { display: inline-block; }
.nav-desktop { margin-left: auto; display: flex; gap: 28px; }
.nav-desktop a {
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; font-weight: 600; color: var(--color-charcoal);
  padding: 8px 0; background-image: linear-gradient(var(--color-earth), var(--color-earth));
  background-repeat: no-repeat; background-size: 0 1px; background-position: 0 100%;
  transition: background-size var(--ease);
}
.nav-desktop a:hover, .nav-desktop a.is-active { background-size: 100% 1px; }
.header-cta { margin-left: 8px; }
.header-wa {
  margin-left: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  color: var(--color-charcoal);
  opacity: .78;
}
.header-wa:hover { opacity: 1; }
.btn-header {
  background: transparent; border: 1px solid var(--color-earth); color: var(--color-charcoal);
}
.btn-header:hover { background: var(--color-earth); color: var(--color-cream); }
.menu-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  border: 0; background: transparent; padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; height: 1px; background: var(--color-charcoal); margin: 7px 10px; }
.offcanvas { position: fixed; inset: 0; background: rgba(37,37,31,.45); z-index: 50; }
.offcanvas-panel {
  position: absolute; right: 0; top: 0; height: 100%; width: min(420px, 92vw);
  background: var(--color-cream); padding: 32px; display: flex; flex-direction: column; gap: 32px;
}
.offcanvas-head { display: flex; justify-content: space-between; align-items: center; }
.menu-close { border: 0; background: transparent; width: 44px; height: 44px; cursor: pointer; color: var(--color-charcoal); }
.offcanvas-nav { display: flex; flex-direction: column; gap: 8px; }
.offcanvas-nav a {
  font-family: var(--font-serif); font-size: 28px; text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid rgba(37,37,31,.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
  align-items: stretch;
  min-height: 720px;
  height: calc(100vh - 30px);
  max-height: 900px;
  overflow: hidden;
  background: #ECE2D2;
}
.hero-copy-col {
  display: flex;
  align-items: center;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 12px;
  padding-left: calc((100vw - min(1320px, 100vw)) / 2 + clamp(24px, 5vw, 80px));
}
.hero-copy {
  max-width: 520px;
  width: 100%;
}
.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos, 58% center);
  filter: saturate(0.92) contrast(1.02);
  animation: heroZoom 650ms ease both;
}
.hero-wash {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(46%, 280px);
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #ECE2D2 0%,
    rgba(236, 226, 210, 0.92) 28%,
    rgba(236, 226, 210, 0.55) 58%,
    rgba(236, 226, 210, 0.12) 82%,
    rgba(236, 226, 210, 0) 100%
  );
}
.hero[data-overlay="soft"] .hero-wash { width: min(34%, 200px); }
.hero[data-overlay="strong"] .hero-wash { width: min(58%, 360px); }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A6A43;
  animation: heroRise 550ms ease both;
}
.hero-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 3.4vw, 4.15rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #25251F;
  max-width: none;
  margin: 0;
  animation: heroRise 650ms 60ms ease both;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: #9A6A43;
}
.hero-lead {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(37, 37, 31, 0.78);
  animation: heroRise 650ms 120ms ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  animation: heroRise 650ms 180ms ease both;
}
.btn-hero {
  background: #25251F;
  color: #ECE2D2;
  border-radius: 0;
  padding: 17px 26px;
  gap: 10px;
}
.btn-hero:hover { background: #5E6552; color: #ECE2D2; }
.btn-hero:hover .btn-arrow { transform: translateX(4px); }
.btn-arrow { display: inline-block; transition: transform 250ms ease; }
.hero-text-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #25251F;
  background-image: linear-gradient(#9A6A43, #9A6A43);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  padding: 8px 0;
  transition: background-size 250ms ease;
}
.hero-text-link:hover { background-size: 100% 1px; }

.hero-band {
  background: #f5efe6;
  border-top: 1px solid rgba(37, 37, 31, 0.06);
}
.hero-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 96px;
  width: min(1320px, 100%);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.hero-band-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 24px 20px 24px 0;
}
.hero-band-item + .hero-band-item {
  border-left: 1px solid rgba(37, 37, 31, 0.12);
  padding-left: 24px;
}
.hero-band-icon { color: #9A6A43; flex: none; }
.hero-band-title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}
.hero-band-item p { margin: 0; }
.hero-band-item p:not(.hero-band-title) {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(37, 37, 31, 0.78);
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1); }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-media { position: relative; }
.section-dark .lead { color: #cfc6b6; max-width: none; }
.manifesto .split { align-items: center; gap: 80px; }
.manifesto .image-frame { aspect-ratio: 4 / 5; }
.manifesto .image-frame img { filter: saturate(0.7) contrast(1.05); }
.manifesto h2 { max-width: 14ch; }

.practice-explorer { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.practice-nav .section-more { margin-top: 28px; }
.practice-more-mobile { display: none; }
.practice-list { list-style: none; margin: 0; padding: 0; }
.practice-list button {
  width: 100%; display: flex; gap: 16px; align-items: baseline;
  background: transparent; border: 0; border-bottom: 1px solid rgba(37,37,31,.14);
  padding: 18px 0; font: inherit; text-align: left; cursor: pointer; color: inherit;
}
.practice-list .num { font-family: var(--font-serif); color: var(--color-earth); min-width: 2ch; }
.practice-list button[aria-selected="true"] { color: var(--color-olive); }
.practice-panel { display: none; }
.practice-panel.is-active { display: block; }
.practice-panel .image-frame { margin-bottom: 24px; aspect-ratio: 4/3; }
.practice-mobile { display: none; }
.accordion { border-bottom: 1px solid rgba(37,37,31,.14); padding: 16px 0; }
.accordion summary { cursor: pointer; font-weight: 600; }

.values-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.values-row article { padding: 8px 24px 0 0; border-right: 1px solid rgba(37,37,31,.16); padding-right: 28px; margin-right: 28px; }
.values-row article:last-child { border: 0; margin: 0; }
.num.earth { font-family: var(--font-serif); color: var(--color-earth); display: block; margin-bottom: 16px; font-size: 1.4rem; }

.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  width: 100%;
}
.timeline li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  column-gap: 40px;
  row-gap: 8px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid rgba(37, 37, 31, 0.12);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--color-earth);
}
.timeline-body h3 { margin: 0 0 10px; }
.timeline-body p { margin: 0; max-width: 42rem; }

.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.people-grid--team { max-width: 920px; gap: 40px; }
.people-grid--team .person-card h2 { font-size: clamp(1.6rem, 2vw, 2rem); }
.person-card--team .image-frame { aspect-ratio: 4/5; }
.segment-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.segment-list h3 { margin-bottom: 12px; }
.segment-list p { margin: 0; }
.topic-list { display: grid; gap: 28px; max-width: 760px; margin: 48px auto 0; }
.topic-list h2 { margin: 0 0 8px; font-size: 1.4rem; }
.topic-list p { margin: 0; }
.source-note { font-size: 13px; }
.post-grid, .area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
.area-card h2 { font-size: clamp(1.4rem, 1.8vw, 1.75rem); margin-bottom: 12px; }
.area-card h2 a { text-decoration: none; }
.area-card-media { display: block; aspect-ratio: 4 / 3; margin-bottom: 20px; }
.area-card-media img { filter: saturate(0.72) contrast(1.04); }
.person-card .image-frame { aspect-ratio: 4/5; margin-bottom: 24px; }
.people-team-photo {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 0 32px;
}
.people-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
}
.people-mini-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 200px));
  gap: 20px 24px;
  justify-content: center;
}
.people-mini {
  margin: 0;
}
.people-mini .image-frame {
  aspect-ratio: 3 / 4;
  margin: 0 0 12px;
}
.people-mini .image-frame img {
  object-position: center 58%;
}
.people-mini figcaption {
  margin: 0;
}
.people-mini strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.people-mini span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-earth);
}
.cta-inner { max-width: 720px; }

.site-footer { background: var(--color-charcoal); color: var(--color-cream); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-lead { color: #cfc6b6; max-width: 28ch; }
.footer-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #d7c7b0; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { text-decoration: none; color: #ece2d2; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(236,226,210,.14); font-size: 13px; color: #cfc6b6; }
.footer-bottom a { color: inherit; }
.footer-admin {
  margin-left: auto;
  background: transparent;
  border-color: rgba(236, 226, 210, .45);
  color: var(--color-cream);
  min-height: 36px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: .12em;
}
.footer-admin:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-charcoal);
}
.brand-on-dark { display: inline-block; }

.page-hero { padding: 72px 0 40px; background: var(--color-cream); }
.page-hero .container-premium { max-width: 820px; }
.page-hero--wide .container-premium { max-width: none; }
.page-hero .lead { max-width: none; }
.section.people-photos { padding-top: 16px; }
.article-search {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}
.article-search label { display: block; font-size: 13px; font-weight: 600; }
.article-search-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.article-search-row input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 48px;
  padding: 0 16px;
}
.article-search-row .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 24px; font-size: 13px; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .5; }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { margin-top: 40px; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.about-copy h2 { margin-top: 0; }
.about-copy p { max-width: 42rem; }
.about-intro-photo { aspect-ratio: 4 / 5; }
.about-intro-photo img { object-position: 42% 72%; }
.about-history .section-header {
  margin-bottom: var(--space-lg);
}
.about-history-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  max-width: none;
  margin-bottom: var(--space-lg);
  align-items: start;
}
.about-history-copy p { max-width: none; margin-bottom: 0; }
.about-history-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about-history-photos .image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
}
.about-history-photos .image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-history-photos .image-frame:first-child img { object-position: 50% 12%; }
.about-history-photos .image-frame:last-child img { object-position: 40% 12%; }

.about-pin {
  position: relative;
  height: 165vh;
  margin: 0;
  background: #1b1b16;
}
.about-pin-media {
  position: sticky;
  top: 0;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.about-pin-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
}
.about-pin + .section {
  position: relative;
  z-index: 2;
  margin-top: -10vh;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.about-gallery .image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
}
.about-gallery .image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-people-gallery[data-count="1"] {
  grid-template-columns: minmax(0, 420px);
}
.home-people-gallery[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}
.home-people-gallery + .section-more { margin-top: 32px; }

.article-body { max-width: 780px; margin: 0 auto; padding: 48px 0 96px; }
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 600; }
input, select, textarea {
  font: inherit; padding: 12px 14px; border: 1px solid rgba(37,37,31,.2);
  background: #fff; color: var(--color-charcoal); border-radius: 2px; width: 100%;
}
textarea { min-height: 160px; resize: vertical; }
.alert { padding: 16px; border: 1px solid rgba(37,37,31,.16); margin-bottom: 24px; }
.alert-success { background: #e7eee4; }
.alert-error { background: #f3e6dc; }
.hp { position: absolute; left: -9999px; }
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  padding: 4px;
  background: #25d366;
  color: #fff;
  border: 1px solid #128c7e;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.22);
}
.wa-float span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 36px;
  padding: 0 22px;
  border: 1px solid #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wa-float:hover {
  background: #20bd5a;
  color: #fff;
}
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 45;
  background: var(--color-charcoal); color: var(--color-cream);
  padding: 16px 20px; display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.empty-state { padding: 48px 0; color: var(--color-muted); }
.reveal { animation: rise 700ms ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 1200px) {
  .hero { grid-template-columns: minmax(360px, 40%) minmax(0, 60%); }
  .hero-title { font-size: clamp(2.5rem, 3.2vw, 3.5rem); }
}
@media (max-width: 1024px) {
  .split, .practice-explorer, .values-row, .footer-grid, .people-grid, .segment-list { grid-template-columns: 1fr; }
  .about-history-copy { grid-template-columns: 1fr; gap: 20px; }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery .image-frame:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
  .home-people-gallery .image-frame:first-child { aspect-ratio: 4 / 5; }
  .about-pin { height: 130vh; }
  .area-grid, .post-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .nav-desktop, .header-cta, .header-wa { display: none; }
  .menu-toggle { display: block; }
  .practice-explorer { display: none; }
  .practice-mobile { display: block; }
  .practice-more-mobile { display: block; margin-top: 32px; }
  .values-row article { border: 0; border-bottom: 1px solid rgba(37,37,31,.14); margin: 0; padding: 24px 0; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; }
  .section { padding: 80px 0; }
}
@media (max-width: 991px) {
  .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    max-height: none;
    align-items: stretch;
  }
  .hero-copy-col {
    order: 1;
    padding: 36px clamp(24px, 5vw, 80px) 28px;
  }
  .hero-copy { max-width: none; }
  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4rem);
    line-height: 0.98;
    max-width: none;
  }
  .hero-photo {
    position: relative;
    order: 2;
    height: auto;
    aspect-ratio: 4 / 5;
  }
  .hero-wash {
    width: 100%;
    background: linear-gradient(180deg, #ECE2D2 0%, rgba(236, 226, 210, 0) 18%);
  }
  .hero-band-grid { grid-template-columns: 1fr 1fr; }
  .hero-band-item { padding: 24px 16px 24px 0; }
  .hero-band-item + .hero-band-item { padding-left: 20px; }
  .hero-band-item:nth-child(3),
  .hero-band-item:nth-child(4) {
    border-top: 1px solid rgba(37, 37, 31, 0.12);
  }
  .hero-band-item:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 640px) {
  .form-row, .post-grid, .area-grid, .about-gallery, .about-history-photos, .hero-band-grid { grid-template-columns: 1fr; }
  .about-gallery .image-frame:first-child { grid-column: auto; aspect-ratio: 4 / 5; }
  .hero-band-item + .hero-band-item,
  .hero-band-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .hero-band-item + .hero-band-item { border-top: 1px solid rgba(37, 37, 31, 0.12); }
  .container-premium { width: calc(100% - 40px); }
  body { font-size: 16px; }
  .wa-float { right: 16px; bottom: 16px; }
  .wa-float span { min-width: 132px; min-height: 34px; padding: 0 16px; font-size: 10px; }
}
@media print {
  .site-header, .site-footer, .wa-float, .cookie-bar, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .article-body { max-width: 100%; }
  .about-pin { height: auto; }
  .about-pin-media { position: static; height: auto; }
}
body.is-locked { overflow: hidden; }
