:root {
  --ink: #d8d7d0;
  --paper: #0a0c0e;
  --paper-raised: #101417;
  --paper-deep: #060809;
  --muted: #8c918f;
  --line: rgba(216, 215, 208, 0.16);
  --line-strong: rgba(216, 215, 208, 0.3);
  --signal: #c66743;
  --signal-soft: rgba(198, 103, 67, 0.13);
  --ghost: rgba(255, 255, 255, 0.025);
  --display: Bahnschrift, "Arial Narrow", "Segoe UI Variable", sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --utility: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(216, 215, 208, 0.025) 50%, transparent 50.05%),
    var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--signal);
}

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.utility {
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 26px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.identity__sigil {
  width: 10px;
  height: 10px;
  border: 1px solid var(--signal);
  transform: rotate(45deg);
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
}

.nav a,
.header__contact,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.header__contact:hover,
.footer a:hover {
  color: var(--signal);
}

.header__contact {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--signal);
}

.hero {
  position: relative;
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  padding: 150px clamp(22px, 7vw, 120px) 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 67% 42%, var(--signal-soft), transparent 27%),
    linear-gradient(180deg, transparent 78%, var(--paper) 100%);
}

.field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 970px;
}

.kicker,
.section__label,
.project__meta {
  margin: 0 0 24px;
  color: var(--signal);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(4.1rem, 7.8vw, 8.6rem);
  line-height: 0.87;
  letter-spacing: -0.06em;
}

h1 em {
  color: var(--signal);
  font-weight: 400;
  font-style: normal;
}

.hero__lead {
  max-width: 700px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero__statement {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
}

mark {
  position: relative;
  color: inherit;
  background: transparent;
  white-space: nowrap;
}

mark::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: 0.05em;
  left: -4px;
  height: 0.38em;
  background: var(--signal-soft);
  border-bottom: 1px solid var(--signal);
  transform: rotate(-0.5deg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-top: 38px;
}

.hero__primary-action {
  display: grid;
  gap: 10px;
}

.action {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 19px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.action--primary {
  color: var(--paper);
  background: var(--signal);
}

.action--primary:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--signal);
}

.action--quiet {
  color: var(--muted);
  border-color: var(--line);
}

.action--quiet:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.aside-note {
  margin: 0;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.telemetry {
  position: relative;
  z-index: 1;
  align-self: center;
  border-left: 1px solid var(--line-strong);
}

.telemetry__line {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  padding: 28px 0 28px 42px;
  border-bottom: 1px solid var(--line);
}

.telemetry__line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(198, 103, 67, 0.72);
  transform: translateY(-50%);
}

.telemetry__line span {
  color: var(--signal);
  font-size: 0.78rem;
}

.telemetry__line strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.telemetry__line small {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 190px) clamp(22px, 7vw, 120px);
  border-bottom: 1px solid var(--line);
}

.section__header {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) 1fr;
  gap: 5vw;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.section__label {
  padding-top: 10px;
}

h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.9rem);
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.situations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: calc(24% + 5vw);
  border-top: 1px solid var(--line);
}

.situation {
  min-height: 230px;
  padding: 32px 34px 34px 0;
  border-bottom: 1px solid var(--line);
}

.situation:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.situation__quote {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.situation > p:last-child {
  margin: 0;
  color: var(--muted);
}

.thesis {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  max-width: 920px;
  margin: 110px 0 0 auto;
  padding: 0 0 0 36px;
  border-left: 2px solid var(--signal);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.45vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.thesis p {
  margin: 0;
}

.thesis__marker {
  color: var(--signal);
  font-family: var(--utility);
  font-size: 0.7em;
}

.origin__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.origin__timeline {
  position: sticky;
  top: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.origin__timeline li {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 26px 10px 28px 30px;
  border-bottom: 1px solid var(--line);
}

.origin__timeline li::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.origin__timeline time {
  color: var(--signal);
}

.origin__timeline strong {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.origin__timeline span {
  color: var(--muted);
  line-height: 1.55;
}

.origin__story {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.origin__story p {
  margin: 0 0 26px;
}

.origin__opening {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.35rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

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

.project {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.project::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.project:hover::after {
  transform: scaleX(1);
}

.project__id,
.project__meta,
.project__role {
  color: var(--signal);
}

.project h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.05;
}

.project > p:not(.project__role) {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
}

.project__role {
  grid-column: 3;
  margin: 0;
}

.project--lead {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(90deg, transparent, var(--ghost), transparent);
}

.agreements__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 7vw, 110px);
}

.agreement h3 {
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 400;
}

.agreement {
  display: grid;
  grid-template-rows: auto 1fr;
}

.agreement h3 span {
  margin-right: 12px;
  color: var(--signal);
  font-family: var(--utility);
}

.agreement ul {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.agreement li {
  position: relative;
  padding: 22px 0 22px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.agreement li::before {
  content: "→";
  position: absolute;
  top: 22px;
  left: 0;
  color: var(--signal);
  font-family: var(--utility);
}

.agreement--no li::before {
  content: "×";
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
}

.brief__copy h2 {
  margin-bottom: 38px;
}

.brief__title span {
  display: block;
  white-space: nowrap;
}

.brief__title {
  font-size: clamp(3rem, 5.5vw, 5.9rem);
}

.brief__copy > p:not(.section__label, .brief__warning) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.05rem;
}

.brief__warning {
  max-width: 580px;
  margin-top: 38px;
  padding-left: 18px;
  color: var(--muted);
  border-left: 1px solid var(--signal);
  text-transform: none;
  letter-spacing: 0;
}

.brief-console {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(216, 215, 208, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 215, 208, 0.025) 1px, transparent 1px),
    var(--paper-raised);
  background-size: 28px 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.brief-console::before {
  content: "";
  position: absolute;
  inset: -7px 7px 7px -7px;
  z-index: -1;
  border: 1px solid var(--line);
}

.brief-console__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--signal);
}

.brief-console__state i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(198, 103, 67, 0.8);
}

.brief-console__dialogue {
  padding: 38px 0 30px;
}

.brief-console__question {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.brief-console__hint {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 1px solid var(--signal);
}

.brief-console label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-console textarea {
  display: block;
  width: 100%;
  min-height: 150px;
  padding: 16px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  background: rgba(6, 8, 9, 0.72);
  resize: vertical;
}

.brief-console textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal);
}

.brief-console textarea::placeholder {
  color: #626866;
}

.brief-console .action {
  margin-top: 14px;
}

.brief-console__status {
  min-height: 1.3em;
  margin: 13px 0 0;
  color: var(--signal);
  text-transform: none;
  letter-spacing: 0;
}

.brief-console [hidden] { display: none !important; }
.brief-console__privacy {
  margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line);
  color: #747a77; font-size: .67rem; line-height: 1.55; letter-spacing: .02em; text-transform: none;
}
.brief-console__state.is-thinking i { animation: brief-pulse .8s ease-in-out infinite alternate; }
.brief-chat { padding-top: 24px; }
.chat-messages {
  display: flex; max-height: 480px; flex-direction: column; gap: 14px;
  overflow-y: auto; padding: 4px 6px 24px 0; scrollbar-color: var(--signal) transparent;
}
.chat-message { display: flex; align-items: flex-start; gap: 10px; }
.chat-message.user { justify-content: flex-end; }
.chat-avatar {
  display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center;
  border: 1px solid var(--signal); color: var(--signal); font: 600 .64rem var(--mono);
}
.chat-bubble {
  max-width: min(82%, 570px); padding: 13px 15px; border: 1px solid var(--line);
  background: #111615; color: #d3d6d4; line-height: 1.55; white-space: pre-wrap;
}
.chat-message.user .chat-bubble { border-color: #75422f; background: rgba(198, 103, 67, .2); color: #f4e8e2; }
.typing-dots { display: flex; gap: 5px; padding: 5px 1px; }
.typing-dots i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--signal);
  animation: brief-pulse .7s ease-in-out infinite alternate;
}
.typing-dots i:nth-child(2) { animation-delay: .14s; }
.typing-dots i:nth-child(3) { animation-delay: .28s; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px 41px; }
.chat-suggestions button, .brief-summary-actions button, .new-brief {
  border: 1px solid var(--line-strong); background: transparent; color: var(--muted);
  font: 500 .69rem var(--mono); cursor: pointer;
}
.chat-suggestions button { padding: 8px 10px; }
.chat-suggestions button:hover, .brief-summary-actions button:hover, .new-brief:hover {
  border-color: var(--signal); color: var(--ink);
}
.chat-composer {
  display: grid; grid-template-columns: 1fr 48px; gap: 9px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.chat-composer textarea { min-height: 48px; max-height: 160px; resize: none; }
.chat-send {
  min-height: 48px; border: 1px solid var(--signal); background: var(--signal);
  color: #090d0c; font-size: 1.25rem; cursor: pointer;
}
.chat-send:disabled, .new-brief:disabled { cursor: wait; opacity: .45; }
.new-brief {
  display: block; margin: 13px 0 0 auto; padding: 7px 9px; text-transform: none;
}
.brief-summary { margin-left: 41px; padding: 22px; border: 1px solid var(--signal); background: #0c1110; }
.brief-summary h3 { margin: 0 0 19px; color: var(--paper); font: 600 1.45rem var(--display); }
.brief-summary dl {
  display: grid; grid-template-columns: 140px 1fr; gap: 8px 14px;
  margin: 0; font-size: .78rem; line-height: 1.5;
}
.brief-summary dt { color: var(--signal); }
.brief-summary dd { margin: 0; color: #c6cac8; white-space: pre-wrap; }
.brief-summary-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.brief-summary-actions button { min-height: 40px; padding: 9px 12px; }
.brief-summary-actions .confirm-brief { border-color: var(--signal); background: var(--signal); color: #090d0c; }
.brief-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.brief-contact h4, .brief-contact > p, .brief-contact-consent { grid-column: 1 / -1; }
.brief-contact h4 { margin: 0; color: var(--paper); font: 600 1rem var(--display); }
.brief-contact > p { margin: -5px 0 2px; color: var(--muted); font-size: .78rem; }
.brief-contact label { color: var(--muted); font: .7rem var(--utility); letter-spacing: .04em; }
.brief-contact input[type="text"] {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 6px;
  padding: 10px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-deep);
}
.brief-contact-consent { display: flex; gap: 8px; align-items: flex-start; line-height: 1.45; cursor: pointer; }
.brief-contact-consent input { margin-top: 3px; accent-color: var(--signal); }
.cookie-notice {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  display: flex;
  max-width: 560px;
  gap: 18px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 12, 14, .97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .42);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; color: #b9bdbb; font-size: .78rem; line-height: 1.45; }
.cookie-notice button { flex: 0 0 auto; min-height: 38px; padding: 8px 12px; border: 1px solid var(--signal); color: var(--paper); background: var(--signal); cursor: pointer; }
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important;
}
@keyframes brief-pulse { to { opacity: .24; transform: translateY(-2px); } }

.closing {
  padding: clamp(130px, 18vw, 260px) 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, var(--signal-soft), transparent 30%),
    var(--paper-deep);
}

.closing__small {
  color: var(--signal);
}

.closing h2 {
  margin: 20px 0 0;
}

.closing > p:not(.closing__small) {
  margin: 16px 0 40px;
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px clamp(22px, 4vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.footer__contacts {
  display: flex;
  justify-self: end;
  gap: 12px;
}

.footer__contacts a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer__contacts a:hover {
  color: var(--signal);
  border-color: var(--signal);
  background: var(--signal-soft);
}

.footer__contacts svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 170px;
  }

  .telemetry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .telemetry__line {
    padding: 24px 20px;
  }

  .telemetry__line + .telemetry__line {
    border-left: 1px solid var(--line);
  }

  .telemetry__line::before {
    top: -4px;
    left: 20px;
  }

  .situations__grid {
    margin-left: 0;
  }

  .origin__layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
  }

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

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .header {
    padding: 20px;
  }

  .header__contact {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 130px 20px 76px;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.7rem);
  }

  .hero__lead {
    margin-top: 32px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__primary-action {
    width: 100%;
  }

  .action {
    width: 100%;
  }

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

  .telemetry__line + .telemetry__line {
    border-left: 0;
  }

  .section {
    padding: 90px 20px;
  }

  .section__header {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 56px;
  }

  .section__label {
    padding-top: 0;
  }

  h2 {
    font-size: clamp(2.8rem, 12.5vw, 4.3rem);
  }

  .situations__grid,
  .agreements__columns {
    grid-template-columns: 1fr;
  }

  .situation,
  .situation:nth-child(even) {
    min-height: 0;
    padding: 26px 0;
    border-left: 0;
  }

  .thesis {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 70px;
    padding-left: 20px;
  }

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

  .origin__timeline {
    position: relative;
    top: 0;
  }

  .project {
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 34px 0;
  }

  .project > p,
  .project__role {
    grid-column: 2;
  }

  .agreements__columns {
    gap: 60px;
  }

  .agreement,
  .agreement ul {
    display: block;
  }

  .brief-console {
    padding: 20px;
  }

  .brief-contact {
    grid-template-columns: 1fr;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .brief-console::before {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__contacts {
    justify-self: center;
  }
}

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

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