:root {
  --bg: #f5f3ee;
  --bg-alt: #ebe7de;
  --surface: #ffffff;
  --ink: #191512;
  --ink-soft: #453f37;
  --muted: #6b6355;
  --line: #d9d3c6;
  --accent: #1a3d30;
  --accent-soft: #2d5c48;
  --accent-ink: #0f261d;
  --paper: #f2efe8;   /* светлый на тёмном — единый */
  --dark: #17130f;    /* единая тёмная подложка (тёплый near-black) */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Onest", "Segoe UI", sans-serif;
  --font-sans: "Onest", "Segoe UI", sans-serif;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.shell {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.shell-narrow {
  width: min(760px, calc(100% - 3rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0 1.5rem;
  background: rgba(242, 239, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  margin-left: 0.85rem;
  margin-right: 0;
  flex-shrink: 0;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s var(--ease);
}

.lang-switch button:hover,
.lang-switch button:focus-visible {
  color: var(--ink);
}

.lang-switch button.is-active {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: 0.5rem;
}

.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--ink);
}

.nav a.is-active {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.1rem;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
}

/* Page chrome */
.page-hero {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow,
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.page-hero h1,
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero .deck,
.hero-deck {
  margin: 1.25rem 0 0;
  max-width: 42ch;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.55;
}

.breadcrumbs {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.section {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.lead {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.55;
}

.prose p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 62ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.2rem;
  transition: opacity 0.2s var(--ease);
}

.text-link:hover {
  opacity: 0.55;
}

/* Home + visual layouts */
.home-hero {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.home-hero .hero-title {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.home-hero .hero-deck {
  margin-bottom: 2rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100svh - var(--header-h));
  background: var(--bg);
}

.hero-visual--bleed {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: var(--paper);
}

.hero-visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
}

.hero-visual--bleed .hero-visual-copy {
  position: relative;
  z-index: 3;
  max-width: 38rem;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1.5rem, 6vw, 5.5rem);
  justify-content: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
}

.hero-visual-copy .hero-title {
  margin-bottom: 1.35rem;
  font-size: clamp(2.6rem, 5.8vw, 4.6rem);
  max-width: 11ch;
}

.hero-visual--bleed .hero-title {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  max-width: 12ch;
  color: var(--paper);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-visual-copy .hero-deck {
  margin-bottom: 1.75rem;
}

.hero-visual--bleed .eyebrow {
  color: rgba(242, 239, 232, 0.72);
}

.hero-visual--bleed .hero-deck {
  color: rgba(242, 239, 232, 0.86);
  max-width: 38ch;
}

.hero-visual--bleed .text-link {
  border-bottom-color: rgba(242, 239, 232, 0.85);
  color: var(--paper);
}

.hero-visual-media {
  margin: 0;
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--dark);
}

.hero-visual--bleed .hero-visual-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 0;
}

.hero-visual-media img,
.hero-visual-media .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-visual-media--video .hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-visual--bleed .hero-video {
  object-position: center center;
  transform-origin: center center;
  animation: heroDrift 32s var(--ease) alternate infinite;
  will-change: transform;
}

.hero-visual-media--video .hero-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(242, 239, 232, 0.55) 0%, rgba(242, 239, 232, 0.08) 28%, transparent 48%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.12) 0%, transparent 35%, rgba(20, 17, 14, 0.28) 100%);
}

.hero-visual--bleed .hero-media-veil {
  background:
    linear-gradient(105deg, rgba(20, 17, 14, 0.82) 0%, rgba(20, 17, 14, 0.45) 42%, rgba(20, 17, 14, 0.18) 68%, rgba(20, 17, 14, 0.35) 100%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.28) 0%, transparent 38%, rgba(20, 17, 14, 0.72) 100%);
}

.hero-visual--team.hero-visual--bleed {
  min-height: min(78svh, 740px);
}

.hero-visual--team .hero-visual-copy {
  min-height: min(78svh, 740px);
}

.hero-visual--team .hero-visual-media img {
  object-position: 50% 24%;
  transform: none;
}

.hero-visual--team .hero-media-veil {
  background:
    linear-gradient(100deg, rgba(20, 17, 14, 0.78) 0%, rgba(20, 17, 14, 0.32) 38%, rgba(20, 17, 14, 0.08) 62%, rgba(20, 17, 14, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 17, 14, 0.22) 0%, transparent 42%, rgba(20, 17, 14, 0.68) 100%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-media--video .hero-video {
    display: none;
  }

  .hero-visual--bleed .hero-video {
    animation: none;
  }
}

.portrait-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
  background: var(--ink);
  padding: 0.35rem;
}

.portrait-strip--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.team-section {
  margin-top: 0;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  background:
    linear-gradient(180deg, rgba(242, 239, 232, 0) 0%, var(--bg) 12%),
    var(--bg);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.team-section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.team-section-deck {
  margin: 0.75rem 0 0;
  max-width: 42ch;
  color: var(--ink-soft);
  font-weight: 300;
}

.team-section .portrait-strip {
  margin: 0;
}

.portrait-strip a {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.portrait-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
  filter: saturate(0.92);
}

/* Тамила и Аслан сфотографированы сидя — лицо ниже в кадре,
   стандартная обрезка «center 12%» отрезала лица до пустой стены. */
.portrait-strip a:nth-child(5) img { object-position: center 24%; }
.portrait-strip a:nth-child(6) img { object-position: center 30%; }

.portrait-strip a:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.matter-band {
  background: var(--accent);
  color: var(--paper);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.matter-band--visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 0;
}

.matter-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05);
  opacity: 0.28;
}

.matter-band-content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.matter-band .eyebrow {
  color: rgba(242, 239, 232, 0.65);
}

.matter-band h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  max-width: 22ch;
}

.matter-band h2 em {
  font-style: italic;
}

.matter-band p {
  margin: 0 0 1.5rem;
  opacity: 0.7;
  font-weight: 300;
}

.matter-band--visual p:last-of-type {
  margin-bottom: 1.5rem;
}

.text-link-on-dark {
  border-bottom-color: rgba(242, 239, 232, 0.85);
  color: var(--paper);
}

.feature-rows {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.feature-rows:has(.feature-row--text) {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.feature-row--text {
  grid-template-columns: 1fr;
  max-width: 36rem;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.feature-row--reverse figure {
  order: 2;
}

.feature-row figure {
  margin: 0;
  overflow: hidden;
  background: #e6e1d6;
}

.feature-row img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
}

.feature-row h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.feature-row p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 36ch;
}

.cta-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.cta-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}

.cta-visual-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.cta-visual h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-visual p {
  margin: 0 0 1.5rem;
  font-weight: 300;
  opacity: 0.8;
}

.page-hero--visual {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  border-bottom: 0;
  min-height: 420px;
  display: grid;
  align-items: end;
  background: var(--accent);
}

.page-hero--visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(0.2);
}

.page-hero--visual .shell {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 7rem) 0 3rem;
}

.page-hero--visual .eyebrow,
.page-hero--visual .breadcrumbs,
.page-hero--visual .deck {
  color: rgba(242, 239, 232, 0.72);
}

.page-hero--visual .breadcrumbs a:hover {
  color: #fff;
}

.page-hero--team {
  min-height: min(68svh, 640px);
  align-items: end;
}

.page-hero--team > img {
  opacity: 0.72;
  filter: none;
  object-position: center 20%;
}

.page-hero--team::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.25) 0%, transparent 35%, rgba(20, 17, 14, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 17, 14, 0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.page-hero--team .shell {
  z-index: 1;
}

.split-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-visual figure {
  margin: 0;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.home-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
}

.home-card p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.pubs-intro {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 58ch;
}

.pubs-intro a {
  border-bottom: 1px solid var(--line);
}

.pubs-intro a:hover {
  border-bottom-color: var(--ink);
}

.pubs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: pub;
}

.pubs-list li {
  border-top: 1px solid var(--line);
  counter-increment: pub;
}

.pubs-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.pubs-list a {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.2rem 0;
  transition: opacity 0.2s var(--ease);
}

.pubs-list a::before {
  content: counter(pub, decimal-leading-zero);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.pubs-list a:hover {
  opacity: 0.65;
}

.pubs-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.35;
}

.pubs-list span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  white-space: nowrap;
}

.matters {
  display: grid;
  gap: 0;
}

.matters--home {
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .matters--home {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 2.5rem;
  }

  .matters--home .matter-card {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .matters--home .matter-card h3 {
    max-width: 18ch;
    font-size: 1.2rem;
  }
}

.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.win-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 1.5rem;
  min-height: 100%;
  transition: opacity 0.2s var(--ease);
}

.win-card:hover {
  border-color: var(--line);
  transform: none;
  opacity: 0.88;
}

.win-card .matter-tag {
  margin: 0 0 0.85rem;
  color: var(--accent-soft);
}

.win-card h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.3;
}

.win-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
}

.matter-card {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.matter-card:last-child {
  border-bottom: 1px solid var(--line);
}

.matter-card .matter-tag {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.matter-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.3;
  max-width: 28ch;
}

.matter-card p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 58ch;
}

.stats-note-small {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 62ch;
}

@media (max-width: 700px) {
  .pubs-list a {
    grid-template-columns: 2rem minmax(0, 1fr);
  }
  .pubs-list span {
    grid-column: 2;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.portrait-strip--labeled a {
  position: relative;
}

.portrait-strip--labeled span {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 0.85rem 0.85rem;
  background: linear-gradient(180deg, transparent, rgba(20, 17, 14, 0.92));
  color: var(--paper);
  display: grid;
  gap: 0.2rem;
}

.portrait-strip--labeled strong {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 400;
}

.portrait-strip--labeled em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.65);
  font-weight: 500;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-head-row .section-title {
  margin-bottom: 0;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  margin-bottom: 2rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature-copy h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.video-feature-copy p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.video-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.video-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  color: inherit;
}

.video-card img {
  grid-area: 1 / 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--dark);
}

.video-card .play-badge {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(242, 239, 232, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
}

.video-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
}

.video-card:hover {
  opacity: 0.85;
}

.play-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.45rem 0 0.45rem 0.75rem;
  border-color: transparent transparent transparent var(--ink);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.doc-grid--certs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doc-card {
  display: grid;
  gap: 0.75rem;
  color: inherit;
}

.doc-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  transition: opacity 0.2s var(--ease), transform 0.35s var(--ease);
}

.doc-card:hover img {
  opacity: 0.92;
  transform: translateY(-2px);
}

.doc-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.3;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.team-stand {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  background: var(--ink);
  color: var(--paper);
}

.team-stand-figure {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  background: var(--dark);
}

.team-stand-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.team-stand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  width: auto;
  max-width: none;
}

.team-stand-copy .eyebrow {
  color: rgba(242, 239, 232, 0.65);
}

.team-stand-copy .section-title {
  color: var(--paper);
  margin-bottom: 1rem;
}

.team-stand-deck {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-weight: 300;
  color: rgba(242, 239, 232, 0.82);
  line-height: 1.55;
}

.team-stand-copy .text-link {
  border-bottom-color: rgba(242, 239, 232, 0.85);
  color: var(--paper);
  align-self: flex-start;
}

/* —— About —— */
.about-hero {
  background: var(--dark);
  overflow: hidden;
}

.about-hero-media {
  margin: 0;
  width: 100%;
  height: min(72svh, 720px);
  overflow: hidden;
  background: var(--dark);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  max-width: none;
}

.about-intro {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.about-intro .breadcrumbs {
  color: rgba(242, 239, 232, 0.55);
  margin-bottom: 1.25rem;
}

.about-intro .breadcrumbs a:hover {
  color: #fff;
}

.about-intro .eyebrow {
  color: rgba(242, 239, 232, 0.55);
}

.about-intro h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 16ch;
  color: var(--paper);
}

.about-intro .deck {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  max-width: 42ch;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(242, 239, 232, 0.78);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-stat-card {
  min-height: auto;
  gap: 0.5rem;
}

.about-stat-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.about-stat-value span {
  font-size: 0.48em;
  letter-spacing: 0;
  margin-left: 0.15em;
  opacity: 0.85;
}

.about-stat-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(242, 239, 232, 0.68);
  max-width: 16ch;
}

.about-story .eyebrow,
.about-pillars .eyebrow,
.about-media-band .eyebrow,
.about-cta .eyebrow {
  color: rgba(242, 239, 232, 0.55);
}

.about-story .section-title,
.about-pillars .section-title,
.about-media-band .section-title,
.about-cta .section-title {
  color: var(--paper);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.about-story-aside .section-title {
  max-width: 12ch;
  margin-bottom: 0;
}

.about-story-panel {
  gap: 1.1rem;
}

.about-story-panel p {
  margin: 0;
  color: rgba(242, 239, 232, 0.78);
  font-weight: 300;
  line-height: 1.6;
}

.about-story-panel .lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--paper);
}

.about-pillars .section-title {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
}

.about-pillars-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.about-media-copy .section-title {
  margin-bottom: 0.85rem;
}

.about-media-copy > p:not(.eyebrow) {
  margin: 0 0 1.5rem;
  color: rgba(242, 239, 232, 0.78);
  font-weight: 300;
  max-width: 36ch;
}

.about-media-copy .text-link {
  color: var(--paper);
  border-bottom-color: rgba(242, 239, 232, 0.7);
}

.about-video-card {
  padding: 0.75rem;
  min-height: auto;
}

.about-video-card .video-embed {
  margin: 0;
}

.about-cta .section-title {
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 18ch;
}

.about-cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-story,
.about-pillars,
.about-media-band,
.about-cta {
  border-top: 1px solid rgba(242, 239, 232, 0.12);
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.75rem;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.photo-mosaic img:first-child {
  grid-row: span 1;
  min-height: 420px;
}

.letter-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.letter-rail a {
  display: grid;
  gap: 0.55rem;
  color: inherit;
}

.letter-rail img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
}

.letter-rail span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.news-list {
  display: grid;
  gap: 2rem;
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.news-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.news-card-media {
  display: block;
  overflow: hidden;
}

.news-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--bg-alt);
  transition: transform 0.45s var(--ease);
}

.news-card-media:hover img {
  transform: scale(1.03);
}

.news-card-body h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.25;
}

.news-card-body p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 38rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0 0 0.65rem !important;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.news-meta span {
  color: var(--accent);
}

.news-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.news-home-card {
  display: grid;
  gap: 0.75rem;
  color: inherit;
}

.news-home-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--bg-alt);
}

.news-home-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.3;
}

.news-home-card span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.reels-section .pubs-intro {
  margin-top: 0.75rem;
  max-width: 48ch;
}

.reels-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.reel-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.reel-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  background: var(--dark);
  overflow: hidden;
}

.reel-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.9rem 1rem 1.05rem;
  border-top: 1px solid var(--line);
}

.reel-meta strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-visual-media img {
  object-position: center 20%;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.social-chip:hover {
  background: transparent;
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.social-chip-light {
  border-color: transparent;
  color: var(--paper);
}

.social-chip-light:hover {
  background: transparent;
  border-bottom-color: var(--paper);
  color: var(--paper);
}

.social-profiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.social-profiles article {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.social-profiles img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  margin-bottom: 0.35rem;
}

.social-profiles h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
}

.social-profiles p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.footer-grid-4 {
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
}

.profile-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

/* Lists & tables */
.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.link-list li {
  border-top: 1px solid var(--line);
}

.link-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.link-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  transition: opacity 0.2s var(--ease);
}

.link-list a:hover {
  opacity: 0.65;
}

.link-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
}

.link-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.practice-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.practice-meta h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
}

.practice-meta p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

.practices-showcase {
  background: var(--accent);
  color: var(--paper);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.practice-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.practice-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(242, 239, 232, 0.05);
  border: 1px solid rgba(242, 239, 232, 0.22);
  min-height: 100%;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.practice-card:hover {
  background: rgba(242, 239, 232, 0.1);
  border-color: rgba(242, 239, 232, 0.55);
  transform: translateY(-3px);
}

.practice-card-num {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 239, 232, 0.55);
  font-weight: 500;
}

.practice-card strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  color: var(--paper);
}

.practice-card p {
  margin: 0;
  color: rgba(242, 239, 232, 0.78);
  font-weight: 300;
  flex: 1;
}

.practice-card .text-link {
  align-self: flex-start;
  color: var(--paper);
  border-bottom-color: rgba(242, 239, 232, 0.7);
  margin-top: 0.5rem;
}

.insights-showcase {
  background: var(--bg-alt);
}

.insights-panel {
  background: var(--surface);
  border: 1px solid var(--ink);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.insights-panel .section-title {
  margin-bottom: 0.85rem;
}

.pubs-list--contrast li {
  border-top-color: var(--ink);
}

.pubs-list--contrast li:last-child {
  border-bottom-color: var(--ink);
}

.pubs-list--contrast a:hover {
  background: var(--bg-alt);
}

/* People */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 1.5rem;
}

.person-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  background: #e6e1d6;
  margin-bottom: 1rem;
}

.person-card h2,
.person-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.person-card p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.person-card:hover img {
  opacity: 0.92;
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.profile-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 12%;
  background: #e6e1d6;
}

.profile-role {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.profile h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.profile-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1.5rem 0 0;
}

.profile-contacts a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.profile-contacts a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.profile-block {
  margin-top: 1.75rem;
}

.profile-block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.profile-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.5;
}

.profile-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--accent);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
}

/* Results */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.stat-value {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  font-weight: 400;
}

.stat-value span {
  font-size: 0.45em;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  max-width: 22ch;
}

.bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.bullet-list li + li {
  margin-top: 0.55rem;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
}

.contact-lines a {
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.contact-lines a:hover {
  border-bottom-color: var(--ink);
}

.contact-lines p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form-panel {
  background: var(--accent);
  color: var(--paper);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--accent);
}

.contact-form-panel .eyebrow {
  color: rgba(242, 239, 232, 0.65);
}

.contact-form-deck {
  margin: 0 0 1.5rem;
  color: rgba(242, 239, 232, 0.82);
  font-weight: 300;
  max-width: 36ch;
}

.contact-form-panel .contact-form label {
  color: rgba(242, 239, 232, 0.8);
}

.contact-form-panel .contact-form input,
.contact-form-panel .contact-form textarea {
  background: rgba(242, 239, 232, 0.08);
  border-color: rgba(242, 239, 232, 0.35);
  color: var(--paper);
}

.contact-form-panel .contact-form input:focus,
.contact-form-panel .contact-form textarea:focus {
  border-color: var(--paper);
  outline: none;
}

.contact-form-panel .contact-form button {
  background: var(--paper);
  color: var(--accent);
  border-color: var(--paper);
}

.contact-form-panel .contact-form button:hover {
  opacity: 0.9;
}

.contact-form-panel .form-note {
  color: rgba(242, 239, 232, 0.85);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.7rem 0;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink);
}

.contact-form button,
.btn {
  width: fit-content;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-form button:hover,
.btn:hover {
  background: transparent;
  color: var(--ink);
}

.form-note {
  margin: 0;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  background: var(--surface);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.footer-name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-copy,
.footer-col p,
.footer-col a {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

.footer-col {
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-col strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.section-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

@media (max-width: 900px) {
  .feature-rows:has(.feature-row--text) {
    grid-template-columns: 1fr;
  }

  .home-grid,
  .stats,
  .contact-layout,
  .profile,
  .practice-meta,
  .form-row,
  .footer-grid,
  .footer-grid-4,
  .section-two-col,
  .hero-visual,
  .feature-row,
  .feature-row--reverse,
  .split-visual,
  .video-feature,
  .social-profiles,
  .team-stand,
  .about-story-grid,
  .about-media-grid,
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-media {
    height: min(52svh, 420px);
  }

  .video-grid,
  .video-grid-3,
  .doc-grid,
  .doc-grid--certs,
  .letter-rail,
  .photo-strip,
  .photo-mosaic,
  .news-home-grid,
  .news-card,
  .wins-grid,
  .practice-cards,
  .reels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .photo-mosaic img:first-child {
    grid-column: span 2;
    min-height: 280px;
  }

  .feature-row--reverse figure {
    order: 0;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual--bleed {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-visual--team.hero-visual--bleed,
  .hero-visual--team .hero-visual-copy {
    min-height: min(70svh, 620px);
  }

  .hero-visual--bleed .hero-visual-copy {
    min-height: calc(100svh - var(--header-h));
    justify-content: flex-end;
  }

  .hero-visual--team .hero-visual-copy {
    min-height: min(70svh, 620px);
  }

  .hero-visual-media {
    min-height: 52vw;
  }

  .hero-visual--bleed .hero-visual-media {
    min-height: 100%;
    order: 0;
  }

  .hero-visual:not(.hero-visual--bleed) .hero-visual-media {
    order: -1;
  }

  .team-stand-figure {
    min-height: 62vw;
    order: -1;
  }

  .portrait-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portrait-strip--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portrait-strip a:nth-child(4),
  .portrait-strip a:nth-child(5) {
    display: block;
  }

  .portrait-strip:not(.portrait-strip--6) a:nth-child(4),
  .portrait-strip:not(.portrait-strip--6) a:nth-child(5) {
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.25rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav a.is-active {
    border-bottom-color: var(--line);
  }

  .lang-switch {
    margin-right: 0.35rem;
  }

  .lang-switch button {
    padding: 0.35rem 0.28rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 560px) {
  .people-grid {
    grid-template-columns: 1fr;
  }

  .link-list a {
    grid-template-columns: 1fr;
  }

  .video-grid,
  .video-grid-3,
  .doc-grid,
  .doc-grid--certs,
  .letter-rail,
  .photo-strip,
  .photo-mosaic,
  .news-home-grid,
  .wins-grid,
  .practice-cards,
  .reels-grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic img:first-child {
    grid-column: auto;
  }

  .portrait-strip--labeled span {
    padding: 1.75rem 0.55rem 0.55rem;
  }

  .portrait-strip--labeled strong {
    font-size: 0.78rem;
  }

  .portrait-strip--labeled em {
    font-size: 0.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   EDITORIAL REDESIGN LAYER — «Modern editorial»
   Playfair Display + Onest · глубокий изумруд
   Переопределяет базовые примитивы, наследуемые всеми страницами.
   ============================================================ */

body {
  font-size: 1.075rem;
  line-height: 1.7;
  letter-spacing: 0.003em;
  font-feature-settings: "ss01", "cv05";
  background: var(--bg);
}

/* — Display typography — */
.hero-title,
.page-hero h1,
.section-title,
.matter-band h2,
.cta-visual h2,
.feature-row h3,
.win-card h3,
.matter-card h3,
.video-feature-copy h3,
.news-card-body h2,
.profile h1,
.about-intro h1,
.stat-value,
.about-stat-value {
  font-weight: 500;
  letter-spacing: -0.014em;
}

.hero-title,
.hero-visual--bleed .hero-title {
  line-height: 1.02;
  letter-spacing: -0.036em;
}

.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  line-height: 1.12;
}

.section {
  padding: clamp(3.75rem, 7vw, 6rem) 0;
}

.section + .section,
.section-alt + .section-alt {
  border-top: 1px solid var(--line);
}

/* — Eyebrow: tracked micro-label with a leading hairline — */
.eyebrow,
.page-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: 0.55;
}

/* keep light eyebrows readable on dark blocks */
.hero-visual--bleed .eyebrow,
.matter-band .eyebrow,
.page-hero--visual .eyebrow,
.about-intro .eyebrow,
.about-story .eyebrow,
.about-pillars .eyebrow,
.about-media-band .eyebrow,
.about-cta .eyebrow,
.team-stand-copy .eyebrow,
.contact-form-panel .eyebrow {
  color: rgba(242, 239, 232, 0.72);
}

/* — Header — */
.site-header {
  background: rgba(245, 243, 238, 0.86);
  backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-weight: 500;
}

.nav a {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
}

.nav a.is-active {
  border-bottom: 0;
  color: var(--accent);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.lang-switch button.is-active {
  color: var(--accent);
  box-shadow: inset 0 -1px 0 var(--accent);
}

/* — Editorial text link with arrow — */
.text-link {
  gap: 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  border-bottom: 0;
  padding-bottom: 0.25rem;
  color: var(--accent);
  position: relative;
}

.text-link::after {
  content: "→";
  font-size: 0.9em;
  transition: transform 0.28s var(--ease);
}

.text-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform-origin: left;
  transition: opacity 0.25s var(--ease);
}

.text-link:hover {
  opacity: 1;
  color: var(--accent-ink);
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.text-link-on-dark,
.hero-visual--bleed .text-link,
.matter-band .text-link,
.about-media-copy .text-link,
.team-stand-copy .text-link,
.practice-card .text-link {
  color: var(--paper);
}

/* — Cards: hairline + quiet lift — */
.win-card,
.reel-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 1.75rem;
  transition: opacity 0.25s var(--ease);
}

.win-card:hover {
  border-color: var(--line);
  transform: none;
  box-shadow: none;
  opacity: 0.88;
}

.matter-tag {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1.2;
}

/* — Numbers / stats read as display — */
.stat-value,
.about-stat-value {
  letter-spacing: -0.03em;
}

.news-meta span {
  color: var(--accent-soft);
}

/* — Buttons — */
.contact-form button,
.btn {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 0;
  padding: 0.95rem 1.6rem;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.contact-form button:hover,
.btn:hover {
  background: transparent;
  color: var(--accent);
}

.social-chip:hover {
  background: transparent;
  border-color: transparent;
  border-bottom-color: var(--ink);
  color: var(--ink);
}

/* — Footer — */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-top: 2.75rem;
}

.footer-name {
  font-size: 1.15rem;
  font-weight: 500;
}

.footer-col strong {
  color: var(--accent);
  letter-spacing: 0.14em;
}

/* — Unified hero treatment —
   Все крупные фото-hero приводятся к ЕДИНОЙ нейтрально-тёмной трактовке
   (как главная / about / команда). Изумруд остаётся только акцентом
   (полоса статистики, панель формы, активные состояния, метки, ссылки). */
.page-hero--visual {
  background: var(--dark);
}

.page-hero--visual:not(.page-hero--team) > img {
  opacity: 0.5;
  filter: grayscale(0.15) contrast(1.02);
}

.page-hero--visual:not(.page-hero--team)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.42) 0%, rgba(20, 17, 14, 0.12) 45%, rgba(20, 17, 14, 0.86) 100%),
    linear-gradient(90deg, rgba(20, 17, 14, 0.78) 0%, rgba(20, 17, 14, 0.35) 45%, transparent 72%);
}

.page-hero--visual .shell {
  position: relative;
  z-index: 1;
}

/* header background aligned to the single paper tone */
.site-header {
  background: rgba(242, 239, 232, 0.85);
}

/* — Selection — */
::selection {
  background: var(--accent);
  color: var(--paper);
}

/* ============================================================
   P0/P1 LAYER — легальные страницы, форма, WhatsApp, cookie, футер
   ============================================================ */

/* — Honeypot (anti-spam), скрыто от людей — */
.contact-form .hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* — Согласие на обработку ПДн — */
.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}
.form-consent input[type="checkbox"] {
  width: 1.05rem; height: 1.05rem; margin-top: 0.15rem;
  accent-color: var(--accent);
}
.form-consent a { border-bottom: 1px solid currentColor; }
.contact-form-panel .form-consent { color: rgba(242, 239, 232, 0.82); }

.form-note--err { color: #b0402f; }
.contact-form-panel .form-note--err { color: #ffb4a2; }

.contact-form-alt {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 400;
}

.contact-form-alt a {
  border-bottom: 1px solid currentColor;
}

/* — Плавающая кнопка WhatsApp — */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  background: var(--accent);
  color: var(--paper);
  border-radius: 999px;
  border: 1px solid rgba(242, 239, 232, 0.16);
  box-shadow: 0 12px 34px -12px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); background: var(--accent-soft); box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6); }
.wa-float svg { width: 1.35rem; height: 1.35rem; fill: currentColor; }
.wa-float .wa-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  padding: 0.45rem 0.8rem;
  background: var(--dark);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 0.35rem;
  opacity: 0;
  transform: translateX(4px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.wa-float:hover .wa-label { opacity: 1; transform: none; }
@media (max-width: 560px) {
  .wa-float .wa-label { display: none; }
}

/* — Cookie-согласие — */
.consent {
  position: fixed;
  left: 50%; bottom: 1rem; transform: translateX(-50%);
  z-index: 70;
  width: min(680px, calc(100% - 2rem));
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.25rem;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--dark);
  color: var(--paper);
  border: 1px solid rgba(242, 239, 232, 0.16);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}
.consent-text { margin: 0; font-size: 0.86rem; font-weight: 300; flex: 1 1 320px; color: rgba(242, 239, 232, 0.85); }
.consent-text a { border-bottom: 1px solid currentColor; }
.consent-actions { display: flex; gap: 0.65rem; align-items: center; }
.consent-decline {
  border: 0; background: transparent; color: rgba(242, 239, 232, 0.7);
  font: inherit; font-size: 0.78rem; letter-spacing: 0.06em; cursor: pointer;
  text-transform: uppercase; padding: 0.5rem 0.4rem;
}
.consent-decline:hover { color: var(--paper); }
.consent .btn { background: var(--paper); color: var(--dark); border-color: var(--paper); padding: 0.7rem 1.1rem; }
.consent .btn:hover { background: transparent; color: var(--paper); }

/* — Нижняя правовая панель футера — */
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  align-items: baseline; justify-content: space-between;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.footer-legal-links a { font-size: 0.8rem; color: var(--muted); }
.footer-legal-links a:hover { color: var(--accent); }
.footer-reqs { margin: 0; font-size: 0.78rem; color: var(--muted); font-weight: 300; max-width: 62ch; }

/* — Юридические страницы — */
.legal-prose { max-width: 68ch; }
.legal-prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  letter-spacing: -0.01em;
}
.legal-prose p, .legal-prose li { color: var(--ink-soft); font-weight: 300; }
.legal-prose a { border-bottom: 1px solid var(--line); }
.legal-prose a:hover { border-bottom-color: var(--accent); }
.legal-updated { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.legal-note { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); font-style: italic; }
.legal-prose mark { background: rgba(26, 61, 48, 0.12); color: var(--accent-ink); padding: 0.05em 0.3em; }

/* ============================================================
   MOTION LAYER — скролл-сторителлинг (направление A)
   Только при отсутствии prefers-reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
  }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal-delay="1"] { transition-delay: .09s; }
  [data-reveal-delay="2"] { transition-delay: .18s; }
  [data-reveal-delay="3"] { transition-delay: .27s; }
  .hero-visual--bleed .hero-visual-media { will-change: transform; }
}

/* ============================================================
   VIZ BAND — интерактивная визуализация «Равновесие»
   ============================================================ */
.viz-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: var(--paper);
  min-height: clamp(430px, 62vh, 640px);
  display: grid;
  align-items: center;
}

.viz-band canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.viz-band .shell {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.viz-band .eyebrow { color: rgba(242, 239, 232, 0.72); }

.viz-band h2 {
  margin: 1rem 0;
  max-width: 15ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 0 2px 26px rgba(0, 0, 0, .45);
}

.viz-band h2 em { font-style: italic; color: #8fd0b4; }

.viz-band p {
  margin: 0 0 1.75rem;
  max-width: 40ch;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(242, 239, 232, 0.72);
}

.viz-band .text-link { color: var(--paper); }

@media (max-width: 760px) {
  .viz-band { min-height: 540px; }
  .viz-band .shell { padding-top: 2.5rem; padding-bottom: 12.5rem; }
  .viz-band h2 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); max-width: 12ch; }
  .viz-band p { font-size: 1rem; margin-bottom: 1.4rem; }
}

/* ============================================================
   HERO с весами правосудия (первый экран)
   ============================================================ */
.hero-viz {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  color: var(--paper);
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
}

.hero-viz-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
}

.hero-viz-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 42%, rgba(198, 162, 108, 0.16), transparent 34%),
    linear-gradient(115deg, rgba(12, 10, 8, 0.98) 0%, rgba(21, 18, 14, 0.9) 48%, rgba(10, 9, 7, 0.96) 100%),
    url("./assets/visual/hero-architecture.jpg") center / cover no-repeat;
}

.hero-scale-object {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(-8rem, -5vw, -2rem);
  width: min(72vw, 1040px);
  aspect-ratio: 3 / 2;
  transform: translateY(-48%);
  pointer-events: none;
  --scale-angle: 0;
  --pan-lx: 0%;
  --pan-ly: 0%;
  --pan-rx: 0%;
  --pan-ry: 0%;
}

.hero-scale-layer {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Столб и основание — жёстко неподвижны */
.hero-scale-base {
  z-index: 1;
  transform: none !important;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .52));
}

/* Коромысло — только поворот вокруг оси */
.hero-scale-beam {
  z-index: 2;
  transform-origin: 48.96% 20.02%;
  transform: rotate(calc(var(--scale-angle, 0) * 1deg));
  will-change: transform;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .28));
}

/* Чаши с цепями — едут по дуге, остаются вертикальными */
.hero-scale-pan {
  z-index: 3;
  will-change: transform;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .32));
}

.hero-scale-pan-left {
  transform: translate3d(var(--pan-lx, 0%), var(--pan-ly, 0%), 0);
}

.hero-scale-pan-right {
  transform: translate3d(var(--pan-rx, 0%), var(--pan-ry, 0%), 0);
}

.hero-viz:hover .hero-scale-base {
  filter:
    drop-shadow(0 32px 40px rgba(0, 0, 0, .58))
    drop-shadow(0 0 28px rgba(198, 162, 108, 0.08));
}

.hero-viz-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 11, 8, 0.28) 0%, rgba(15, 11, 8, 0.08) 34%, rgba(15, 11, 8, 0.52) 78%, rgba(15, 11, 8, 0.88) 100%),
    linear-gradient(90deg, rgba(15, 11, 8, 0.78) 0%, rgba(15, 11, 8, 0.32) 40%, rgba(15, 11, 8, 0.06) 66%);
}

.hero-viz .shell {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.hero-viz .eyebrow { color: rgba(242, 239, 232, 0.72); }

.hero-viz .hero-title {
  margin: 1rem 0 1.35rem;
  max-width: 12ch;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}

.hero-viz .hero-deck {
  margin: 0 0 1.9rem;
  max-width: 38ch;
  color: rgba(242, 239, 232, 0.8);
}

.hero-viz .text-link { color: var(--paper); }

.hero-viz-hint {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  margin: 0;
  color: rgba(242, 239, 232, 0.42);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .hero-viz .shell { padding-bottom: 13rem; }
  .hero-viz .hero-deck { font-size: 1rem; }
  .hero-viz-hint {
    display: block;
    left: 50%;
    right: auto;
    bottom: 1.25rem;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 2rem);
    text-align: center;
  }
  .hero-scale-object {
    width: min(132vw, 780px);
    right: 50%;
    top: 62%;
    transform: translate(50%, -30%);
    opacity: .92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scale-beam,
  .hero-scale-pan { transform: none !important; }
}

/* ---- Профиль: образование и опыт работы ---- */
.profile-list--dated li {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 0 1rem;
  align-items: baseline;
  padding-left: 0;
}
.profile-list--dated li::before { display: none; }
.profile-list--dated strong {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  white-space: nowrap;
}
.profile-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
}
@media (max-width: 620px) {
  .profile-list--dated li { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ============================================================
   АУДИТ: выравнивание узкой колонки и единая трактовка шапок
   ============================================================ */

/* Узкая читаемая колонка выравнивается по левому краю широкой сетки,
   а не центруется — иначе заголовок и текст «расходятся». */
@media (min-width: 1000px) {
  .section > .shell-narrow {
    margin-left: max(1.5rem, calc((100% - min(1120px, 100% - 3rem)) / 2));
    margin-right: auto;
  }
}

/* Шапка «О конторе» — та же тёмная трактовка, что и на остальных страницах */
.about-hero-media { position: relative; }
.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.28) 0%, transparent 38%, rgba(20, 17, 14, 0.72) 100%),
    linear-gradient(90deg, rgba(20, 17, 14, 0.5) 0%, transparent 58%);
}

/* ============================================================
   СТРАНИЦЫ ПРАКТИК — состав работ, порядок, FAQ
   ============================================================ */
.svc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-grid li {
  background: var(--bg-alt);
  padding: 1.9rem 1.6rem 2rem;
  transition: background 0.3s var(--ease);
}
.svc-grid li:hover { background: var(--surface); }
.svc-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}
.svc-grid h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.25;
}
.svc-grid p { margin: 0; color: var(--ink-soft); font-weight: 300; font-size: 0.95rem; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.steps li {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0 1.5rem;
  align-items: start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent-soft);
  line-height: 1;
}
.steps h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
}
.steps p { margin: 0; color: var(--ink-soft); font-weight: 300; max-width: 60ch; }

.people-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.people-grid--3 .person-card { display: block; color: inherit; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.35;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  top: 1.75rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid var(--accent-soft);
  border-bottom: 1.5px solid var(--accent-soft);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 62ch;
}

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .people-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 3.2rem minmax(0, 1fr); gap: 0 1rem; }
  .people-grid--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   ФИКС: атрибуты width/height не должны отменять CSS aspect-ratio.
   Когда у <img> заданы и width, и height, браузер игнорирует
   aspect-ratio — карточки растягивались и обрезались object-fit.
   height:auto возвращает управление пропорцией в CSS.
   ============================================================ */
.doc-card img,
.letter-rail img,
.video-card img,
.news-home-card img,
.news-card-media img,
.person-card img,
.profile-photo img,
.split-visual img,
.feature-row img,
.photo-strip img,
.photo-mosaic img,
.social-profiles img,
.about-video-card img {
  height: auto;
}

/* ============================================================
   ШАПКА: 6 разделов + кнопка «Консультация»
   ============================================================ */
.nav { margin-left: auto; gap: 1.6rem; }

.nav-cta {
  flex: none;
  margin-left: 1rem;
  padding: 0.62rem 1.15rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cta:hover { background: transparent; color: var(--accent); }

@media (max-width: 1100px) {
  .nav { gap: 1.1rem; }
  .lang-switch button { padding: 0.3rem 0.28rem; font-size: 0.62rem; }
}

@media (max-width: 900px) {
  .site-header { gap: 0.5rem; padding: 0 1rem; }
  .logo { font-size: 1rem; order: 1; }
  .nav { margin-left: 0; order: 5; width: 100%; }
  .lang-switch { margin-left: auto; order: 2; }
  .nav-toggle { order: 3; }
  .nav-cta { order: 4; margin-left: 0.5rem; padding: 0.55rem 0.85rem; font-size: 0.64rem; flex-shrink: 0; }
}
@media (max-width: 420px) {
  .logo { font-size: 0.88rem; }
  .nav-toggle { padding: 0.5rem 0; font-size: 0.72rem; }
  .nav-cta { padding: 0.5rem 0.6rem; font-size: 0.6rem; letter-spacing: 0.06em; }
}
@media (max-width: 360px) {
  .logo {
    font-size: 0.78rem;
    max-width: 34vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-toggle { flex-shrink: 0; padding: 0.5rem 0; font-size: 0.6rem; }
  .nav-cta { flex-shrink: 0; font-size: 0.58rem; padding: 0.5rem 0.55rem; }
}

/* ============================================================
   Кнопка WhatsApp не должна перекрывать футер
   ============================================================ */
.wa-float {
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease),
              box-shadow 0.25s var(--ease);
}
.wa-float.is-tucked {
  opacity: 0;
  transform: translateY(140%);
  pointer-events: none;
}

/* ============================================================
   Пустоты: футер и статистика
   ============================================================ */
.footer-tagline {
  margin: 0.75rem 0 0;
  max-width: 30ch;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}
.stats { gap: 2.5rem 2rem; }
.results-figures { padding-bottom: clamp(2rem, 4vw, 3rem); }

/* ============================================================
   REFERO: строка партнёров + карточки цитат доверителей
   (вдохновлено Instacart Impact — плашка/цитата/строка логотипов)
   ============================================================ */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 2.5rem;
  padding-top: 1.75rem;
  margin-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.partner-strip-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
.partner-strip-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.9rem;
}
.partner-strip-names span {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.quote-card {
  background: var(--surface);
  padding: 2.1rem 1.9rem 1.9rem;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
  opacity: 0.85;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.4rem;
  flex: 1;
}
.quote-attribution {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}
.quote-attribution strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .partner-strip { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ============================================================
   REFERO: монументальная статистика (приём Instacart Impact) —
   сплошные full-bleed изумрудные полосы с одной огромной цифрой.
   ============================================================ */
.monu-stat {
  background: var(--accent);
  color: var(--paper);
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.14);
}
.monu-stat:last-of-type { border-bottom: 0; }
.monu-stat .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 2rem;
}
.monu-stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.monu-stat-num .unit {
  font-size: 0.42em;
  letter-spacing: 0;
  color: #8fd0b4;
  margin-left: 0.15em;
}
.monu-stat-label {
  margin: 0;
  max-width: 26ch;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(242, 239, 232, 0.78);
  line-height: 1.5;
}

/* ============================================================
   REFERO: обводной заголовок на стыке фото и панели (приём
   Liron Moran Interiors, адаптирован под горизонтальный hero)
   ============================================================ */
.about-intro { position: relative; overflow: visible; }
.about-intro .shell { position: relative; z-index: 1; }
.about-hero-word {
  position: absolute;
  top: -3.4rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5.5rem, 15vw, 13.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 239, 232, 0.42);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 700px) {
  .about-hero-word { top: -1.9rem; -webkit-text-stroke-width: 1px; }
}
