:root {
  --ink: #1e1d1a;
  --muted: #706a60;
  --paper: #f4efe6;
  --white: #fbfaf7;
  --deep: #202827;
  --deep-2: #151a1a;
  --sage: #65766c;
  --clay: #9a604d;
  --line: rgba(30, 29, 26, 0.14);
  --line-dark: rgba(251, 250, 247, 0.18);
  --shadow: 0 28px 90px rgba(30, 29, 26, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

video {
  background: var(--deep-2);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(32px, 3.9vw, 58px);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 540;
  line-height: 1.16;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  font-size: 12px;
  background: rgba(251, 250, 247, 0.82);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: currentColor;
  font-size: 13px;
  opacity: 0.84;
}

.nav a {
  padding: 7px 0;
}

.section-pad {
  padding: clamp(44px, 5.5vw, 76px) clamp(18px, 5vw, 56px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow,
.hero .eyebrow,
.final-screen .eyebrow {
  color: rgba(251, 250, 247, 0.7);
}

.lead {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(251, 250, 247, 0.82);
  font-size: clamp(17px, 1.35vw, 21px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 720;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--deep-2);
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  background: rgba(251, 250, 247, 0.08);
  border-color: rgba(251, 250, 247, 0.38);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-2);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 16s ease-out forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 18, 17, 0.82), rgba(17, 18, 17, 0.42) 48%, rgba(17, 18, 17, 0.18)),
    linear-gradient(0deg, rgba(17, 18, 17, 0.86), rgba(17, 18, 17, 0.1) 56%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  padding: 104px clamp(18px, 5vw, 72px) clamp(28px, 5vw, 52px);
}

.hero-copy {
  padding-bottom: clamp(28px, 7vh, 72px);
}

.hero-specialties {
  max-width: 880px;
  margin-top: 20px;
  color: rgba(251, 250, 247, 0.68);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 620;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-panel {
  align-self: end;
  margin-bottom: clamp(12px, 3vh, 36px);
  padding: 24px;
  border: 1px solid rgba(251, 250, 247, 0.25);
  background: rgba(22, 24, 23, 0.42);
  backdrop-filter: blur(18px);
}

.hero-panel p {
  color: rgba(251, 250, 247, 0.84);
  font-size: 16px;
}

.panel-line {
  height: 1px;
  margin: 24px 0;
  background: rgba(251, 250, 247, 0.22);
}

.hero-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(251, 250, 247, 0.76);
  font-size: 14px;
}

.section-intro {
  max-width: 1160px;
  margin: 0 auto 30px;
}

.section-intro.narrow {
  max-width: 900px;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.results.section-pad {
  min-height: min(700px, calc(100vh - 62px));
  padding-top: clamp(22px, 2.4vw, 34px);
  padding-bottom: clamp(22px, 2.4vw, 34px);
}

.results .section-intro {
  margin-bottom: 18px;
}

.results .section-intro h2 {
  max-width: 980px;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.02;
}

.results .section-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 12px;
  font-size: 16px;
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-board article,
.method-stack article,
.trust-grid article,
.process-timeline article,
.direction-list article {
  min-height: 168px;
  padding: clamp(18px, 2vw, 26px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-board article {
  grid-column: span 2;
}

.results .metric-board article {
  min-height: 142px;
  padding: clamp(16px, 1.55vw, 22px);
}

.metric-board article:nth-child(1),
.metric-board article:nth-child(4) {
  grid-column: span 2;
  min-height: 142px;
  background: var(--paper);
}

.metric-board article:nth-child(1) h3,
.metric-board article:nth-child(4) h3 {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 400;
}

.results .metric-board h3 {
  font-size: clamp(18px, 1.55vw, 23px);
}

.results .metric-board p {
  font-size: 15px;
  line-height: 1.42;
}

.heading-number {
  display: inline;
  color: var(--clay);
  font-family: inherit;
  font-size: 0.86em;
  font-weight: 780;
  letter-spacing: 0;
}

.metric-board p,
.task-rail p,
.behavior-copy p,
.method-stack p,
.trust-grid p,
.center-columns p,
.process-timeline p,
.direction-list p,
.team-copy p,
.founder-copy p,
.evidence-story p,
.final-content p {
  color: var(--muted);
  font-size: 17px;
}

.management {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  min-height: min(720px, calc(100vh - 92px));
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
  padding: clamp(22px, 3vw, 42px) clamp(18px, 3vw, 54px);
  background: var(--paper);
}

.management-image {
  height: min(610px, calc(100vh - 150px));
  min-height: 430px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 24px 80px rgba(30, 29, 26, 0.1);
}

.management-image img,
.approach-media img {
  height: 100%;
  object-fit: cover;
}

.management-image img {
  object-position: center 46%;
}

.management-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.6vw, 36px) 0;
}

.management-copy h2 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.task-rail {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid rgba(30, 29, 26, 0.16);
}

.task-rail article {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 29, 26, 0.16);
}

.task-rail span {
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--sage);
}

.task-rail h3,
.task-rail p {
  grid-column: 2;
}

.task-rail p {
  margin-top: 5px;
  font-size: 15px;
}

.section-note {
  max-width: 760px;
  margin-top: 16px;
  padding-left: 18px;
  border-left: 2px solid var(--clay);
  color: var(--ink);
  font-size: 15px;
}

.behavior-gap {
  background:
    radial-gradient(circle at 86% 12%, rgba(154, 96, 77, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(251, 250, 247, 0.98)),
    var(--white);
}

.behavior-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 8vw, 128px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

.behavior-copy {
  position: sticky;
  top: 110px;
}

.behavior-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
  font-size: 17px;
}

.behavior-copy .behavior-summary {
  margin-top: 18px;
  color: var(--ink);
  font-size: 19px;
}

.editorial-statement {
  max-width: 760px;
  margin-top: clamp(34px, 5vw, 72px);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4.1vw, 62px);
  line-height: 1.02;
}

.behavior-principles {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.5);
}

.behavior-principles article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.dark {
  color: var(--white);
  background: var(--deep);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto 30px;
  align-items: center;
}

.approach-copy p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 18px;
  color: rgba(251, 250, 247, 0.68);
  font-size: 18px;
}

.approach-media {
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
  transform: translateY(18px);
}

.method-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.method-stack article {
  position: relative;
  border-color: var(--line-dark);
}

.method-stack article::before {
  position: absolute;
  top: 0;
  left: clamp(18px, 2vw, 26px);
  width: 42px;
  height: 2px;
  content: "";
  background: var(--clay);
}

.method-stack h3 {
  min-height: 58px;
}

.method-stack p {
  font-size: 15px;
  line-height: 1.48;
}

.method-stack p,
.direction-list p,
.dark .section-intro p:not(.eyebrow) {
  color: rgba(251, 250, 247, 0.68);
}

.case-study {
  background: var(--white);
}

.case-heading {
  max-width: 1160px;
  margin: 0 auto 28px;
}

.case-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.case-main {
  display: grid;
  grid-template-rows: minmax(300px, 46vh) auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.case-main img,
.case-evidence img,
.case-evidence video,
.team-collage img,
.gallery-mosaic img {
  height: 100%;
  object-fit: cover;
}

.case-text {
  padding: clamp(20px, 2.5vw, 30px);
}

.case-label {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-text p:last-child {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.case-change-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-change-map div {
  min-height: 142px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-change-map span {
  display: block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-change-map p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.case-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 480px;
}

.case-evidence figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.case-evidence figure:first-child {
  grid-row: span 2;
}

.case-evidence figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(15, 18, 18, 0.82), rgba(15, 18, 18, 0));
  font-size: 13px;
}

.trust {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 0.78fr)) minmax(420px, 1.44fr);
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.trust-media {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: 0 !important;
  overflow: hidden;
  min-height: 100%;
}

.trust-media video,
.video-frame video {
  height: 100%;
  object-fit: cover;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--deep-2);
}

.video-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(15, 18, 18, 0.58), transparent 56%);
}

.video-play {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(251, 250, 247, 0.72);
  color: var(--white);
  background: rgba(15, 18, 18, 0.38);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.video-open {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(251, 250, 247, 0.72);
  color: var(--white);
  background: rgba(15, 18, 18, 0.38);
  backdrop-filter: blur(12px);
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.video-open:hover {
  background: rgba(15, 18, 18, 0.58);
  border-color: var(--white);
  transform: translateY(-1px);
}

.trust-live-video::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  max-width: 230px;
  padding: 10px 12px;
  color: rgba(251, 250, 247, 0.84);
  border: 1px solid rgba(251, 250, 247, 0.26);
  content: "Живой фрагмент работы";
  background: rgba(15, 18, 18, 0.24);
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.video-frame.is-playing::after,
.video-frame.is-playing .video-play {
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-frame.is-playing:hover::after,
.video-frame.is-playing:hover .video-play {
  opacity: 1;
}

.soft {
  background: var(--paper);
}

.center-statement,
.gallery-heading {
  max-width: 1180px;
  margin: 0 auto;
}

.center-statement {
  max-width: 980px;
  margin-left: clamp(0px, 8vw, 130px);
}

.center-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 9vw, 126px);
  max-width: 1180px;
  margin: 28px auto 0;
}

.center-columns > div {
  display: grid;
  gap: 18px;
}

.center-columns p {
  font-size: 18px;
}

.center-thesis {
  max-width: 980px;
  margin: clamp(38px, 5vw, 72px) auto 0;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.08;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1.2fr 1.08fr;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-timeline article {
  display: flex;
  flex-direction: column;
}

.process-timeline h3 {
  max-width: 320px;
}

.process-timeline p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.process-timeline p:first-of-type {
  margin-top: 22px;
  color: var(--ink);
  font-size: 16px;
}

.direction-list {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.direction-list article {
  border-color: var(--line-dark);
}

.direction-list p {
  font-size: 15px;
  line-height: 1.48;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.team-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
}

.team-copy p + p,
.founder-copy p + p {
  margin-top: 16px;
}

.team-collage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: 180px 270px;
  gap: 18px;
}

.team-collage img:first-child {
  grid-row: span 2;
}

.team-collage img:nth-child(2) {
  transform: translateY(26px);
}

.founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 580px;
  background: var(--deep);
  color: var(--white);
}

.founder-photo {
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(20px, 3vw, 42px);
}

.founder-photo img {
  width: min(100%, 780px);
  max-height: min(680px, 78vh);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.founder-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(251, 250, 247, 0.7);
}

.evidence {
  overflow: hidden;
}

.evidence-heading {
  max-width: 900px;
  margin: 0 auto clamp(36px, 5vw, 76px);
}

.evidence-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 23px);
}

.evidence-stories {
  display: grid;
  gap: clamp(26px, 3.5vw, 54px);
  max-width: 1420px;
  margin: 0 auto;
}

.evidence-story {
  position: relative;
  display: grid;
  background: rgba(251, 250, 247, 0.74);
  border-top: 1px solid var(--line);
  box-shadow: 0 22px 80px rgba(30, 29, 26, 0.045);
}

.evidence-story-feature,
.evidence-story-portrait,
.evidence-story-wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
}

.evidence-story-portrait {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.95fr);
}

.evidence-story-portrait .evidence-copy {
  order: 2;
}

.evidence-story-portrait .evidence-photo {
  order: 1;
}

.evidence-story-wide {
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
  background: var(--deep);
  color: var(--white);
}

.evidence-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.evidence-pair-offset {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.evidence-story-compact,
.evidence-story-quiet {
  grid-template-rows: auto auto;
}

.evidence-story-quiet {
  background: transparent;
  box-shadow: none;
}

.evidence-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4.2vw, 76px);
}

.evidence-story-compact .evidence-copy,
.evidence-story-quiet .evidence-copy {
  padding: clamp(24px, 3vw, 42px);
}

.evidence-story h3 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 1.02;
}

.evidence-story-compact h3,
.evidence-story-quiet h3 {
  font-size: clamp(25px, 2.4vw, 38px);
}

.evidence-meaning {
  max-width: 680px;
  margin-top: clamp(18px, 2vw, 28px);
}

.evidence-story blockquote {
  max-width: 760px;
  margin: clamp(24px, 3vw, 42px) 0 0;
  padding: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.25vw, 36px);
  font-weight: 400;
  line-height: 1.16;
}

.evidence-story-wide blockquote,
.evidence-story-wide .evidence-meaning,
.evidence-story-wide .evidence-author span,
.evidence-story-wide .evidence-full p {
  color: rgba(251, 250, 247, 0.72);
}

.evidence-story-wide blockquote {
  color: var(--white);
}

.evidence-story-compact blockquote,
.evidence-story-quiet blockquote {
  font-size: clamp(22px, 2vw, 31px);
}

.evidence-author {
  display: grid;
  gap: 6px;
  max-width: 560px;
  margin-top: clamp(22px, 2.6vw, 34px);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.evidence-story-wide .evidence-author {
  border-color: var(--line-dark);
}

.evidence-author strong {
  font-size: 16px;
}

.evidence-author span {
  color: var(--muted);
  font-size: 14px;
}

.evidence-photo {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: clamp(18px, 2vw, 30px);
  background: rgba(244, 239, 230, 0.62);
}

.evidence-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(620px, 72vh);
  object-fit: contain;
  transition: transform 700ms ease;
}

.evidence-story-feature .evidence-photo,
.evidence-story-portrait .evidence-photo,
.evidence-story-wide .evidence-photo {
  min-height: 520px;
}

.evidence-story-feature .evidence-photo img,
.evidence-story-portrait .evidence-photo img {
  max-height: min(680px, 76vh);
}

.evidence-story-wide .evidence-photo {
  background: rgba(251, 250, 247, 0.06);
}

.evidence-story-wide .evidence-photo img {
  max-height: min(520px, 64vh);
}

.evidence-story-compact .evidence-photo,
.evidence-story-quiet .evidence-photo {
  min-height: 420px;
}

.evidence-story-compact .evidence-photo img,
.evidence-story-quiet .evidence-photo img {
  max-height: min(560px, 66vh);
}

.evidence-photo-osipov img {
  max-height: min(620px, 72vh);
}

.evidence-story:hover .evidence-photo img {
  transform: translateY(-2px);
}

.evidence-full {
  max-width: 760px;
  margin-top: 24px;
}

.evidence-full summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 680;
  transition: color 180ms ease, opacity 180ms ease;
}

.evidence-full summary:hover {
  opacity: 0.72;
}

.evidence-story-wide .evidence-full summary {
  color: var(--white);
}

.evidence-full summary::-webkit-details-marker {
  display: none;
}

.evidence-full summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.evidence-full[open] summary::after {
  content: "−";
}

.evidence-full[open] {
  padding-bottom: 4px;
}

.evidence-full div {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  animation: evidenceOpen 240ms ease;
}

.evidence-full p {
  font-size: 16px;
}

@keyframes evidenceOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-heading {
  margin-bottom: 28px;
}

.gallery-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-mosaic img:nth-child(1) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-mosaic img:nth-child(2) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-mosaic img:nth-child(3) {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-mosaic img:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-mosaic img:nth-child(5) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-mosaic img:nth-child(6) {
  grid-column: span 4;
  grid-row: span 2;
}

.final-screen {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-2);
}

.final-media,
.final-media img,
.final-shade {
  position: absolute;
  inset: 0;
}

.final-media img {
  height: 100%;
  object-fit: cover;
}

.final-shade {
  background:
    linear-gradient(90deg, rgba(17, 18, 17, 0.86), rgba(17, 18, 17, 0.62), rgba(17, 18, 17, 0.28)),
    linear-gradient(0deg, rgba(17, 18, 17, 0.8), rgba(17, 18, 17, 0.14));
}

.final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: clamp(34px, 6vw, 92px);
  width: 100%;
  align-items: center;
  padding: clamp(52px, 6vw, 92px) clamp(18px, 5vw, 64px);
}

.final-content {
  max-width: 920px;
  padding: 0;
}

.final-content p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(251, 250, 247, 0.74);
  font-size: 20px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(24px, 3vw, 34px);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.95);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(37, 37, 34, 0.7);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(37, 37, 34, 0.22);
  border-radius: 0;
  padding: 9px 0 11px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.45;
}

.contact-form textarea::placeholder {
  color: rgba(37, 37, 34, 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 37, 34, 0.78);
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.contact-submit:hover {
  color: var(--ink);
  background: transparent;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.telegram-direct {
  width: fit-content;
  margin: 0 auto;
  color: rgba(37, 37, 34, 0.72);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 37, 34, 0.34);
  transition: color 180ms ease, border-color 180ms ease;
}

.telegram-direct:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.form-status {
  min-height: 38px;
  color: rgba(37, 37, 34, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.form-status[data-state="success"] {
  color: #456354;
}

.form-status[data-state="error"] {
  color: #9b4f3f;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 12px !important;
  align-items: start;
  margin-top: 2px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 1px solid rgba(37, 37, 34, 0.38);
  accent-color: var(--ink);
}

.contact-form .consent-field span {
  color: rgba(37, 37, 34, 0.62);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.45;
  text-transform: none;
}

.consent-field a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 37, 34, 0.34);
}

.faq {
  background: var(--paper);
}

.faq.section-pad {
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(54px, 6vw, 82px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(30px, 5vw, 84px);
  max-width: 1320px;
  margin: 0 auto;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.faq-heading p:not(.eyebrow) {
  max-width: 400px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.faq-list {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  min-width: 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 16px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 620;
  line-height: 1.18;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:focus-visible {
  outline: 1px solid rgba(154, 96, 77, 0.42);
  outline-offset: -4px;
}

.faq-list summary::after {
  content: "+";
  color: var(--muted);
  font-size: 19px;
  font-weight: 360;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 720px;
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.46;
}

.ai-widget {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 80;
  color: var(--ink);
}

.ai-widget-toggle {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(37, 37, 34, 0.18);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.ai-widget-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
}

.ai-widget-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 780;
}

.ai-widget-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(420px, calc(100vw - 32px));
  max-height: min(660px, calc(100vh - 116px));
  border: 1px solid rgba(37, 37, 34, 0.14);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease;
  overflow: hidden;
}

.ai-widget.is-open .ai-widget-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ai-widget.is-open .ai-widget-toggle {
  background: var(--ink);
  color: var(--white);
}

.ai-widget.is-open .ai-widget-mark {
  color: var(--ink);
  background: var(--white);
}

.ai-widget-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(37, 37, 34, 0.1);
}

.ai-widget-header span {
  display: block;
  color: rgba(37, 37, 34, 0.52);
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
}

.ai-widget-header strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.ai-widget-header button {
  width: 32px;
  height: 32px;
  border: 0;
  color: rgba(37, 37, 34, 0.56);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.ai-widget-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  overflow-y: auto;
}

.ai-widget-message {
  max-width: 92%;
  padding: 18px;
  background: rgba(244, 239, 230, 0.68);
}

.ai-widget-message-user {
  justify-self: end;
  color: var(--white);
  background: var(--ink);
}

.ai-widget-message-assistant {
  justify-self: start;
}

.ai-widget-message[data-state="loading"] {
  opacity: 0.72;
}

.ai-widget-message[data-state="error"] {
  background: rgba(176, 91, 71, 0.12);
}

.ai-widget-message p {
  color: rgba(37, 37, 34, 0.72);
  font-size: 15px;
  line-height: 1.48;
}

.ai-widget-message-user p {
  color: rgba(251, 250, 247, 0.9);
}

.ai-widget-message p + p {
  margin-top: 10px;
}

.ai-widget-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-widget-prompts button {
  border: 1px solid rgba(37, 37, 34, 0.14);
  padding: 9px 11px;
  color: rgba(37, 37, 34, 0.72);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ai-widget-prompts button:hover,
.ai-widget-prompts button.is-selected {
  color: var(--ink);
  border-color: rgba(37, 37, 34, 0.38);
  background: rgba(244, 239, 230, 0.58);
}

.ai-widget-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 16px 22px 22px;
  border-top: 1px solid rgba(37, 37, 34, 0.1);
}

.ai-widget-composer input {
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(37, 37, 34, 0.18);
  padding: 9px 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.ai-widget-composer input:disabled {
  opacity: 0.58;
}

.ai-widget-composer button {
  border: 1px solid rgba(37, 37, 34, 0.16);
  padding: 9px 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ai-widget-composer button:hover:not(:disabled) {
  border-color: rgba(37, 37, 34, 0.38);
  background: rgba(244, 239, 230, 0.58);
}

.ai-widget-composer button:disabled {
  cursor: default;
  opacity: 0.48;
}

.site-footer {
  padding: clamp(42px, 5vw, 72px) clamp(18px, 5vw, 56px) 26px;
  color: rgba(251, 250, 247, 0.74);
  background: #111211;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(28px, 4vw, 62px);
  max-width: 1380px;
  margin: 0 auto;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 24px;
  color: rgba(251, 250, 247, 0.58);
  font-size: 15px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: rgba(251, 250, 247, 0.92);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(251, 250, 247, 0.62);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-muted {
  opacity: 0.62;
}

.footer-bottom {
  max-width: 1380px;
  margin: 46px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 250, 247, 0.12);
  color: rgba(251, 250, 247, 0.42);
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-shell {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 64px);
}

.legal-shell .brand {
  color: var(--ink);
}

.legal-document {
  max-width: 860px;
  margin-top: clamp(72px, 12vw, 150px);
}

.legal-document h1 {
  font-size: clamp(42px, 7vw, 84px);
}

.legal-document p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
}

.legal-back {
  display: inline-flex;
  margin-top: 38px;
  color: var(--ink);
  font-weight: 680;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .metric-board,
  .method-stack,
  .trust-grid,
  .process-timeline,
  .direction-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy {
    grid-column: 1 / -1;
    padding-bottom: 0;
  }

  .hero-panel {
    grid-column: 1 / -1;
    max-width: 640px;
    margin-bottom: 0;
  }

  .approach-layout,
  .behavior-layout,
  .case-shell,
  .team-layout,
  .final-inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .behavior-copy {
    position: static;
  }

  .case-evidence {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: 180px;
    min-height: 0;
  }

  .metric-board article,
  .metric-board article:nth-child(1),
  .metric-board article:nth-child(4),
  .case-evidence figure:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-media {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .contact-form {
    max-width: 620px;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .evidence-story-feature,
  .evidence-story-portrait,
  .evidence-story-wide {
    grid-template-columns: 1fr;
  }

  .evidence-story-portrait .evidence-copy,
  .evidence-story-portrait .evidence-photo {
    order: initial;
  }

  .evidence-story-feature .evidence-photo,
  .evidence-story-portrait .evidence-photo,
  .evidence-story-wide .evidence-photo {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .nav {
    display: none;
  }

  .hero-grid,
  .metric-board,
  .management,
  .method-stack,
  .trust-grid,
  .center-columns,
  .process-timeline,
  .direction-list,
  .team-layout,
  .founder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    align-content: end;
    padding-top: 96px;
  }

  .management {
    min-height: auto;
    padding: 0;
  }

  .management-image {
    height: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
    box-shadow: none;
  }

  .management-copy,
  .founder-copy {
    padding: 36px 18px;
  }

  .evidence {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .evidence-heading {
    margin-bottom: 28px;
  }

  .evidence-heading p:not(.eyebrow) {
    font-size: 17px;
  }

  .evidence-stories,
  .evidence-pair,
  .evidence-pair-offset {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .evidence-story,
  .evidence-story-compact,
  .evidence-story-quiet {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .evidence-copy,
  .evidence-story-compact .evidence-copy,
  .evidence-story-quiet .evidence-copy {
    padding: 24px 18px;
  }

  .evidence-story h3,
  .evidence-story-compact h3,
  .evidence-story-quiet h3 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .evidence-story blockquote,
  .evidence-story-compact blockquote,
  .evidence-story-quiet blockquote {
    font-size: clamp(22px, 7vw, 30px);
  }

  .evidence-photo,
  .evidence-story-feature .evidence-photo,
  .evidence-story-portrait .evidence-photo,
  .evidence-story-wide .evidence-photo {
    min-height: 0;
    aspect-ratio: auto;
  }

  .evidence-story-feature .evidence-photo,
  .evidence-story-portrait .evidence-photo,
  .evidence-story-wide .evidence-photo {
    order: 2;
  }

  .evidence-story-feature .evidence-copy,
  .evidence-story-portrait .evidence-copy,
  .evidence-story-wide .evidence-copy {
    order: 1;
  }

  .behavior-principles article {
    grid-template-columns: 48px 1fr;
  }

  .approach-media {
    min-height: 260px;
  }

  .case-main {
    grid-template-rows: minmax(230px, 34vh) auto;
  }

  .case-change-map {
    grid-template-columns: 1fr;
  }

  .case-evidence {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .center-statement {
    margin-left: auto;
  }

  .trust-media {
    min-height: 320px;
  }

  .team-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .team-collage img {
    aspect-ratio: 4 / 5;
  }

  .team-collage img:first-child {
    grid-row: auto;
  }

  .team-collage img:nth-child(2) {
    transform: none;
  }

  .founder {
    min-height: auto;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery-mosaic img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .final-screen {
    min-height: auto;
  }

  .final-inner {
    padding-top: 76px;
    padding-bottom: 52px;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(42px, 15vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: flex-end;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .hero-panel {
    padding: 20px;
  }

  .final-inner {
    gap: 30px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .consent-field {
    grid-template-columns: 18px 1fr;
  }

  .faq-list summary {
    gap: 12px;
    padding: 20px 0;
    font-size: 20px;
  }

  .ai-widget {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .ai-widget-toggle {
    margin-left: auto;
  }

  .ai-widget-panel {
    right: 0;
    left: 0;
    width: auto;
    max-height: min(620px, calc(100vh - 98px));
  }

  .ai-widget-composer {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .evidence-heading h2 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .evidence-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .evidence-story,
  .evidence-story-compact,
  .evidence-story-quiet,
  .evidence-story-wide {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .evidence-copy,
  .evidence-story-compact .evidence-copy,
  .evidence-story-quiet .evidence-copy {
    display: contents;
  }

  .evidence-story h3,
  .evidence-meaning,
  .evidence-story blockquote,
  .evidence-author,
  .evidence-full {
    margin-right: 18px;
    margin-left: 18px;
  }

  .evidence-story h3,
  .evidence-story-compact h3,
  .evidence-story-quiet h3 {
    order: 1;
    margin-top: 24px;
    font-size: clamp(25px, 8vw, 33px);
  }

  .evidence-photo,
  .evidence-story-feature .evidence-photo,
  .evidence-story-portrait .evidence-photo,
  .evidence-story-wide .evidence-photo {
    order: 2;
    width: auto;
    margin: 22px 18px 0;
    padding: 14px;
  }

  .evidence-photo img,
  .evidence-story-feature .evidence-photo img,
  .evidence-story-portrait .evidence-photo img,
  .evidence-story-wide .evidence-photo img,
  .evidence-story-compact .evidence-photo img,
  .evidence-story-quiet .evidence-photo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
  }

  .evidence-meaning {
    order: 3;
    margin-top: 22px;
  }

  .evidence-story blockquote,
  .evidence-story-compact blockquote,
  .evidence-story-quiet blockquote {
    order: 4;
    margin-top: 22px;
    font-size: clamp(20px, 6.4vw, 26px);
  }

  .evidence-author {
    order: 5;
    margin-top: 22px;
  }

  .evidence-full {
    order: 6;
    margin-bottom: 24px;
  }

  .metric-board article,
  .method-stack article,
  .trust-grid article,
  .process-timeline article,
  .direction-list article {
    min-height: 160px;
    padding: 18px 16px;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
}
