:root {
  color-scheme: light;
  --edge: clamp(22px, 2.5vw, 44px);
  --header-control: 44px;
  --white: #f7f5ef;
  --paper: #f7f7f5;
  --ink: #151512;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #777b73; }

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
}

@font-face {
  font-family: "Evolventa";
  src: url("../fonts/evolventa-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  color: var(--white);
  font-family: "Evolventa", Arial, sans-serif;
  overflow-x: hidden;
}

button, a { color: inherit; }
a { text-decoration: none; }
a:visited { color: inherit; }

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: var(--aoa-hero-background);
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: var(--aoa-hero-background);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--aoa-hero-shade);
}

.site-header {
  position: fixed;
  z-index: 3;
  inset: 0 0 auto;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--edge);
  color: var(--white);
  background: transparent;
  transform: translateY(0);
  transition: transform .72s cubic-bezier(.22,.74,.18,1), color .45s ease, background-color .45s ease;
  will-change: transform;
}

.site-header.is-content {
  color: var(--ink);
  background: transparent;
}

.site-header.is-hidden { transform: translateY(-100%); }
.site-header.is-content .brand img,
.site-header.is-content .search-link img { filter: none; }

.menu-trigger {
  justify-self: start;
  display: flex;
  height: var(--header-control);
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
  cursor: pointer;
}

.brand {
  display: grid;
  width: var(--header-control);
  height: var(--header-control);
  place-items: center;
  opacity: .96;
}

.brand img {
  display: block;
  width: 31px;
  height: 44px;
  object-fit: contain;
  filter: invert(1);
}

.search-link {
  justify-self: end;
  display: grid;
  width: var(--header-control);
  height: var(--header-control);
  place-items: center;
  transition: transform .35s ease, opacity .35s ease;
}

.search-link:hover { transform: translateY(-2px); opacity: .72; }
.search-link img {
  display: block;
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: invert(1);
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 100%;
}

h1 {
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(44px, 5.55vw, 75px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 2px 26px rgba(0,0,0,.18);
}

.scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: 34px;
  width: 44px;
  height: 64px;
  border: 0;
  padding: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.scroll-cue__icon {
  display: block;
  width: 24px;
  height: 56px;
  overflow: visible;
  animation: scroll-drift 3.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

.scroll-cue__icon path {
  fill: none;
  stroke: rgba(255,255,255,.94);
  stroke-width: 1;
  stroke-linecap: square;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}


@keyframes scroll-drift {
  0%, 100% { opacity: .62; transform: translateY(-3px); }
  50% { opacity: 1; transform: translateY(6px); }
}

.editorial-section {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(84px, 8vw, 138px) var(--edge) clamp(120px, 14vw, 220px);
  color: var(--ink);
  background: var(--paper);
}


.chapter-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: var(--utility-label-size);
  font-family: var(--font-interface);
  font-weight: 400;
  line-height: var(--utility-label-leading);
  letter-spacing: var(--utility-label-tracking);
}

.chapter-head__number { justify-self: start; }
.chapter-head h2 {
  justify-self: center;
  margin: 0;
  font: inherit;
  font-size: var(--section-label-size);
}
.chapter-head > * { white-space: nowrap; }

.feature-story {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 1.4vw, 24px);
  margin-top: clamp(84px, 9vw, 156px);
}

.feature-story__media {
  grid-column: 4 / -1;
  grid-row: 1;
  display: block;
  height: min(76svh, 860px);
  overflow: hidden;
  background: #b3aea1;
}

.feature-story__media img,
.story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.98);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s ease;
}

.feature-story__media:hover img,
.story-card__media:hover img,
.news-story__media:hover img {
  transform: scale(1.018);
  filter: saturate(.94) contrast(1);
}

.feature-story__copy {
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: end;
  z-index: 2;
  margin-bottom: clamp(36px, 5.5vw, 94px);
  padding: clamp(28px, 3vw, 50px) clamp(28px, 4vw, 68px) clamp(18px, 2vw, 34px) 0;
  background: var(--paper);
}

.story-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: clamp(20px, 2.4vw, 42px);
}

.story-caption__title { min-width: 0; }

.story-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  max-width: 190px;
  margin: .45em 0 0;
  font-size: var(--project-meta-size);
  line-height: var(--project-meta-leading);
  letter-spacing: var(--project-meta-tracking);
  text-align: right;
  text-transform: uppercase;
}

.feature-story h3 {
  max-width: 780px;
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.story-pair {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(14px, 1.4vw, 24px);
  margin-top: clamp(150px, 17vw, 280px);
}

.story-card--left { grid-column: 1 / 6; }
.story-card--right {
  grid-column: 8 / -1;
  margin-top: clamp(90px, 9vw, 150px);
}

.story-pair--second {
  margin-top: clamp(150px, 15vw, 250px);
}

.story-pair--second .story-card--left {
  grid-column: 2 / 7;
  margin-top: clamp(80px, 8vw, 140px);
}

.story-pair--second .story-card--right {
  grid-column: 8 / -1;
  margin-top: 0;
}

.story-card__media {
  display: block;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  background: #b3aea1;
}

.story-card .story-caption { margin-top: 24px; }
.story-card h3 {
  max-width: 590px;
  margin: 0;
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.feature-story--reverse .feature-story__media { grid-column: 1 / 10; }
.feature-story--reverse .feature-story__copy {
  grid-column: 6 / -1;
  padding-right: 0;
  padding-left: clamp(28px, 4vw, 68px);
  background: var(--paper);
}

.chapter-archive {
  display: flex;
  width: max-content;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: clamp(130px, 14vw, 220px) auto 0;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 9px;
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
  transition: opacity .35s ease;
}

.chapter-archive:hover { opacity: .55; }
.telegram-break {
  min-height: 88svh;
  color: var(--ink);
  background: var(--paper);
}

.telegram-break > a {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px var(--edge);
  text-align: center;
}

.telegram-break__mark {
  width: clamp(75px, 9vw, 140px);
  height: auto;
  object-fit: contain;
  filter: none;
}

.telegram-copy {
  max-width: 1100px;
  margin: clamp(54px, 6vw, 92px) 0 clamp(66px, 7vw, 110px);
  font: 400 clamp(38px, 5.4vw, 80px)/1.02 "Evolventa", Arial, sans-serif;
  letter-spacing: -.055em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.telegram-copy--mobile { display: none; }

.telegram-break__link-label {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 9px;
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
}

.news-section {
  padding: clamp(84px, 8vw, 138px) var(--edge) clamp(110px, 12vw, 180px);
  color: var(--ink);
  background: var(--paper);
}

.news-list { margin-top: clamp(78px, 9vw, 142px); }
.news-story {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
  padding: clamp(34px, 4vw, 64px) 0;
  border-top: 1px solid rgba(21,21,18,.45);
}
.news-story:last-child { border-bottom: 1px solid rgba(21,21,18,.45); }
.news-story__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #aaa396; }
.news-story__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .8s ease; }
.news-story__copy > span { margin: 0; font-size: var(--project-meta-size); line-height: var(--project-meta-leading); letter-spacing: var(--project-meta-tracking); text-transform: uppercase; }
.news-story h3 { max-width: 900px; margin: 24px 0 0; font: 400 clamp(40px, 5vw, 72px)/.94 "EB Garamond", Georgia, serif; letter-spacing: -.035em; text-wrap: balance; }

.site-footer {
  padding: clamp(90px, 10vw, 160px) var(--edge) 36px;
  color: var(--ink);
  background: var(--paper);
}
.site-footer__brand { display: grid; grid-template-columns: 70px minmax(0, 760px); gap: clamp(32px, 5vw, 90px); align-items: start; }
.site-footer__brand img { width: 43px; max-height: 64px; }
.site-footer__brand p { margin: 0; font: 400 clamp(32px, 4.1vw, 60px)/1.04 "Evolventa", Arial, sans-serif; letter-spacing: -.055em; }
.site-footer__contact { margin-top: clamp(100px, 13vw, 210px); display: flex; flex-direction: column; gap: 12px; font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface); letter-spacing: var(--utility-label-tracking); }
.site-footer__contact a { width: max-content; font-size: clamp(24px, 3vw, 44px); letter-spacing: -.02em; }
.site-footer__socials { margin-top: clamp(90px, 11vw, 170px); }
.site-footer__socials p { margin: 0 0 34px; font: 400 var(--utility-label-size)/1.2 var(--font-interface); letter-spacing: var(--utility-label-tracking); }
.site-footer__socials > div { display: flex; flex-wrap: wrap; gap: 18px clamp(28px, 4vw, 68px); }
.site-footer__socials a { font: 400 clamp(27px, 3.2vw, 48px)/1 "Evolventa", Arial, sans-serif; letter-spacing: -.045em; transition: opacity .35s ease; }
.site-footer__socials a:hover { opacity: .5; }
.site-footer__socials small { display: block; max-width: 760px; margin-top: 38px; font-size: 8px; font-weight: 300; line-height: 1.5; letter-spacing: .06em; }
.site-footer__bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 38px; margin-top: clamp(100px, 13vw, 200px); padding-top: 24px; border-top: 1px solid rgba(21,21,18,.22); font-size: 9px; letter-spacing: .12em; }
.site-footer__bottom > span:last-child { text-align: right; }
.site-footer__bottom > span:last-child a { text-decoration: underline; text-underline-offset: 3px; }

.menu-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--ink);
  background: var(--paper);
}

.menu-panel::backdrop { background: transparent; }
.menu-panel:focus { outline: none; }

.menu-panel[open] {
  display: block;
}

.menu-panel__inner {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  padding: 0 var(--edge) clamp(28px, 3vw, 44px);
}

.menu-panel__inner::before {
  content: "";
  position: absolute;
  inset: 104px var(--edge) auto;
  height: 1px;
  background: rgba(21,21,18,.22);
  transform: none;
}

.menu-panel__nav a,
.menu-panel__footer {
  opacity: 1;
  transform: none;
}

.menu-panel__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 104px;
}

.menu-panel__close,
.menu-panel__brand,
.menu-panel__search {
  position: relative;
  z-index: 1;
}

.menu-panel__close {
  justify-self: start;
  padding: 12px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-panel__close:focus { outline: none; }
.menu-panel__close:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.menu-panel__brand {
  display: grid;
  width: 44px;
  height: 56px;
  place-items: center;
}

.menu-panel__brand img {
  width: 31px;
  height: 44px;
  object-fit: contain;
}

.menu-panel__search {
  display: grid;
  width: 44px;
  height: 44px;
  justify-self: end;
  place-items: center;
}

.menu-panel__search img {
  width: 19px;
  height: 19px;
}

.menu-panel__nav {
  display: flex;
  width: 100%;
  align-self: center;
  justify-self: center;
  flex-direction: column;
}

.menu-panel__nav a {
  display: grid;
  grid-template-columns: clamp(42px, 5vw, 76px) minmax(0, 1fr);
  align-items: baseline;
  padding: clamp(3px, .6vh, 9px) 0;
  transition: opacity .35s ease;
}

.menu-panel__nav a:hover { opacity: .48; }

.menu-panel__nav span {
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
}

.menu-panel__nav strong {
  font: 400 var(--section-nav-size)/var(--section-nav-leading) var(--font-interface);
  letter-spacing: var(--section-nav-tracking);
}

.menu-panel__footer {
  --menu-label-gap: 15px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "social contact"
    "legal legal";
  gap: 22px 40px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(21,21,18,.22);
}

.menu-panel__socials { grid-area: social; }

.menu-panel__socials > span,
.menu-panel__contact > span {
  display: block;
  margin: 0 0 var(--menu-label-gap);
  font: 400 var(--utility-label-size)/var(--utility-label-leading) var(--font-interface);
  letter-spacing: var(--utility-label-tracking);
}

.menu-panel__socials > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(22px, 3vw, 46px);
}

.menu-panel__socials a,
.menu-panel__email {
  font: 400 clamp(17px, 1.7vw, 24px)/1 "Evolventa", Arial, sans-serif;
  letter-spacing: -.035em;
  transition: opacity .35s ease;
}

.menu-panel__socials a:hover,
.menu-panel__email:hover { opacity: .48; }

.menu-panel__contact {
  grid-area: contact;
  display: flex;
  align-self: start;
  justify-self: end;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.menu-panel__email {
  align-self: flex-start;
}

.menu-panel__legal {
  grid-area: legal;
  max-width: 780px;
  margin: 0;
  font-size: 7px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .05em;
}


@media (max-width: 720px) {
  :root { --edge: 20px; --header-control: 40px; }
  .hero { min-height: 520px; }
  .site-header { height: 84px; }
  .brand img { width: 28px; height: 40px; }
  .search-link img { width: 18px; height: 18px; }

  .hero__content {
  width: 100%;
}
  h1 { font-size: clamp(36px, 10.5vw, 48px); line-height: .98; letter-spacing: -.035em; }
  h1 br { display: none; }
  .scroll-cue { right: 14px; bottom: 18px; transform: scale(.86); transform-origin: bottom right; }

  .editorial-section { padding: 78px var(--edge) 110px; }
  .feature-story {
    display: block;
    margin-top: 64px;
  }
  .feature-story__media {
    display: block;
    aspect-ratio: 3 / 4;
    height: auto;
  }
  .feature-story__media img { object-position: 50% center; }
  .feature-story__copy {
    margin: 0;
    padding: 28px 0 0;
    background: transparent;
  }
  .story-caption { grid-template-columns: minmax(0, 1fr) 92px; column-gap: 16px; }
  .story-meta { gap: 3px; margin-top: .4em; }
  .feature-story h3 { line-height: .94; }
  .story-pair {
    display: grid;
    grid-template-columns: 1fr;
    gap: 82px;
    margin-top: 110px;
  }
  .story-card--left,
  .story-card--right { grid-column: 1; margin-top: 0; }
  .story-pair--second .story-card--left,
  .story-pair--second .story-card--right { grid-column: 1; margin-top: 0; }
  .story-card__media { aspect-ratio: 4 / 5; }
  .story-card .story-caption { margin-top: 18px; }
  .story-card h3 { font-size: 30px; line-height: .98; }
  .feature-story--reverse .feature-story__media { display: block; }
  .feature-story--reverse .feature-story__copy { padding: 28px 0 0; background: transparent; }
  .chapter-archive { margin-top: 108px; }
  .telegram-break, .telegram-break > a { min-height: 78svh; }
  .telegram-break > a { padding: 82px var(--edge); }
  .telegram-break__mark { width: clamp(65px, 21vw, 95px); }
  .telegram-copy--desktop { display: none; }
  .telegram-copy--mobile { display: flex; width: 100%; max-width: 350px; flex-direction: column; margin: 48px 0 64px; font-size: clamp(27px, 7.8vw, 35px); line-height: 1.08; letter-spacing: -.05em; }
  .telegram-copy--mobile span { display: block; white-space: nowrap; }
  .news-section { padding: 78px var(--edge) 104px; }
  .news-list { margin-top: 58px; }
  .news-story { grid-template-columns: 1fr; gap: 26px; padding: 42px 0 50px; }
  .news-story__media { aspect-ratio: 4 / 3; }
  .news-story h3 { margin: 18px 0 24px; font-size: 38px; }
  .site-footer { padding: 86px var(--edge) 28px; }
  .site-footer__brand { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__brand img { width: 34px; }
  .site-footer__brand p { font-size: 42px; }
  .site-footer__contact { margin-top: 94px; }
  .site-footer__socials { margin-top: 92px; }
  .site-footer__socials p { max-width: 280px; line-height: 1.45; }
  .site-footer__socials > div { gap: 20px 30px; }
  .site-footer__socials a { font-size: 28px; }
  .site-footer__socials small { max-width: 330px; margin-top: 32px; font-size: 7px; line-height: 1.55; }
  .site-footer__bottom { grid-template-columns: 1fr; gap: 16px; margin-top: 96px; }
  .site-footer__bottom > span:last-child { text-align: left; }

  .menu-panel__inner {
    padding: 0 var(--edge) max(18px, env(safe-area-inset-bottom));
  }
  .menu-panel__header { height: 84px; }
  .menu-panel__inner::before { inset: 84px var(--edge) auto; }
  .menu-panel__brand { width: 40px; height: 48px; }
  .menu-panel__brand img { width: 28px; height: 40px; }
  .menu-panel__search { width: 40px; height: 40px; }
  .menu-panel__search img { width: 18px; height: 18px; }
  .menu-panel__nav { width: 100%; }
  .menu-panel__nav a {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 54px;
    padding: 6px 0;
  }
  .menu-panel__footer {
    --menu-label-gap: 13px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "social"
      "contact"
      "legal";
    gap: 18px;
    padding-top: 17px;
  }
  .menu-panel__socials > div { gap: 10px 22px; }
  .menu-panel__socials a,
  .menu-panel__email { font-size: 17px; }
  .menu-panel__contact { justify-self: start; align-items: flex-start; }
  .menu-panel__email { align-self: flex-start; }
  .menu-panel__legal { max-width: 340px; font-size: 6px; line-height: 1.4; }
}

@media (prefers-reduced-motion: reduce) {

  .scroll-cue__icon { animation: none; }
  .search-link { transition: none; }
  .site-header { transition: none; }
  .feature-story__media img,
  .story-card__media img,
  .news-story__media img,
  .chapter-archive,
  .site-footer__socials a,
  .menu-panel__nav a,
  .menu-panel__socials a,
  .menu-panel__email { transition: none; }
}
