@font-face {
  font-family: Cormorant;
  src: url("/assets/fonts/cormorant-garamond-cyrillic-wght-normal.woff2")
    format("woff2");
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0400-052F, U+2116;
}
@font-face {
  font-family: Cormorant;
  src: url("/assets/fonts/cormorant-garamond-latin-wght-normal.woff2")
    format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: Golos;
  src: url("/assets/fonts/golos-text-cyrillic-wght-normal.woff2")
    format("woff2");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-052F, U+2116;
}
@font-face {
  font-family: Golos;
  src: url("/assets/fonts/golos-text-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #fefefe;
  --ink: #242820;
  --muted: #66665d;
  --red: #8d2027;
  --line: #c8b9a8;
  --header-line: color-mix(in srgb, var(--line) 45%, var(--paper));
  --serif: Cormorant, Georgia, serif;
  font-family: Golos, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html::-webkit-scrollbar {
  width: 12px;
  background: linear-gradient(to bottom, var(--paper) calc(var(--scrollbar-offset, 106px) - 1px), var(--header-line) calc(var(--scrollbar-offset, 106px) - 1px), var(--header-line) var(--scrollbar-offset, 106px), var(--paper) var(--scrollbar-offset, 106px));
}
html::-webkit-scrollbar-track {
  background: var(--paper);
  border-left: 0;
  margin-top: var(--scrollbar-offset, 106px);
}
html::-webkit-scrollbar-thumb {
  background: var(--red);
  border: 3px solid var(--paper);
  border-radius: 12px;
  min-height: 48px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #69171d;
}
html::-webkit-scrollbar-thumb:active {
  background: #4d1116;
}
@supports not selector(::-webkit-scrollbar) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--paper);
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
  background: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p {
  line-height: 1.4;
  margin: 0 0 1em;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
h2 {
  font-size: clamp(36px, 4vw, 62px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 27px;
  letter-spacing: -0.02em;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
::selection {
  background: #8d2027;
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
}
button:disabled {
  cursor: wait;
}
.wrap {
  width: calc(100% - clamp(80px, 8vw, 240px));
  margin-inline: auto;
}
.section {
  border-top: 1px solid var(--line);
  padding-block: 28px 44px;
}
.section-label {
  font-family: Golos, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 400;
}
.section-label:after {
  content: "";
  display: inline-block;
  width: 40px;
  margin-left: 14px;
  vertical-align: middle;
  border-top: 1px solid var(--line);
}
.accent {
  color: var(--red);
}
.muted {
  color: var(--muted);
}
.art {
  mix-blend-mode: multiply;
}
.round {
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  flex: none;
  padding: 10px;
  transition: background 0.2s;
}
.round:hover {
  background: #e1d7c9;
}
.round img {
  width: 24px;
  height: 24px;
}
.outline {
  border: 1px solid var(--red);
  border-radius: 30px;
  padding: 12px 25px;
  font-size: 13px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
}
.outline {
  transition: color .18s ease, border-color .18s ease;
}
.outline:hover {
  background: transparent;
  color: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 25px;
  background: var(--red);
  color: #fff8ec;
  border-radius: 32px;
  min-height: 48px;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #701820;
  transform: translateY(-2px);
}
.button img {
  width: 21px;
  filter: brightness(0) invert(1);
}
.text-link {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
  min-height: 44px;
}
.text-link img {
  width: 19px;
}
.text-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  padding: 15px;
  z-index: 20;
  background: var(--paper);
  border: 2px solid var(--red);
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  width: 100%;
  padding-inline: clamp(40px, 4vw, 120px);
  border-bottom: 1px solid var(--header-line);
  min-height: 106px;
  transition: min-height .24s ease, box-shadow .24s ease;
  overflow-anchor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  line-height: 1.2;
  max-width: 310px;
}
.brand > img {
  width: 48px;
  height: 48px;
}
.brand small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.35;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
}
.header nav a {
  padding: 15px 0;
  border-bottom: 1px solid transparent;
}
.header nav a:hover {
  color: var(--red);
  border-color: var(--red);
}
.menu-toggle,
.mobile-contact {
  display: none;
}
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding-block: 35px 62px;
  isolation: isolate;
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 61%;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(66px, 6.65vw, 102px);
  letter-spacing: -0.045em;
  line-height: 0.88;
}
.hero-lead {
  font-size: 16px;
  margin: 30px 0 24px;
  line-height: 1.4;
  max-width: 510px;
}
.hero-art {
  position: absolute;
  width: 69%;
  max-width: none;
  right: -3%;
  top: 0;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: -1;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-actions .text-link {
  font-family: Golos, sans-serif;
  font-size: 14px;
}
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-block: 22px 28px;
}
.facts > div {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-inline: 40px;
  border-right: 1px solid var(--line);
}
.facts > div:first-child {
  padding-left: 24px;
}
.facts > div:last-child {
  border: 0;
}
.facts img {
  width: 56px;
  height: 56px;
}
.facts p {
  margin: 0;
}
.facts strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 41px;
  line-height: 1.05;
  color: var(--red);
}
.facts span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  align-items: center;
}
.about-grid .muted {
  margin-top: 18px;
}
.about-copy {
  font-size: 16px;
  max-width: 530px;
}
.about-copy p:last-child {
  color: var(--ink);
}
.tasks {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.task-grid article {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.task-grid article:first-child {
  padding-left: 0;
}
.task-grid article:last-child {
  border: 0;
  padding-right: 0;
}
.task-grid h3 {
  display: flex;
  gap: 16px;
  line-height: 1.05;
  font-size: 28px;
}
.task-grid h3 > span:first-child {
  font-family: Golos, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  align-self: start;
}
.task-grid img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: contain;
  margin: 12px 0;
}
.task-grid p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}
.section-heading > .muted {
  font-size: 15px;
  max-width: 300px;
}
.technology-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
  margin-top: 38px;
}
.technology-list li {
  position: relative;
}
.technology-list .step {
  font-size: 14px;
  color: var(--red);
}
.technology-list img {
  height: 70px;
  width: 70px;
  margin: 16px 0 19px;
  opacity: 0.85;
}
.technology-list h3 {
  font-family: Golos, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 7px;
}
.technology-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.technology-list li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 61px;
  right: 0;
  width: 25px;
  height: 20px;
  background: url("/assets/revival/icons/arrow-right.svg") center/contain
    no-repeat;
  opacity: 0.55;
}
.objects-section {
  padding-bottom: 28px;
}
.objects-section .section-heading h2 {
  font-size: clamp(36px, 3.65vw, 57px);
}
.objects-section .section-heading p {
  margin: 10px 0 0;
  font-size: 15px;
}
.counter {
  white-space: nowrap;
  flex: none;
  font-size: 14px !important;
}
.counter span {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.carousel {
  position: relative;
  margin-top: 28px;
}
.carousel > .round {
  position: absolute;
  top: 32%;
  z-index: 1;
  background: var(--paper);
}
#previous {
  left: -24px;
}
#next {
  right: -24px;
}
.object-list {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  scroll-snap-type: none;
  scrollbar-width: none;
  padding: 5px 0 16px;
}
.object-list::-webkit-scrollbar {
  display: none;
}
.object-card {
  flex: 0 0 calc((100% - 100px) / 4.4);
  min-width: 0;
  text-align: left;
  padding: 0 0 8px;
  scroll-snap-align: start;
  border-bottom: 2px solid transparent;
}
.object-card .thumbnail {
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 50% 50% 0 0 /25% 25% 0 0;
  background: var(--paper);
  position: relative;
}
.object-card .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.88);
  mix-blend-mode: multiply;
  transition:
    filter 0.3s,
    transform 0.4s;
}
.object-card:hover .thumbnail img {
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.025);
}
.object-card .card-title {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  display: block;
  margin: 14px 0 8px;
}
.object-card .card-location {
  font-size: 11px;
  color: var(--muted);
  display: block;
}
.object-card .chosen {
  font-size: 11px;
  display: block;
  color: var(--red);
  height: 18px;
  margin-top: 11px;
  visibility: hidden;
}
.object-card[aria-selected="true"] {
  border-color: transparent;
}
.object-card[aria-selected="true"] .card-title {
  color: var(--red);
}
.object-card.is-selected .card-title {
  color: var(--red);
}
.object-card[aria-selected="true"] .chosen {
  visibility: visible;
}
.object-card.is-selected .chosen {
  visibility: visible;
}
.chosen:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 8px;
}
.object-view {
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: start;
  gap: 0;
  margin-top: 15px;
}
.object-description {
  padding-block: 30px;
  padding-top: clamp(30px, 5vw, 90px);
  position: relative;
  z-index: 1;
}
.object-details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .4s ease, opacity .3s ease;
}
.object-details.is-open { grid-template-rows: 1fr; opacity: 1; }
.object-details-inner { overflow: hidden; min-height: 0; }
.object-details p {
  max-width: 360px;
  padding: 0 16px 0 18px;
  margin: 22px 0 0;
  border-left: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  transform: translateY(-8px);
  transition: transform .4s ease;
}
.object-details.is-open p { transform: none; }
.details-mark { display: inline-block; width: 20px; text-align: center; font-size: 22px; line-height: 1; }
@media (prefers-reduced-motion: reduce) {
  .object-details, .object-details p { transition: none; }
}
.object-description h2 {
  font-size: clamp(38px, 4vw, 60px);
  margin-bottom: 20px;
}
.object-description > p:not(.section-label) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 340px;
}
.object-description .object-medium {
  font-size: 11px !important;
  margin-top: 26px;
}
.arch-column {
  min-width: 0;
}
.arch-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
}
.arch-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.arch-window {
  position: absolute;
  left: 24.2%;
  top: 29%;
  width: 51.5%;
  height: 58.6%;
  border-radius: 50% 50% 0 0 /52% 52% 0 0;
  overflow: hidden;
  padding: 0;
  background: #c9c4b9;
}
.arch-window:focus-visible {
  outline-offset: 3px;
  outline-width: 4px;
}
.arch-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 1.25s ease;
}
.arch-window[aria-pressed="true"] img {
  filter: grayscale(0);
}
.arch-window:hover img {
  transform: none;
}
.color-hint {
  text-align: center;
  font-size: 14px;
  color: var(--red);
  margin: 10px 16px 8px;
  position: relative;
  z-index: 3;
}
.image-credit {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.image-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.image-error {
  position: absolute;
  inset: 40% 5% auto;
  font-size: 12px;
}
.image-error[hidden] {
  display: none;
}
.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.people-grid h2 {
  font-size: 48px;
}
.people-grid p {
  font-size: 14px;
  color: var(--muted);
}
.people-grid .organizer {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  color: var(--red);
  margin: 23px 0 12px;
}
.people-art {
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.participant-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
  font-size: 13px;
  line-height: 1.45;
}
.participant-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}
.participant-list img {
  width: 31px;
  height: 31px;
  flex: none;
}
.participant-list li:last-child {
  grid-column: 1/-1;
  font-size: 11px;
}
.support {
  border-top: 1px solid var(--line);
  padding-block: 22px 28px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}
.support h2 {
  font-size: 13px;
}
.support p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.committees {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
}
.committees p + p {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.support > div + div {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 35px;
  align-items: center;
}
.news-grid > img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}
.news h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.news p:not(.section-label) {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.status-label {
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 20px;
  color: var(--red);
  font-size: 12px;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 28px;
  align-items: center;
}
.results h2 {
  font-size: 43px;
}
.results p {
  font-size: 14px;
}
.results img {
  width: 100%;
  height: 240px;
  object-fit: contain;
}
.footer {
  border-top: 1px solid var(--red);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.15fr auto 1.3fr;
  gap: 28px;
  align-items: center;
  padding-block: 26px;
}
.footer h2 {
  font-size: 48px;
  color: var(--red);
}
.footer address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer address a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.footer address img {
  width: 24px;
}
.footer address a:hover {
  text-decoration: underline;
}
.footer .button {
  font-size: 12px;
  padding: 14px 20px;
  gap: 15px;
}
.university {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.university strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}
.university span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-block: 20px 30px;
}
@media (min-width: 1700px) {
  .hero {
    min-height: 640px;
  }
  .hero h1 {
    font-size: 110px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header {
    gap: 20px;
  }
  .header nav {
    gap: 20px;
  }
  .brand {
    font-size: 15px;
  }
  .header-contact {
    padding: 10px 18px;
  }
  .hero {
    min-height: 510px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-copy {
    width: 65%;
  }
  .hero-art {
    width: 72%;
    right: -3%;
  }
  .hero-lead {
    font-size: 14px;
  }
  .facts > div {
    padding-inline: 20px;
    gap: 18px;
  }
  .facts strong {
    font-size: 33px;
  }
  .facts img {
    width: 43px;
    height: 43px;
  }
  .task-grid h3 {
    font-size: 24px;
    gap: 9px;
  }
  .task-grid article {
    padding-inline: 17px;
  }
  .technology-list {
    gap: 16px;
  }
  .technology-list h3 {
    font-size: 12px;
  }
  .technology-list li:not(:last-child):after {
    right: -2px;
    width: 18px;
  }
  .object-card .card-title {
    font-size: 23px;
  }
  .people-grid {
    grid-template-columns: 1fr 1fr;
  }
  .people-art {
    display: none;
  }
  .people-grid h2 {
    font-size: 44px;
  }
  .footer-main {
    grid-template-columns: 1fr 1.1fr 1fr;
  }
  .university {
    grid-column: 1/-1;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .results-grid > div {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .results img {
    height: 210px;
  }
  .support {
    grid-template-columns: 2.5fr 1fr;
    gap: 22px;
  }
  .committees {
    gap: 20px;
  }
  .committees p + p {
    padding-left: 20px;
  }
}
@media (max-width: 760px) {
  :root {
    scroll-padding-top: 96px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    min-height: 84px;
    width: 100%;
    padding-inline: 20px;
    position: sticky;
    z-index: 5;
  }
  .brand {
    font-size: 16px;
    max-width: 260px;
    gap: 9px;
  }
  .brand > img {
    width: 36px;
    height: 42px;
  }
  .brand small {
    font-size: 9px;
  }
  .header-contact {
    display: none;
  }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 15px 22px;
    box-shadow: 0 16px 30px #24282015;
  }
  .header nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header nav a {
    padding: 15px 0;
  }
  .header nav .mobile-contact {
    display: block;
  }
  .hero {
    padding-block: 30px 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
  }
  .hero h1 {
    font-size: clamp(52px, 10.8vw, 79px);
    line-height: 0.94;
  }
  .hero-lead {
    margin: 22px 0;
    font-size: 13px;
    max-width: 100%;
  }
  .hero-lead br {
    display: initial;
  }
  .hero-art {
    position: relative;
    width: 110%;
    max-width: none;
    right: 5%;
    height: auto;
    aspect-ratio: 1.5;
    margin-top: -5px;
    z-index: 0;
  }
  .hero-actions {
    gap: 24px;
  }
  .button {
    font-size: 12px;
    padding: 14px 20px;
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .facts {
    padding: 0 0 24px;
    gap: 0;
  }
  .facts > div,
  .facts > div:first-child {
    padding: 0 12px;
    display: block;
  }
  .facts > div:first-child {
    padding-left: 0;
  }
  .facts > div:last-child {
    padding-right: 0;
  }
  .facts img {
    width: 30px;
    height: 30px;
    margin-bottom: 12px;
  }
  .facts strong {
    font-size: clamp(24px, 6vw, 36px);
    white-space: nowrap;
  }
  .facts span {
    font-size: 10px;
    line-height: 1.4;
  }
  .section {
    padding-block: 24px 32px;
  }
  .section-label {
    font-size: 11px;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-grid .muted {
    font-size: 13px;
    margin-bottom: 0;
  }
  .about-copy {
    font-size: 14px;
  }
  .about-copy p:last-child {
    margin-bottom: 0;
  }
  .tasks {
    margin-top: 28px;
  }
  .task-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .task-grid article {
    padding: 0 12px;
  }
  .task-grid article:nth-child(odd) {
    padding-left: 0;
  }
  .task-grid article:nth-child(even) {
    border: 0;
    padding-right: 0;
  }
  .task-grid h3 {
    font-size: 23px;
    gap: 10px;
  }
  .task-grid h3 > span:first-child {
    font-size: 12px;
  }
  .task-grid p {
    font-size: 12px;
  }
  .task-grid img {
    aspect-ratio: 1.4;
  }
  .section-heading {
    align-items: start;
    gap: 12px;
  }
  .section-heading > .muted {
    display: none;
  }
  .technology-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 14px;
    margin-top: 28px;
  }
  .technology-list li:last-child {
    grid-column: auto;
  }
  .technology-list img {
    width: 44px;
    height: 44px;
    margin: 10px 0 15px;
  }
  .technology-list .step {
    font-size: 12px;
  }
  .technology-list h3 {
    font-size: 11px;
    line-height: 1.3;
  }
  .technology-list p {
    font-size: 10px;
  }
  .technology-list li:not(:last-child):after {
    display: none;
  }
  .objects-section .section-heading h2 {
    font-size: 38px;
  }
  .objects-section .section-heading p {
    font-size: 12px;
  }
  .objects-section .counter {
    font-size: 11px !important;
    margin-top: 5px;
    white-space: nowrap;
  }
  .counter span {
    font-size: 23px;
  }
  .carousel {
    margin-top: 24px;
  }
  .object-list {
    gap: 17px;
    padding-bottom: 12px;
  }
  .object-card {
    flex-basis: 68%;
  }
  .object-card .card-title {
    font-size: 28px;
  }
  .object-card .card-location {
    font-size: 11px;
  }
  .carousel > .round {
    display: none;
    width: 40px;
    height: 40px;
    top: 34%;
    padding: 8px;
  }
  #previous {
    left: -14px;
  }
  #next {
    right: -14px;
  }
  .object-view {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    align-items: stretch;
  }
  .object-description {
    padding: 0;
  }
  .object-description h2 {
    font-size: 44px;
    margin-bottom: 12px;
  }
  .object-description > p:not(.section-label) {
    font-size: 14px;
    max-width: 100%;
  }
  .object-description .text-link {
    font-size: 22px;
  }
  .object-description .object-medium {
    font-size: 10px !important;
    margin: 14px 0 0;
  }
  .arch-column {
    margin-inline: -18px;
    margin-top: 8px;
  }
  .color-hint {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .image-credit {
    font-size: 9px;
    padding-inline: 25px;
  }
  .people-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .people-grid h2 {
    font-size: 40px;
  }
  .people-grid .organizer {
    margin: 20px 0 12px;
  }
  .participant-list {
    font-size: 12px;
    gap: 20px;
  }
  .participant-list img {
    width: 25px;
    height: 25px;
  }
  .support {
    grid-template-columns: 1fr;
    padding-block: 24px;
    gap: 24px;
  }
  .support > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }
  .support p {
    font-size: 12px;
  }
  .committees {
    gap: 18px;
    grid-template-columns: 1fr 1fr;
  }
  .committees p + p {
    padding-left: 18px;
  }
  .news-grid {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .news-grid > img {
    display: none;
  }
  .news h2 {
    font-size: 33px;
  }
  .news p:not(.section-label) {
    font-size: 12px;
  }
  .news p br {
    display: none;
  }
  .status-label {
    padding: 7px 10px;
    font-size: 10px;
  }
  .results-grid {
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .results h2 {
    font-size: 40px;
  }
  .results img {
    height: 220px;
  }
  .results-grid > div {
    display: block;
  }
  .results p {
    font-size: 13px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 24px;
  }
  .footer h2 {
    font-size: 46px;
  }
  .footer address a {
    font-size: 14px;
  }
  .footer .button {
    justify-self: start;
    font-size: 13px;
  }
  .university {
    display: block;
    padding-top: 20px;
  }
  .university strong {
    font-size: 32px;
  }
  .university span {
    margin-top: 6px;
  }
  .footer-bottom {
    font-size: 9px;
    flex-direction: column;
    gap: 8px;
    padding-block: 18px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .object-card:hover .thumbnail img,
  .arch-window:hover img {
    transform: none;
  }
}
/* Keep long Cyrillic task headings within narrow grid tracks. */
.task-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.task-grid article {
  min-width: 0;
}
.object-card .thumbnail {
  border-radius: 0;
  aspect-ratio: 1.4;
}
.object-card .thumbnail img {
  object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}
@media (max-width: 760px) {
  .task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .task-grid h3 {
    display: block;
    font-size: 23px;
  }
  .task-grid h3 > span:first-child {
    display: block;
    width: max-content;
    margin-bottom: 9px;
  }
  .object-card .thumbnail {
    aspect-ratio: 1.4;
  }
}
.object-card .thumbnail img {
  filter: grayscale(1) brightness(1.14);
}
.object-card:hover .thumbnail img {
  filter: grayscale(1) brightness(1.1);
}
@media (max-width: 760px) {
  .task-grid h3 {
    font-size: clamp(17px, 5vw, 23px);
  }
}
.art:not(.hero-art) {
  filter: grayscale(1) brightness(1.14);
}
.arch-frame.art {
  filter: grayscale(1) sepia(0) saturate(1);
  transition: filter .55s ease-in-out;
}
.arch-stage:has(.arch-window.is-colored) .arch-frame.art {
  filter: grayscale(0) sepia(.45) saturate(1.15) brightness(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .arch-frame.art { transition: none; }
}
.skip-link:not(:focus) {
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
}
.people-art {
  object-fit: cover;
}
@media (max-width: 400px) {
  .facts {
    grid-template-columns: 0.6fr 1fr 1fr;
  }
  .facts > div,
  .facts > div:first-child {
    min-width: 0;
    padding-inline: 8px;
  }
  .facts > div:first-child {
    padding-left: 0;
  }
  .facts strong {
    font-size: 21px;
  }
  .technology-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 400px) {
  .task-grid h3 {
    font-size: clamp(16px, 4.8vw, 20px);
  }
  .technology-list p {
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}
@media (min-width: 761px) and (max-width: 1000px) {
  .task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }
  .task-grid article:nth-child(odd) {
    padding-left: 0;
  }
  .task-grid article:nth-child(even) {
    padding-right: 0;
    border-right: 0;
  }
  .task-grid h3 {
    font-size: 28px;
  }
  .task-grid img {
    max-height: 190px;
  }
}
.technology-list .technology-art {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin: 7px 0 12px;
  opacity: 1;
}
.technology-list li:not(:last-child):after {
  top: 72px;
  right: -20px;
}
@media (max-width: 1100px) {
  .technology-list .technology-art {
    height: 76px;
  }
  .technology-list li:not(:last-child):after {
    right: -16px;
    top: 62px;
  }
}
@media (max-width: 760px) {
  .technology-list .technology-art {
    height: 68px;
    margin: 5px 0 10px;
  }
}
.people-figure {
  margin: 0;
}
@media (max-width: 1100px) {
  .people-figure {
    display: none;
  }
}
/* User review: wider composition and institutional marks. */
@media (min-width: 1600px) {
  .hero {
    min-height: min(760px, 34vw);
  }
  .hero h1 {
    font-size: clamp(102px, 6.2vw, 158px);
  }
  .hero-lead {
    font-size: 19px;
    max-width: 630px;
  }
}
.brand > img {
  width: 38px;
  height: 64px;
  object-fit: contain;
}
.organizer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.organizer img {
  width: 44px;
  height: 74px;
  object-fit: contain;
}
.committees p {
  display: flex;
  align-items: center;
  gap: 18px;
}
.committees img {
  width: 46px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}
.university {
  position: relative;
  padding-left: 62px;
}
.university > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 72px;
  object-fit: contain;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.carousel-controls .counter {
  margin: 0;
}
.autoplay-toggle {
  color: var(--red);
  font-size: 12px;
  min-height: 44px;
  padding: 10px 8px;
}
.arch-frame {
  position: relative;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: normal;
  mask-image: url("/assets/revival/arch-opening-mask.svg");
  mask-mode: luminance;
  mask-size: 100% 100%;
}
.arch-window {
  left: 26.5%;
  top: 28.5%;
  width: 47%;
  height: 54%;
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
  z-index: 1;
}
@media (max-width: 760px) {
  .brand > img {
    width: 28px;
    height: 48px;
  }
  .carousel-controls {
    flex-direction: column;
    gap: 0;
    align-items: end;
  }
  .autoplay-toggle {
    padding-right: 0;
    font-size: 11px;
  }
  .committees p {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  .committees img {
    width: 34px;
    height: 46px;
  }
}

/* Refined opaque pencil asset: opening measured against the generated master. */
.arch-window {
  left: 26.4%;
  top: 26%;
  width: 47.2%;
  height: 60%;
  border-radius: 0;
}

/* The image remains fixed until a visitor selects a card. The rail moves independently. */
.object-card {
  border: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  transform: translate3d(var(--rail-subpixel, 0px), 0, 0);
  will-change: transform;
}
.object-card .thumbnail {
  width: 100%;
  flex-shrink: 0;
  background: #fff;
}
.object-card .card-title {
  min-height: 2em;
}
.object-card .card-location {
  min-height: 2.7em;
}
.object-card .thumbnail .thumbnail-sketch,
.object-card:hover .thumbnail .thumbnail-sketch {
  filter: grayscale(1);
  mix-blend-mode: normal;
}
.object-card .thumbnail img {
  /* The same source in both layers prevents a seam and a composition jump. */
  mask-image: linear-gradient(#000 88%, transparent 99%);
}
.object-card .thumbnail .thumbnail-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  transition: opacity 0.45s ease;
}
.object-card:is(:hover, :focus-visible) .thumbnail .thumbnail-wash {
  opacity: 1;
  filter: none;
  transform: none;
}
.object-card:hover .thumbnail-sketch {
  transform: none;
}
.object-list {
  cursor: grab;
}
.object-list.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.scroll-art {
  display: block;
  position: relative;
  isolation: isolate;
}
.scroll-art img.monochrome-art {
  filter: grayscale(1);
  mix-blend-mode: normal;
}
.scroll-art img.color-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
  mix-blend-mode: normal;
  pointer-events: none;
  mask-image: linear-gradient(112deg, #000 calc(var(--reveal-position, -20%) - 18%), transparent var(--reveal-position, -20%));
}
.task-grid .scroll-art {
  margin: 12px 0;
}
.task-grid .scroll-art img {
  display: block;
  margin: 0;
}
.technology-list .scroll-art {
  width: 100%;
  height: 100px;
  margin: 7px 0 12px;
}
.technology-list .scroll-art img,
.technology-list .scroll-art .technology-art {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
@media (max-width: 1100px) {
  .technology-list .scroll-art { height: 76px; }
}
@media (max-width: 760px) {
  .technology-list .scroll-art { height: 68px; margin: 5px 0 10px; }
}
.arch-window img {
  position: absolute;
  inset: 0;
  display: block;
  transition: none;
}
.arch-window #object-image,
.arch-window[aria-pressed="true"] #object-image {
  filter: grayscale(1);
}
.arch-window .paint-layer,
.arch-window[aria-pressed="true"] .paint-layer {
  filter: none;
  pointer-events: none;
  --paint-radius: 0%;
  mask-image: radial-gradient(circle at var(--paint-center), #000 calc(var(--paint-radius) - 9%), transparent var(--paint-radius));
  transition: --paint-radius .5s ease-in-out;
}
.arch-window.is-colored .paint-layer {
  --paint-radius: var(--paint-target);
  transition-duration: .65s;
}
@property --paint-radius {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}
.arch-window .paint-one { --paint-center: 72% 58%; --paint-target: 68%; }
.arch-window .paint-two { --paint-center: 23% 42%; --paint-target: 68%; }
.arch-window .paint-three { --paint-center: 54% 74%; --paint-target: 145%; transition-delay: 0s; }
.arch-window.is-colored .paint-one { transition-delay: 0s; }
.arch-window.is-colored .paint-two { transition-delay: .08s; }
.arch-window.is-colored .paint-three { transition-delay: .16s; }
.arch-window.reset-color .paint-layer {
  --paint-radius: 0%;
  transition: none;
}
.section h2,
.section-heading h2,
.object-description h2 {
  font-weight: 600;
  line-height: 1.04;
}
.hero h1 {
  font-weight: 550;
}
.task-grid h3,
.technology-list h3,
.section h3 {
  font-weight: 600;
}
.section-label {
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}
html,
body {
  overflow-x: clip;
}
.header nav {
  margin-inline: auto;
}
.header-contact {
  position: static;
  flex-shrink: 0;
}
.header .brand { flex-shrink: 0; }
.header .brand small {
  max-height: 32px;
  overflow: hidden;
  transition: max-height .24s ease, opacity .18s ease, margin-top .24s ease;
}
html.is-scrolled .header {
  min-height: 72px;
  box-shadow: 0 3px 16px rgb(36 40 32 / 5%);
}
html.is-scrolled .header .brand small {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}
.header nav a {
  position: relative;
  border-bottom: 0;
  transition: color .2s ease;
}
.header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header nav a:is(:hover, [aria-current="location"]) { color: var(--red); }
.header nav a[aria-current="location"]::after { transform: scaleX(1); }
.organizer img { width: min(100%, 300px); height: auto; }
.university { padding-left: 0; }
.university > img { position: static; width: min(100%, 270px); height: auto; margin-bottom: 12px; }
.section-reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.section-reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 760px) {
  html.is-scrolled .header { min-height: 64px; }
  .header nav { top: 100%; }
  .menu-toggle {
    margin-left: auto;
  }
  .header nav.is-open {
    margin-inline: 0;
  }
}
.section-heading h2,
.object-description h2 {
  padding-left: 20px;
  border-left: 3px solid var(--red);
}
@media (prefers-reduced-motion: reduce) {
  .header, .header .brand small { transition: none; }
  .arch-window.is-colored .paint-layer {
    mask-image: none;
    transition: none;
  }
  .arch-window .paint-layer {
    transition: none;
  }
}

/* Project community and compact contact ending. */
.community { padding-bottom: 52px; }
.community-intro { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 32px; margin-bottom: 38px; }
.community-heading h2 { font-size: clamp(40px, 4.1vw, 72px); line-height: 1.06; max-width: 760px; }
.community-heading > p:last-child { max-width: 620px; font-size: clamp(16px, 1.25vw, 20px); margin-top: 24px; }
.community-art { display: block; width: 100%; height: auto; }
.community-columns { display: grid; grid-template-columns: .95fr 1.1fr 1fr; gap: 36px; }
.community-columns > div + div { border-left: 1px solid var(--line); padding-left: 36px; }
.community-columns .section-label { margin-bottom: 24px; }
.community-columns ul { list-style: none; padding: 0; margin: 0; }
.community-columns li { font-size: clamp(15px, 1.12vw, 18px); line-height: 1.4; margin-bottom: 18px; }
.community-columns li:last-child { margin-bottom: 0; }
.community-logo { width: min(100%, 350px); height: auto; }
.footer-main { grid-template-columns: 1.35fr 1fr auto; padding-block: 32px; gap: 32px; }
.footer .contact-heading h2 { color: var(--ink); font-size: clamp(36px, 3.4vw, 56px); line-height: 1.06; }
.contact-heading p { margin: 12px 0 0; color: var(--muted); font-size: 15px; }
.footer address a { font-size: 15px; }
@media (max-width: 760px) {
  .community { padding-bottom: 32px; }
  .community-intro { grid-template-columns: 1fr; gap: 8px; margin-bottom: 24px; }
  .community-heading h2 { font-size: 42px; }
  .community-art { max-width: 480px; justify-self: center; }
  .community-columns { grid-template-columns: 1fr; gap: 24px; }
  .community-columns > div + div { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .community-columns .section-label { margin-bottom: 16px; }
  .community-logo { width: min(100%, 300px); }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding-block: 28px; }
  .footer .button { justify-self: start; }
}

.community-intro > .scroll-art { width: 100%; min-width: 0; }
@media (max-width: 760px) {
  .community-intro > .scroll-art { max-width: 480px; justify-self: center; }
}

.cms-news-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:32px}
.cms-news-card img {width:100%;aspect-ratio:3/2;object-fit:cover;margin-bottom:16px}
.cms-news-card time{color:var(--red);font-size:13px}.cms-news-card h3{font-size:32px;line-height:1.15;margin:12px 0}.cms-news-card p{color:var(--muted)}
.cms-partners{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}.cms-partners img{max-width:260px;max-height:110px;object-fit:contain}
@media(max-width:760px){.cms-news-grid,.cms-partners{grid-template-columns:1fr}}

.news-article{max-width:900px}.news-article h1{font-family:Cormorant,serif;font-size:clamp(38px,5vw,64px);line-height:1.1;margin:24px 0}.news-article>img{width:100%;max-height:560px;object-fit:cover;margin:24px 0}.news-article>p{margin:18px 0;white-space:pre-wrap}

/* Editorial type: compact headings, clear labels, comfortable reading measure. */
body { -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-optical-sizing: auto; }
.hero h1 { line-height: .96; letter-spacing: -.035em; }
.section h2 { line-height: 1.04; letter-spacing: -.025em; }
.eyebrow, .section-label { font-weight: 600; letter-spacing: .095em; line-height: 1.2; }
.hero-lead, .about-copy p, .object-description > p, .community-heading > p:last-child { text-wrap: pretty; }
.about-copy p { max-width: 64ch; }
.hero-lead { font-weight: 400; line-height: 1.4; }
#navigation a, .header-contact, .button { font-weight: 500; letter-spacing: -.01em; }
.task-grid h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.018em; }
.task-grid h3 > span:first-child, .step, .counter { font-variant-numeric: lining-nums tabular-nums; }
.task-grid h3 > span:first-child { font-weight: 500; font-size: 12px; letter-spacing: .06em; }
.card-title { font-weight: 500; line-height: 1.08; letter-spacing: -.015em; }
.card-location { line-height: 1.3; }
.community-columns li { line-height: 1.4; margin-bottom: 12px; }
.news-article > p { font-size: 17px; line-height: 1.4; max-width: 66ch; }
.footer-bottom { font-variant-numeric: tabular-nums; }
@media(max-width:650px) {
 .hero h1 { letter-spacing: -.03em; line-height: .98; }
 .hero-lead, .about-copy p, .object-description > p { font-size: 15px; line-height: 1.4; }
 .section-label, .eyebrow { letter-spacing: .08em; }
 .community-columns li, .contact-heading p { font-size: 15px; }
 .news-article > p { font-size: 16px; }
}

/* Footer groups keep project navigation and legal documents easy to find. */
.footer-directory {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.4fr;
  gap: 40px;
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-identity strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.2; }
.footer-identity p { max-width: 30ch; margin-top: 12px; font-size: 14px; line-height: 1.65; }
.footer-directory nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-directory h3 { margin: 0 0 6px; color: var(--red); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.footer-directory a { font-size: 14px; line-height: 1.5; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; transition: color .18s ease, text-decoration-color .18s ease; }
.footer-directory a:hover { color: var(--red); text-decoration-color: currentColor; }
@media (max-width: 760px) {
  .footer-directory { grid-template-columns: 1fr; gap: 30px; padding-block: 28px; }
  .footer-directory nav { gap: 8px; }
  .footer-directory a { padding-block: 5px; }
}
