@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700;900&display=swap");

:root {
  --black: #050505;
  --white: #ffffff;
  --soft-white: #f7f6f1;
  --beige: #e5ddcf;
  --beige-deep: #d3c2a5;
  --plate-bg: transparent;
  --line-dark: rgba(0, 0, 0, .16);
  --line-light: rgba(255, 255, 255, .18);

  --plate-y: 0px;
  --plate-opacity: 1;
  --content-opacity: 0;
  --content-y: 22px;

  --header-color: #060606;
  --header-line: rgba(0, 0, 0, .15);
  --header-bg: transparent;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--soft-white);
  font-family: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(circle at 70% 28%, rgba(211, 194, 165, .32), transparent 30vw),
    linear-gradient(180deg, #f7f6f1 0%, #e9dfcf 100%);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .72s ease, visibility .72s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
}

.preloader__logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.preloader__inner p {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: .095em;
  text-align: center;
  color: rgba(5, 5, 5, .62);
}

.preloader__bottom {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 8vh;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 18px;
}

.preloader__line {
  height: 1px;
  background: rgba(5, 5, 5, .16);
  overflow: hidden;
}

.preloader__line span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--black);
}

.preloader__percent {
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(5, 5, 5, .68);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 4.2vw;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) auto;
  align-items: center;
  color: var(--header-color);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  transition: color .28s ease, border-color .28s ease, background .28s ease, backdrop-filter .28s ease, box-shadow .28s ease;
}

.site-header.is-blurred {
  --header-color: #050505;
  --header-line: rgba(5, 5, 5, .12);
  --header-bg: rgba(247, 246, 241, .72);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 18px 46px rgba(5, 5, 5, .06);
}

.site-header.is-blurred .brand__logo {
  filter: none;
}

.site-header.is-over-hero,
body.nav-open .site-header {
  --header-color: #f7f6f1;
  --header-line: rgba(255, 255, 255, .16);
}

body.js-enabled .structure-section::before,
body.js-enabled .structure-section .section-kicker,
body.js-enabled .structure-section__title,
body.js-enabled .structure-section__head p,
body.js-enabled .structure-section__core,
body.js-enabled .structure-section .structure-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.structure-section::before,
.structure-section .section-kicker,
.structure-section__title,
.structure-section__head p,
.structure-section__core,
.structure-section .structure-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .structure-section.is-visible::before,
body.js-enabled .structure-section.is-visible .section-kicker,
body.js-enabled .structure-section.is-visible .structure-section__title,
body.js-enabled .structure-section.is-visible .structure-section__head p,
body.js-enabled .structure-section.is-visible .structure-section__core,
body.js-enabled .structure-section.is-visible .structure-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .structure-section.is-visible::before {
  transition-delay: .05s;
}

body.js-enabled .structure-section.is-visible .section-kicker {
  transition-delay: .08s;
}

body.js-enabled .structure-section.is-visible .structure-section__title {
  transition-delay: .16s;
}

body.js-enabled .structure-section.is-visible .structure-section__head p {
  transition-delay: .28s;
}

body.js-enabled .structure-section.is-visible .structure-section__core {
  transition-delay: .34s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(1) {
  transition-delay: .42s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(2) {
  transition-delay: .52s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(3) {
  transition-delay: .62s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(4) {
  transition-delay: .72s;
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .structure-section::before,
  body.js-enabled .structure-section .section-kicker,
  body.js-enabled .structure-section__title,
  body.js-enabled .structure-section__head p,
  body.js-enabled .structure-section__core,
  body.js-enabled .structure-section .structure-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

body.nav-open .site-header {
  --header-color: #f7f6f1;
  --header-line: rgba(255, 255, 255, .16);
}

.site-header.is-blurred,
.site-header.is-blurred.is-over-hero {
  --header-color: #050505;
  --header-line: rgba(5, 5, 5, .12);
  --header-bg: rgba(247, 246, 241, .72);
}

.brand {
  display: inline-flex;
  width: 96px;
  align-items: center;
}

.brand__logo {
  display: block;
  width: 96px;
  height: auto;
  transition: filter .28s ease;
}

.site-header.is-over-hero .brand__logo,
body.nav-open .brand__logo {
  filter: invert(1);
}

.site-header.is-blurred .brand__logo,
.site-header.is-blurred.is-over-hero .brand__logo {
  filter: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.15vw, 18px);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .06em;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0;
  opacity: .84;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 20px;
}

.header-cta {
  min-width: 218px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  background: var(--beige-deep);
  color: #050505;
  border-color: var(--beige-deep);
  font-size: 11px;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}

.site-header.is-over-hero .header-cta {
  background: rgba(211, 194, 165, .96);
  border-color: rgba(211, 194, 165, .96);
  color: #050505;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--beige);
  color: #050505;
  border-color: var(--beige);
}

.site-header:not(.is-over-hero) .header-cta:hover {
  background: var(--beige);
  color: #050505;
  border-color: var(--beige);
}

.burger {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid transparent;
  padding: 0;
  background: transparent;
  color: currentColor;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, color .22s ease;
}

.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform .24s ease, width .24s ease, opacity .24s ease;
}

.burger span:first-child {
  transform: translate(-50%, -6px);
}

.burger span:last-child {
  transform: translate(-50%, 6px);
}

.burger:hover {
  border-color: currentColor;
}

.burger:hover span {
  width: 32px;
}

.burger:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

body.nav-open .burger {
  border-color: rgba(255, 255, 255, .84);
  border-radius: 50%;
}

body.nav-open .burger span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

body.nav-open .burger span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 110px 4.2vw 44px;
  background: var(--beige);
  color: #050505;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-100%);
  transition: transform .44s cubic-bezier(.76, 0, .24, 1);
}

body.nav-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  font-size: clamp(24px, 6vw, 52px);
  line-height: 1;
  letter-spacing: .03em;
  transition: padding-left .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
}

.mobile-menu a:hover {
  padding-left: 18px;
  background: rgba(0, 0, 0, .045);
  border-color: rgba(0, 0, 0, .34);
}

.mobile-menu__cta,
.mobile-menu__secondary {
  margin-top: 22px;
  min-height: 52px !important;
  justify-content: center;
  border: 1px solid #050505 !important;
  font-size: 12px !important;
  letter-spacing: .08em !important;
}

.mobile-menu__cta {
  background: var(--beige-deep);
  color: #050505;
  border-color: var(--beige-deep) !important;
}

.mobile-menu__cta:hover {
  padding-left: 0 !important;
  background: var(--beige);
  color: #050505;
  border-color: var(--beige) !important;
}

.mobile-menu__secondary {
  margin-top: 12px;
}

.mobile-menu__secondary:hover {
  padding-left: 0 !important;
  background: rgba(0, 0, 0, .08);
  color: #050505;
  border-color: #050505 !important;
}

.hero {
  position: relative;
  height: 184vh;
  background: var(--black);
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("./assets/hero-office.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.015);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, .44);
}

.hero__content {
  position: absolute;
  left: 4.2vw;
  bottom: 12vh;
  z-index: 3;
  width: min(680px, 88vw);
  opacity: var(--content-opacity);
  transform: translateY(var(--content-y));
  transition: opacity .08s linear;
  pointer-events: auto;
}

.hero__eyebrow {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: clamp(12px, .95vw, 15px);
  line-height: 1.25;
  letter-spacing: .075em;
  color: rgba(255, 255, 255, .78);
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(36px, 4.45vw, 66px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--soft-white);
}

.hero__buttons {
  margin-top: clamp(26px, 3.6vw, 42px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-width: 232px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .82);
  font-size: 12px;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

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

.btn--light:hover {
  background: var(--beige);
  color: #050505;
  border-color: var(--beige);
}

.btn--outline:hover {
  background: rgba(211, 194, 165, .18);
  color: var(--beige);
  border-color: var(--beige);
}

.btn--light {
  background: var(--beige-deep);
  color: #050505;
  border-color: var(--beige-deep);
}

.btn--outline {
  background: rgba(211, 194, 165, .08);
  color: var(--beige);
  border-color: rgba(229, 221, 207, .84);
}


.hero__meta {
  position: absolute;
  right: 4.2vw;
  bottom: 5vh;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: calc(var(--content-opacity) * .85);
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

.hero__meta span {
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, .34);
}

.hero__meta b {
  font-weight: 400;
}

.intro-card {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: var(--plate-opacity);
  transform: translateY(var(--plate-y));
  transform-origin: center top;
  will-change: transform, opacity;
}

.intro-card.is-gone {
  visibility: hidden;
}

.intro-card__plate-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(470px, 69vh, 790px);
  background: transparent;
  overflow: hidden;
}

.intro-card__plate-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.intro-card__cutout {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}

.intro-card__scroll {
  position: absolute;
  right: 4.2vw;
  top: clamp(370px, 63vh, 724px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(0, 0, 0, .58);
  font-size: 11px;
  letter-spacing: .11em;
}

.intro-card__scroll span {
  width: 70px;
  height: 1px;
  background: rgba(0, 0, 0, .34);
}

.about-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f7f6f1 0%, #ede6d8 100%);
  background-size: 25vw 100%, 100% 100%;
  color: #050505;
  padding: clamp(96px, 11vw, 150px) 4.2vw clamp(88px, 10vw, 132px);
  border-top: 1px solid rgba(0, 0, 0, .14);
  overflow: hidden;
}

.about-section::before {
  content: "АОПФ";
  position: absolute;
  right: -1.2vw;
  top: clamp(52px, 6vw, 96px);
  color: rgba(211, 194, 165, .22);
  font-size: clamp(120px, 19vw, 292px);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.075em;
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  left: 4.2vw;
  right: 4.2vw;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, .15);
}

.about-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: rgba(5, 5, 5, .58);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

.section-kicker::before {
  content: "";
  width: clamp(52px, 7vw, 118px);
  height: 1px;
  background: rgba(5, 5, 5, .32);
}

.section-kicker span,
.section-kicker b {
  font-weight: 400;
}

.about-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .66fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
  margin-bottom: clamp(56px, 7.6vw, 104px);
}

.about-section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.about-section__lead {
  padding-top: .75vw;
  border-top: 1px solid rgba(5, 5, 5, .22);
}

.about-section__lead p {
  margin: 0;
  font-size: clamp(15px, 1.26vw, 21px);
  line-height: 1.34;
  letter-spacing: .015em;
  color: rgba(5, 5, 5, .74);
  text-transform: none;
}

.about-section__lead p + p {
  margin-top: 22px;
}

.about-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, .78fr) minmax(260px, .78fr);
  border-top: 1px solid rgba(5, 5, 5, .2);
  border-left: 1px solid rgba(5, 5, 5, .2);
}

.about-card {
  min-height: 312px;
  padding: clamp(26px, 3.1vw, 46px);
  border-right: 1px solid rgba(5, 5, 5, .2);
  border-bottom: 1px solid rgba(5, 5, 5, .2);
  background: rgba(255, 255, 255, .26);
  backdrop-filter: blur(6px);
  transition: transform .26s ease, background .26s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .44);
}

.about-card span {
  display: block;
  margin-bottom: clamp(40px, 5vw, 74px);
  color: rgba(5, 5, 5, .48);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .13em;
}

.about-card h3 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(26px, 2.95vw, 42px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.about-card p {
  margin: 24px 0 0;
  max-width: 620px;
  color: rgba(5, 5, 5, .67);
  font-size: clamp(14px, 1.04vw, 17px);
  line-height: 1.38;
  letter-spacing: .025em;
  text-transform: none;
}

.about-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  position: relative;
  padding: 18px 0 18px 38px;
  border-top: 1px solid rgba(5, 5, 5, .15);
  color: rgba(5, 5, 5, .78);
  font-size: clamp(16px, 1.34vw, 22px);
  line-height: 1.15;
  letter-spacing: -.012em;
  text-transform: none;
}

.about-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 16px;
  height: 1px;
  background: #050505;
}

.about-card li:first-child::before {
  top: 7px;
}

.structure-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(96px, 10vw, 136px);
  color: var(--beige);
  background:
    radial-gradient(circle at 80% 12%, rgba(211, 194, 165, .17), transparent 28vw),
    linear-gradient(90deg, rgba(229, 221, 207, .08) 1px, transparent 1px),
    linear-gradient(180deg, #061f1a 0%, #082a23 48%, #041613 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(229, 221, 207, .18);
  overflow: hidden;
}

.structure-section::before {
  content: "STRUCTURE";
  position: absolute;
  left: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(229, 221, 207, .055);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  font-weight: 500;
  letter-spacing: -.05em;
  pointer-events: none;
}

.structure-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.035), transparent 22%, rgba(0,0,0,.14));
  pointer-events: none;
}

.structure-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.section-kicker--light {
  color: rgba(229, 221, 207, .64);
  font-weight: 300;
}

.section-kicker--light::before {
  background: rgba(229, 221, 207, .34);
}

.structure-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .58fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 108px);
}

.structure-section h2 {
  margin: 0;
  max-width: 860px;
  color: #f7f1e6;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.structure-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 221, 207, .26);
  color: rgba(247, 246, 241, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.36;
  letter-spacing: .015em;
  text-transform: none;
}

.structure-section__layout {
  display: grid;
  grid-template-columns: minmax(240px, .52fr) minmax(0, 1.48fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.structure-section__core {
  position: relative;
  min-height: 560px;
  padding: clamp(22px, 2.4vw, 34px);
  display: block;
  border: 1px solid rgba(229, 221, 207, .24);
  background:
    linear-gradient(180deg, rgba(211, 194, 165, .16), rgba(211, 194, 165, .04)),
    rgba(255, 255, 255, .03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.structure-section__core span {
  position: absolute;
  left: 50%;
  top: clamp(18px, 2.2vw, 30px);
  transform: translateX(-50%);
  display: block;
  max-width: calc(100% - clamp(28px, 3.2vw, 44px));
  color: #d3c2a5;
  font-size: clamp(72px, 8vw, 128px);
  line-height: .82;
  letter-spacing: -.05em;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

.structure-section__core small {
  position: absolute;
  left: clamp(14px, 1.6vw, 22px);
  bottom: clamp(18px, 2.2vw, 28px);
  display: block;
  max-width: 180px;
  color: rgba(247, 246, 241, .58);
  font-size: 11px;
  line-height: 1.22;
  letter-spacing: .12em;
  font-weight: 300;
}

.structure-section__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(229, 221, 207, .22);
  border-left: 1px solid rgba(229, 221, 207, .22);
}

.structure-card {
  position: relative;
  min-height: 280px;
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(229, 221, 207, .22);
  border-bottom: 1px solid rgba(229, 221, 207, .22);
  background: rgba(255, 255, 255, .035);
  overflow: hidden;
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

.structure-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #d3c2a5;
  transition: width .36s ease;
}

.structure-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .065);
  border-color: rgba(229, 221, 207, .36);
}

.structure-card:hover::before {
  width: 100%;
}

.structure-card--accent {
  background: rgba(211, 194, 165, .105);
}

.structure-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(34px, 4vw, 62px);
  color: rgba(229, 221, 207, .58);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  font-weight: 300;
}

.structure-card__top span,
.structure-card__top b {
  font-weight: 300;
}

.structure-card h3 {
  margin: 0;
  max-width: 460px;
  color: #f7f1e6;
  font-size: clamp(28px, 2.85vw, 42px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.structure-card p {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(247, 246, 241, .66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.38;
  letter-spacing: .02em;
  text-transform: none;
}

.structure-card em {
  margin-top: auto;
  padding-top: 28px;
  color: rgba(211, 194, 165, .74);
  font-size: clamp(13px, .96vw, 15px);
  line-height: 1.28;
  font-style: normal;
  letter-spacing: .01em;
  text-transform: none;
}

.next-section-placeholder {
  min-height: 42vh;
  background: #f7f6f1;
}


body.js-enabled .about-section::before {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
}

body.js-enabled .about-section::after {
  transform: scaleX(.16);
  transform-origin: left center;
}

body.js-enabled .about-section .section-kicker,
body.js-enabled .about-section__title,
body.js-enabled .about-section__lead,
body.js-enabled .about-section .about-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.about-section::before,
.about-section::after,
.about-section .section-kicker,
.about-section__title,
.about-section__lead,
.about-section .about-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.about-section::after {
  transition-property: transform, opacity;
  transition-duration: 1.05s;
}

body.js-enabled .about-section.is-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: .06s;
}

body.js-enabled .about-section.is-visible::after {
  transform: scaleX(1);
  transition-delay: .2s;
}

body.js-enabled .about-section.is-visible .section-kicker,
body.js-enabled .about-section.is-visible .about-section__title,
body.js-enabled .about-section.is-visible .about-section__lead,
body.js-enabled .about-section.is-visible .about-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .about-section.is-visible .section-kicker {
  transition-delay: .08s;
}

body.js-enabled .about-section.is-visible .about-section__title {
  transition-delay: .16s;
}

body.js-enabled .about-section.is-visible .about-section__lead {
  transition-delay: .28s;
}

body.js-enabled .about-section.is-visible .about-card:nth-child(1) {
  transition-delay: .34s;
}

body.js-enabled .about-section.is-visible .about-card:nth-child(2) {
  transition-delay: .46s;
}

body.js-enabled .about-section.is-visible .about-card:nth-child(3) {
  transition-delay: .58s;
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .about-section::before,
  body.js-enabled .about-section::after,
  body.js-enabled .about-section .section-kicker,
  body.js-enabled .about-section__title,
  body.js-enabled .about-section__lead,
  body.js-enabled .about-section .about-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}


body.js-enabled .structure-section::before,
body.js-enabled .structure-section .section-kicker,
body.js-enabled .structure-section__title,
body.js-enabled .structure-section__head p,
body.js-enabled .structure-section__core,
body.js-enabled .structure-section .structure-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.structure-section::before,
.structure-section .section-kicker,
.structure-section__title,
.structure-section__head p,
.structure-section__core,
.structure-section .structure-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .structure-section.is-visible::before,
body.js-enabled .structure-section.is-visible .section-kicker,
body.js-enabled .structure-section.is-visible .structure-section__title,
body.js-enabled .structure-section.is-visible .structure-section__head p,
body.js-enabled .structure-section.is-visible .structure-section__core,
body.js-enabled .structure-section.is-visible .structure-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .structure-section.is-visible::before {
  transition-delay: .05s;
}

body.js-enabled .structure-section.is-visible .section-kicker {
  transition-delay: .08s;
}

body.js-enabled .structure-section.is-visible .structure-section__title {
  transition-delay: .16s;
}

body.js-enabled .structure-section.is-visible .structure-section__head p {
  transition-delay: .28s;
}

body.js-enabled .structure-section.is-visible .structure-section__core {
  transition-delay: .34s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(1) {
  transition-delay: .42s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(2) {
  transition-delay: .52s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(3) {
  transition-delay: .62s;
}

body.js-enabled .structure-section.is-visible .structure-card:nth-child(4) {
  transition-delay: .72s;
}

@media (prefers-reduced-motion: reduce) {
  body.js-enabled .structure-section::before,
  body.js-enabled .structure-section .section-kicker,
  body.js-enabled .structure-section__title,
  body.js-enabled .structure-section__head p,
  body.js-enabled .structure-section__core,
  body.js-enabled .structure-section .structure-card {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

body.nav-open .site-header {
  --header-color: #050505;
  --header-line: rgba(0, 0, 0, .16);
  --header-bg: rgba(211, 194, 165, .92);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  backdrop-filter: blur(18px) saturate(1.05);
}

body.nav-open .brand__logo {
  filter: none;
}

body.nav-open .burger {
  border-color: rgba(0, 0, 0, .72);
}

@media (max-width: 1360px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 120px minmax(0, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (max-width: 920px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
    grid-template-columns: 100px 1fr auto;
  }

  .brand__logo {
    width: 86px;
  }

  .header-cta {
    display: none;
  }

  .preloader__bottom {
    left: 20px;
    right: 20px;
    bottom: 42px;
  }

  .preloader__inner {
    width: min(260px, calc(100vw - 40px));
  }

  .preloader__logo {
    width: 190px;
  }

  .hero {
    height: 178vh;
  }

  .hero__sticky {
    min-height: 610px;
  }

  .hero__image {
    background-position: 42% center;
    transform: scale(1.04);
  }

  .hero__shade {
    background: rgba(0, 0, 0, .48);
  }

  .hero__content {
    left: 20px;
    right: 20px;
    bottom: 52px;
    width: auto;
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.3;
    max-width: 300px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: .98;
    max-width: calc(100vw - 40px);
    letter-spacing: -.03em;
    font-weight: 500;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero__buttons {
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 11px;
  }

  .hero__meta {
    display: none;
  }

  .intro-card__plate-wrap {
    height: clamp(360px, 52vh, 430px);
  }

  .intro-card__scroll {
    display: flex;
    right: 20px;
    top: calc(clamp(360px, 52vh, 430px) - 44px);
    gap: 10px;
    font-size: 9px;
    letter-spacing: .1em;
  }

  .intro-card__scroll span {
    width: 48px;
  }

  .header-actions {
    justify-self: end;
    margin-left: auto;
  }

  .mobile-menu {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 420px) {
  .intro-card__plate-wrap {
    height: 340px;
  }

  .intro-card__scroll {
    top: 296px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.8vw, 36px);
    max-width: calc(100vw - 40px);
  }
}


/* v11 mobile typography safety */
@media (max-width: 760px) {
  .hero__content, .hero h1, .hero__eyebrow, .hero__buttons {
    max-width: calc(100vw - 40px);
  }

  .hero h1 {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .about-section__head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-section__lead {
    max-width: 720px;
  }

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

  .about-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .about-section {
    padding: 86px 20px 76px;
    background-size: 50vw 100%, 100% 100%;
  }

  .about-section::before {
    right: 12px;
    top: 76px;
    font-size: 88px;
    opacity: .72;
  }

  .about-section::after {
    left: 20px;
    right: 20px;
  }

  .section-kicker {
    gap: 12px;
    margin-bottom: 34px;
    font-size: 10px;
  }

  .section-kicker::before {
    width: 42px;
  }

  .about-section h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
    font-weight: 500;
  }

  .about-section__head {
    gap: 28px;
    margin-bottom: 46px;
  }

  .about-section__lead {
    padding-top: 24px;
  }

  .about-section__lead p {
    font-size: 15px;
    line-height: 1.42;
  }

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

  .about-card {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .about-card:hover {
    transform: none;
  }

  .about-card span {
    margin-bottom: 34px;
  }

  .about-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
    font-weight: 500;
  }

  .about-card p {
    font-size: 14px;
    line-height: 1.44;
  }

  .about-card li {
    padding-left: 30px;
    font-size: 17px;
  }

  .next-section-placeholder {
    min-height: 24vh;
  }
}


@media (max-width: 1180px) {
  .structure-section__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .structure-section__head p {
    max-width: 720px;
  }

  .structure-section__layout {
    grid-template-columns: 1fr;
  }

  .structure-section__core {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .structure-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .structure-section::before {
    left: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .structure-section h2 {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
    font-weight: 500;
  }

  .structure-section__head {
    gap: 28px;
    margin-bottom: 46px;
  }

  .structure-section__head p {
    font-size: 15px;
    line-height: 1.42;
  }

  .structure-section__core {
    min-height: 220px;
    padding: 22px 16px;
  }

  .structure-section__core span {
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    max-width: calc(100% - 24px);
    font-size: clamp(56px, 20vw, 84px);
    line-height: .84;
    letter-spacing: -.04em;
    text-align: center;
  }

  .structure-section__cards {
    grid-template-columns: 1fr;
  }

  .structure-card {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .structure-card:hover {
    transform: none;
  }

  .structure-card__top {
    margin-bottom: 34px;
  }

  .structure-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
    font-weight: 500;
  }

  .structure-card p,
  .structure-card em {
    font-size: 14px;
    line-height: 1.44;
  }
}


/* global heading weight normalization to match block 3 */
.hero h1,
.about-section h2,
.about-card h3,
.structure-section h2,
.structure-card h3 {
  font-weight: 500;
}

@media (max-width: 760px) {
  .structure-section__core small {
    left: 12px;
    bottom: 16px;
  }
}


/* v28 mobile fix for AOPF plaque in structure block */
@media (max-width: 760px) {
  .structure-section__core span {
    left: 16px;
    top: 18px;
    transform: none;
    max-width: calc(100% - 32px);
    text-align: left;
  }

  .structure-section__core small {
    left: 16px;
    bottom: 16px;
  }
}

/* v28 members block */
.members-section {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 18%, rgba(7, 67, 55, .08), transparent 26vw),
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f5f1e8 0%, #ebe2d1 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  color: #050505;
  padding: clamp(96px, 11vw, 150px) 4.2vw clamp(88px, 10vw, 132px);
  border-top: 1px solid rgba(5, 5, 5, .12);
  overflow: hidden;
}

.members-section::before {
  content: "MEMBERS";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(7, 67, 55, .08);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.members-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.members-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
  margin-bottom: clamp(56px, 7.6vw, 104px);
}

.members-section__title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.members-section__lead {
  padding-top: .75vw;
  border-top: 1px solid rgba(5, 5, 5, .16);
}

.members-section__lead p {
  margin: 0;
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  color: rgba(5, 5, 5, .72);
  text-transform: none;
}

.members-section__lead p + p {
  margin-top: 20px;
}

.members-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-tile {
  position: relative;
  min-height: 174px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .44);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
}

.member-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(7, 67, 55, .26);
  box-shadow: 0 18px 34px rgba(5, 5, 5, .06);
}

.member-tile.is-active {
  background: rgba(7, 67, 55, .94);
  border-color: rgba(7, 67, 55, .94);
  color: #f7f6f1;
  box-shadow: 0 22px 48px rgba(7, 67, 55, .18);
}

.member-tile--wide {
  grid-column: 1 / -1;
}

.member-tile__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  width: auto;
  height: 62px;
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(211, 194, 165, .22);
  color: #074337;
  padding: 0 14px;
  font-size: 15px;
  letter-spacing: .02em;
  font-weight: 500;
}

.member-tile.is-active .member-tile__mark {
  border-color: rgba(247, 246, 241, .18);
  background: rgba(229, 221, 207, .14);
  color: #f7f6f1;
}

.member-tile__name {
  display: block;
  font-size: clamp(25px, 2vw, 34px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
  text-align: left;
}

.member-detail {
  min-height: 100%;
  padding: clamp(26px, 3.1vw, 40px);
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .52);
  display: flex;
  flex-direction: column;
}

.member-detail__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: clamp(26px, 3vw, 42px);
  padding: 10px 14px;
  border: 1px solid rgba(7, 67, 55, .18);
  background: rgba(7, 67, 55, .06);
  color: #074337;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
}

.member-detail h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.member-detail__description {
  margin: 22px 0 0;
  max-width: 560px;
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.42;
  letter-spacing: .016em;
  text-transform: none;
}

.member-detail__meta {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.member-detail__item {
  padding: 18px 0 0;
  border-top: 1px solid rgba(5, 5, 5, .12);
}

.member-detail__item small {
  display: block;
  margin-bottom: 10px;
  color: rgba(5, 5, 5, .46);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

.member-detail__item strong {
  display: block;
  max-width: 520px;
  color: #050505;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.38;
  letter-spacing: .012em;
  font-weight: 500;
  text-transform: none;
}

.member-detail__link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(7, 67, 55, .22);
  background: #074337;
  color: #f7f6f1;
  text-decoration: none;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.member-detail__link[hidden] {
  display: none;
}

.member-detail__footer {
  margin-top: auto;
  padding-top: 32px;
}

.member-detail__footer span {
  display: block;
  color: rgba(7, 67, 55, .8);
  font-size: 13px;
  line-height: 1.34;
  letter-spacing: .01em;
  text-transform: none;
}

body.js-enabled .members-section::before,
body.js-enabled .members-section .section-kicker,
body.js-enabled .members-section__title,
body.js-enabled .members-section__lead,
body.js-enabled .members-section .member-tile,
body.js-enabled .members-section .member-detail {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.members-section::before,
.members-section .section-kicker,
.members-section__title,
.members-section__lead,
.members-section .member-tile,
.members-section .member-detail {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .members-section.is-visible::before,
body.js-enabled .members-section.is-visible .section-kicker,
body.js-enabled .members-section.is-visible .members-section__title,
body.js-enabled .members-section.is-visible .members-section__lead,
body.js-enabled .members-section.is-visible .member-tile,
body.js-enabled .members-section.is-visible .member-detail {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .members-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .members-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .members-section.is-visible .members-section__title { transition-delay: .16s; }
body.js-enabled .members-section.is-visible .members-section__lead { transition-delay: .26s; }
body.js-enabled .members-section.is-visible .member-tile:nth-child(1) { transition-delay: .34s; }
body.js-enabled .members-section.is-visible .member-tile:nth-child(2) { transition-delay: .42s; }
body.js-enabled .members-section.is-visible .member-tile:nth-child(3) { transition-delay: .5s; }
body.js-enabled .members-section.is-visible .member-tile:nth-child(4) { transition-delay: .58s; }
body.js-enabled .members-section.is-visible .member-tile:nth-child(5) { transition-delay: .66s; }
body.js-enabled .members-section.is-visible .member-detail { transition-delay: .4s; }

@media (max-width: 1180px) {
  .members-section__head,
  .members-section__layout {
    grid-template-columns: 1fr;
  }

  .member-detail {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .members-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .members-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .members-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .members-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .members-section__lead p {
    font-size: 15px;
    line-height: 1.42;
  }

  .members-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .member-tile,
  .member-tile--wide {
    grid-column: auto;
    min-height: 150px;
    padding: 18px 18px 16px;
  }

  .member-tile__mark {
    min-width: 82px;
    width: auto;
    height: 54px;
    padding: 0 12px;
    font-size: 14px;
  }

  .member-tile__name {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .member-detail {
    padding: 24px 20px;
  }

  .member-detail h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .member-detail__description,
  .member-detail__item strong,
  .member-detail__footer span {
    font-size: 14px;
    line-height: 1.44;
  }
}


/* v30 launch text cleanup for members block */
.member-tile__mark {
  text-transform: uppercase;
}

.member-detail__description,
.member-detail__item strong,
.member-detail__footer span {
  text-transform: none;
}


/* v31 directions block */
.section-kicker--emerald {
  color: rgba(7, 67, 55, .66);
}

.section-kicker--emerald::before {
  background: rgba(7, 67, 55, .28);
}

.directions-section {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 22%, rgba(211, 194, 165, .2), transparent 24vw),
    linear-gradient(90deg, rgba(5, 5, 5, .052) 1px, transparent 1px),
    linear-gradient(180deg, #f7f6f1 0%, #eee7da 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  color: #050505;
  padding: clamp(96px, 11vw, 150px) 4.2vw clamp(88px, 10vw, 132px);
  border-top: 1px solid rgba(5, 5, 5, .12);
  overflow: hidden;
}

.directions-section::before {
  content: "DIRECTIONS";
  position: absolute;
  left: 4.2vw;
  bottom: clamp(18px, 2.7vw, 34px);
  color: rgba(7, 67, 55, .07);
  font-size: clamp(62px, 9vw, 142px);
  line-height: .78;
  letter-spacing: -.052em;
  font-weight: 500;
  pointer-events: none;
}

.directions-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.directions-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .66fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
  margin-bottom: clamp(56px, 7.6vw, 104px);
}

.directions-section__title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.directions-section__lead {
  padding-top: .75vw;
  border-top: 1px solid rgba(7, 67, 55, .2);
}

.directions-section__lead p {
  margin: 0;
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.directions-section__lead p + p {
  margin-top: 20px;
}

.directions-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 5, 5, .16);
  border-left: 1px solid rgba(5, 5, 5, .16);
}

.direction-card {
  position: relative;
  min-height: 640px;
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(5, 5, 5, .16);
  border-bottom: 1px solid rgba(5, 5, 5, .16);
  background: rgba(255, 255, 255, .34);
  overflow: hidden;
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.direction-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .54);
  box-shadow: 0 22px 46px rgba(5, 5, 5, .07);
}

.direction-card--primary {
  background: rgba(7, 67, 55, .94);
  color: #f7f6f1;
}

.direction-card--primary:hover {
  background: rgba(7, 67, 55, .98);
}

.direction-card--quiet {
  background: rgba(211, 194, 165, .18);
}

.direction-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(38px, 4.2vw, 72px);
  color: rgba(5, 5, 5, .48);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  font-weight: 300;
}

.direction-card--primary .direction-card__top {
  color: rgba(247, 246, 241, .58);
}

.direction-card__top span,
.direction-card__top b {
  font-weight: 300;
}

.direction-card h3 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(25px, 2.35vw, 36px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.direction-card p {
  margin: 22px 0 0;
  max-width: 390px;
  color: rgba(5, 5, 5, .68);
  font-size: clamp(14px, .96vw, 16px);
  line-height: 1.4;
  letter-spacing: .015em;
  text-transform: none;
}

.direction-card--primary p {
  color: rgba(247, 246, 241, .7);
}

.direction-card ul {
  margin: auto 0 0;
  padding: 32px 0 0;
  list-style: none;
}

.direction-card li {
  padding: 16px 0;
  border-top: 1px solid rgba(5, 5, 5, .13);
}

.direction-card--primary li {
  border-top-color: rgba(247, 246, 241, .18);
}

.direction-card li strong {
  display: block;
  margin-bottom: 7px;
  color: #074337;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 500;
  text-transform: none;
}

.direction-card--primary li strong {
  color: #d3c2a5;
}

.direction-card li span {
  display: block;
  color: rgba(5, 5, 5, .64);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.35;
  letter-spacing: .01em;
  text-transform: none;
}

.direction-card--primary li span {
  color: rgba(247, 246, 241, .64);
}

body.js-enabled .directions-section::before,
body.js-enabled .directions-section .section-kicker,
body.js-enabled .directions-section__title,
body.js-enabled .directions-section__lead,
body.js-enabled .directions-section .direction-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.directions-section::before,
.directions-section .section-kicker,
.directions-section__title,
.directions-section__lead,
.directions-section .direction-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .directions-section.is-visible::before,
body.js-enabled .directions-section.is-visible .section-kicker,
body.js-enabled .directions-section.is-visible .directions-section__title,
body.js-enabled .directions-section.is-visible .directions-section__lead,
body.js-enabled .directions-section.is-visible .direction-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .directions-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .directions-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .directions-section.is-visible .directions-section__title { transition-delay: .16s; }
body.js-enabled .directions-section.is-visible .directions-section__lead { transition-delay: .26s; }
body.js-enabled .directions-section.is-visible .direction-card:nth-child(1) { transition-delay: .34s; }
body.js-enabled .directions-section.is-visible .direction-card:nth-child(2) { transition-delay: .44s; }
body.js-enabled .directions-section.is-visible .direction-card:nth-child(3) { transition-delay: .54s; }
body.js-enabled .directions-section.is-visible .direction-card:nth-child(4) { transition-delay: .64s; }

@media (max-width: 1280px) {
  .directions-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .direction-card {
    min-height: 520px;
  }
}

@media (max-width: 1180px) {
  .directions-section__head {
    grid-template-columns: 1fr;
  }

  .directions-section__lead {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .directions-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .directions-section::before {
    left: 20px;
    bottom: 14px;
    font-size: 48px;
  }

  .directions-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .directions-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .directions-section__lead p {
    font-size: 15px;
    line-height: 1.42;
  }

  .directions-board {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .direction-card:hover {
    transform: none;
  }

  .direction-card__top {
    margin-bottom: 34px;
  }

  .direction-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .direction-card p,
  .direction-card li span {
    font-size: 14px;
    line-height: 1.44;
  }

  .direction-card ul {
    padding-top: 26px;
    margin-top: 24px;
  }
}


/* v36 projects block - alternative timeline variation */
.projects-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(96px, 10vw, 136px);
  color: var(--beige);
  background:
    radial-gradient(circle at 18% 14%, rgba(211, 194, 165, .12), transparent 24vw),
    radial-gradient(circle at 84% 78%, rgba(211, 194, 165, .08), transparent 28vw),
    linear-gradient(90deg, rgba(229, 221, 207, .075) 1px, transparent 1px),
    linear-gradient(180deg, #062821 0%, #083f35 56%, #041a16 100%);
  background-size: 100% 100%, 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(229, 221, 207, .18);
  overflow: hidden;
}

.projects-section::before {
  content: "PROJECTS";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(229, 221, 207, .055);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.projects-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 22%, rgba(0,0,0,.13));
  pointer-events: none;
}

.projects-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.projects-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 100px);
}

.projects-section__title {
  margin: 0;
  max-width: 860px;
  color: #f7f1e6;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.projects-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 221, 207, .26);
  color: rgba(247, 246, 241, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.projects-flow {
  display: grid;
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.projects-intro-panel {
  position: sticky;
  top: 110px;
  min-height: 520px;
  padding: clamp(28px, 3.1vw, 44px);
  border: 1px solid rgba(229, 221, 207, .22);
  background:
    linear-gradient(180deg, rgba(211, 194, 165, .18), rgba(211, 194, 165, .04)),
    rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
}

.projects-intro-panel__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .2);
  color: rgba(247, 246, 241, .7);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.projects-intro-panel strong {
  display: block;
  margin-top: auto;
  color: #d3c2a5;
  font-size: clamp(92px, 9vw, 148px);
  line-height: .82;
  letter-spacing: -.06em;
  font-weight: 500;
}

.projects-intro-panel h3 {
  margin: 18px 0 0;
  max-width: 360px;
  color: #f7f1e6;
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.projects-intro-panel p {
  margin: 20px 0 0;
  max-width: 380px;
  color: rgba(247, 246, 241, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.projects-timeline {
  position: relative;
  display: grid;
  gap: clamp(64px, 9vh, 118px);
  padding-bottom: clamp(140px, 13vw, 220px);
}

.projects-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: clamp(110px, 10vw, 180px);
  width: 1px;
  background: rgba(229, 221, 207, .16);
}

.project-entry {
  --stack-offset: 0px;
  position: sticky;
  top: calc(clamp(108px, 11vh, 128px) + var(--stack-offset));
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.project-entry + .project-entry {
  margin-top: 0;
}

.project-entry:nth-child(1) { --stack-offset: 0px; z-index: 1; }
.project-entry:nth-child(2) { --stack-offset: 18px; z-index: 2; }
.project-entry:nth-child(3) { --stack-offset: 36px; z-index: 3; }
.project-entry:nth-child(4) { --stack-offset: 54px; z-index: 4; }
.project-entry:nth-child(5) { --stack-offset: 72px; z-index: 5; }

.project-entry__index {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
  color: rgba(247, 246, 241, .9);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.project-entry__index::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #d3c2a5;
  box-shadow: 0 0 0 8px rgba(211, 194, 165, .12);
}

.project-entry__body {
  min-height: 220px;
  padding: 28px 30px 32px;
  border: 1px solid rgba(229, 221, 207, .22);
  background: rgba(255,255,255,.035);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
  backdrop-filter: blur(4px);
}

.project-entry__tag {
  display: inline-block;
  margin-bottom: 22px;
  color: rgba(229, 221, 207, .58);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  font-weight: 300;
}

.project-entry h3 {
  margin: 0;
  max-width: 620px;
  color: #f7f1e6;
  font-size: clamp(28px, 2.65vw, 40px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.project-entry p {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(247, 246, 241, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.project-entry:hover .project-entry__body {
  transform: translateX(6px);
  background: rgba(255,255,255,.055);
  border-color: rgba(229, 221, 207, .34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.project-entry--featured .project-entry__body {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(211, 194, 165, .13), rgba(211, 194, 165, .03)),
    rgba(255,255,255,.04);
}

.project-entry--featured .project-entry__index::before {
  width: 14px;
  height: 14px;
}

body.js-enabled .projects-section::before,
body.js-enabled .projects-section .section-kicker,
body.js-enabled .projects-section__title,
body.js-enabled .projects-section__head p,
body.js-enabled .projects-section .projects-intro-panel,
body.js-enabled .projects-section .project-entry {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.projects-section::before,
.projects-section .section-kicker,
.projects-section__title,
.projects-section__head p,
.projects-section .projects-intro-panel,
.projects-section .project-entry {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .projects-section.is-visible::before,
body.js-enabled .projects-section.is-visible .section-kicker,
body.js-enabled .projects-section.is-visible .projects-section__title,
body.js-enabled .projects-section.is-visible .projects-section__head p,
body.js-enabled .projects-section.is-visible .projects-intro-panel,
body.js-enabled .projects-section.is-visible .project-entry {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .projects-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .projects-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .projects-section.is-visible .projects-section__title { transition-delay: .16s; }
body.js-enabled .projects-section.is-visible .projects-section__head p { transition-delay: .26s; }
body.js-enabled .projects-section.is-visible .projects-intro-panel { transition-delay: .34s; }
body.js-enabled .projects-section.is-visible .project-entry:nth-child(1) { transition-delay: .42s; }
body.js-enabled .projects-section.is-visible .project-entry:nth-child(2) { transition-delay: .5s; }
body.js-enabled .projects-section.is-visible .project-entry:nth-child(3) { transition-delay: .58s; }
body.js-enabled .projects-section.is-visible .project-entry:nth-child(4) { transition-delay: .66s; }
body.js-enabled .projects-section.is-visible .project-entry:nth-child(5) { transition-delay: .74s; }

@media (max-width: 1180px) {
  .projects-section__head,
  .projects-flow {
    grid-template-columns: 1fr;
  }

  .projects-intro-panel {
    position: sticky;
    top: 98px;
    min-height: 0;
  }

  .projects-intro-panel strong {
    margin-top: 48px;
  }
}

@media (max-width: 760px) {
  .projects-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 100% 100%, 50vw 100%, 100% 100%;
  }

  .projects-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .projects-section__head {
    gap: 28px;
    margin-bottom: 46px;
  }

  .projects-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .projects-section__head p {
    font-size: 15px;
    line-height: 1.42;
  }

  .projects-intro-panel {
    position: relative;
    top: 0;
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .projects-intro-panel strong {
    margin-top: 42px;
    font-size: clamp(74px, 22vw, 112px);
  }

  .projects-intro-panel h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .projects-intro-panel p {
    font-size: 14px;
    line-height: 1.44;
  }

  .projects-timeline {
    display: grid;
    gap: 14px;
    padding-bottom: 0;
  }

  .projects-timeline::before {
    left: 24px;
    bottom: 0;
  }

  .project-entry {
    position: relative;
    top: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    margin-top: 0;
  }

  .project-entry + .project-entry {
    margin-top: 0;
  }

  .project-entry:nth-child(1),
  .project-entry:nth-child(2),
  .project-entry:nth-child(3),
  .project-entry:nth-child(4),
  .project-entry:nth-child(5) {
    --stack-offset: 0px;
  }

  .project-entry__index {
    padding-top: 26px;
    font-size: 11px;
  }

  .project-entry__index::before {
    top: 26px;
    width: 10px;
    height: 10px;
  }

  .project-entry__body {
    min-height: 0;
    padding: 24px 20px 26px;
  }

  .project-entry__tag {
    margin-bottom: 18px;
  }

  .project-entry h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .project-entry p {
    font-size: 14px;
    line-height: 1.44;
  }

  .project-entry:hover .project-entry__body {
    transform: none;
  }
}


/* v39: simple timeline with sticky left panel */
.projects-timeline {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  padding-bottom: 0;
}

.projects-timeline::before {
  bottom: 0;
}

.project-entry {
  position: relative;
  top: auto;
  z-index: auto;
}

.project-entry + .project-entry {
  margin-top: 0;
}

.project-entry:nth-child(1),
.project-entry:nth-child(2),
.project-entry:nth-child(3),
.project-entry:nth-child(4),
.project-entry:nth-child(5) {
  --stack-offset: 0px;
  z-index: auto;
}

.project-entry__index {
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.project-entry__body {
  box-shadow: none;
}

@media (max-width: 760px) {
  .project-entry__index {
    font-size: 0;
  }
}


/* v40: fixed sticky behavior for projects block */
.projects-section {
  overflow: visible !important;
}

.projects-flow {
  align-items: flex-start !important;
}

.projects-intro-panel {
  position: sticky !important;
  top: 112px !important;
  align-self: flex-start !important;
  z-index: 3;
  max-height: calc(100vh - 132px);
  overflow: hidden;
}

.projects-timeline {
  display: grid !important;
  gap: clamp(18px, 2vw, 26px) !important;
  padding-bottom: 0 !important;
}

.project-entry {
  position: relative !important;
  top: auto !important;
  z-index: auto !important;
  margin-top: 0 !important;
}

.project-entry + .project-entry {
  margin-top: 0 !important;
}

.project-entry:nth-child(1),
.project-entry:nth-child(2),
.project-entry:nth-child(3),
.project-entry:nth-child(4),
.project-entry:nth-child(5) {
  --stack-offset: 0px !important;
  z-index: auto !important;
}

.project-entry__index {
  color: transparent !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
}

.project-entry__index::before {
  display: block;
}

@media (max-width: 760px) {
  .projects-section {
    overflow: hidden !important;
  }

  .projects-intro-panel {
    position: relative !important;
    top: 0 !important;
    max-height: none;
    overflow: visible;
  }

  .project-entry {
    position: relative !important;
    top: auto !important;
  }
}


/* v41: lower intro content a bit, remove "Пять", widen mobile layout */
@media (min-width: 761px) {
  .projects-intro-panel strong,
  .projects-intro-panel h3,
  .projects-intro-panel p {
    position: relative;
    top: 14px;
  }

  .projects-intro-panel {
    padding-bottom: clamp(36px, 3.2vw, 48px);
  }
}

@media (max-width: 760px) {
  .projects-flow {
    gap: 18px !important;
  }

  .projects-intro-panel {
    padding: 24px 20px 26px !important;
  }

  .projects-timeline::before {
    left: 16px !important;
  }

  .project-entry {
    grid-template-columns: 32px minmax(0, 1fr) !important;
  }

  .project-entry__index {
    padding-top: 24px !important;
  }

  .project-entry__index::before {
    top: 24px !important;
    width: 10px;
    height: 10px;
  }

  .project-entry__body {
    padding: 24px 18px 26px !important;
  }
}


/* v43: balanced mobile timeline alignment */
@media (max-width: 760px) {
  .projects-timeline {
    position: relative;
    overflow: visible;
  }

  .projects-timeline::before {
    left: 8px !important;
  }

  .project-entry,
  .project-entry__index {
    overflow: visible;
  }

  .project-entry__index::before {
    left: 8px !important;
    transform: translateX(-50%) !important;
  }
}


/* v44 events block */
.events-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.4vw, 144px) 4.2vw clamp(92px, 9.4vw, 128px);
  color: #050505;
  background:
    radial-gradient(circle at 82% 18%, rgba(7, 67, 55, .08), transparent 26vw),
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f7f4ec 0%, #ebe2d1 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(5, 5, 5, .12);
  overflow: hidden;
}

.events-section::before {
  content: "EVENTS";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(7, 67, 55, .08);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.events-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.events-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.4vw, 96px);
}

.events-section__title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.events-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, .16);
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.events-board {
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(0, 1.12fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.events-calendar {
  min-height: 560px;
  padding: clamp(28px, 3.1vw, 44px);
  border: 1px solid rgba(5, 5, 5, .14);
  background:
    linear-gradient(180deg, rgba(7, 67, 55, .96), rgba(5, 38, 32, .96));
  color: #f7f6f1;
  display: flex;
  flex-direction: column;
}

.events-calendar__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .22);
  color: rgba(247, 246, 241, .7);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.events-calendar h3 {
  margin: auto 0 0;
  max-width: 460px;
  color: #f7f1e6;
  font-size: clamp(31px, 3vw, 48px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.events-calendar p {
  margin: 22px 0 0;
  max-width: 480px;
  color: rgba(247, 246, 241, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.events-calendar__list {
  margin-top: 34px;
  border-top: 1px solid rgba(229, 221, 207, .18);
}

.events-calendar__list div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(229, 221, 207, .14);
}

.events-calendar__list b {
  color: rgba(211, 194, 165, .9);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .12em;
  font-weight: 400;
}

.events-calendar__list span {
  color: rgba(247, 246, 241, .82);
  font-size: 14px;
  line-height: 1.32;
  letter-spacing: .02em;
}

.events-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 5, 5, .14);
  border-left: 1px solid rgba(5, 5, 5, .14);
}

.events-card {
  min-height: 280px;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid rgba(5, 5, 5, .14);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .38);
  display: flex;
  flex-direction: column;
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.events-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 34px rgba(5, 5, 5, .06);
}

.events-card--large {
  grid-column: 1 / -1;
  min-height: 310px;
}

.events-card--accent {
  background: rgba(211, 194, 165, .2);
}

.events-card span {
  display: block;
  margin-bottom: auto;
  color: rgba(7, 67, 55, .72);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 400;
}

.events-card h3 {
  margin: clamp(34px, 4vw, 58px) 0 0;
  max-width: 620px;
  color: #050505;
  font-size: clamp(28px, 2.85vw, 42px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.events-card p {
  margin: 20px 0 0;
  max-width: 620px;
  color: rgba(5, 5, 5, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

body.js-enabled .events-section::before,
body.js-enabled .events-section .section-kicker,
body.js-enabled .events-section__title,
body.js-enabled .events-section__head p,
body.js-enabled .events-section .events-calendar,
body.js-enabled .events-section .events-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.events-section::before,
.events-section .section-kicker,
.events-section__title,
.events-section__head p,
.events-section .events-calendar,
.events-section .events-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .events-section.is-visible::before,
body.js-enabled .events-section.is-visible .section-kicker,
body.js-enabled .events-section.is-visible .events-section__title,
body.js-enabled .events-section.is-visible .events-section__head p,
body.js-enabled .events-section.is-visible .events-calendar,
body.js-enabled .events-section.is-visible .events-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .events-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .events-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .events-section.is-visible .events-section__title { transition-delay: .16s; }
body.js-enabled .events-section.is-visible .events-section__head p { transition-delay: .26s; }
body.js-enabled .events-section.is-visible .events-calendar { transition-delay: .34s; }
body.js-enabled .events-section.is-visible .events-card:nth-child(1) { transition-delay: .42s; }
body.js-enabled .events-section.is-visible .events-card:nth-child(2) { transition-delay: .52s; }
body.js-enabled .events-section.is-visible .events-card:nth-child(3) { transition-delay: .62s; }

@media (max-width: 1180px) {
  .events-section__head,
  .events-board {
    grid-template-columns: 1fr;
  }

  .events-calendar {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .events-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .events-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .events-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .events-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .events-section__head p {
    font-size: 15px;
    line-height: 1.42;
  }

  .events-calendar {
    min-height: 0;
    padding: 24px 20px 26px;
  }

  .events-calendar h3 {
    margin-top: 54px;
    font-size: clamp(26px, 7.2vw, 34px);
    line-height: 1;
  }

  .events-calendar p,
  .events-card p {
    font-size: 14px;
    line-height: 1.44;
  }

  .events-content {
    grid-template-columns: 1fr;
  }

  .events-card,
  .events-card--large {
    min-height: 0;
    padding: 26px 20px 28px;
  }

  .events-card:hover {
    transform: none;
  }

  .events-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }
}


/* v45 events slider and admin-ready cards */
.events-board,
.events-calendar,
.events-content,
.events-card {
  display: none !important;
}

.events-module {
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .42);
}

.events-module__top {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
}

.events-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  border: 1px solid rgba(5, 5, 5, .14);
}

.events-tab {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid rgba(5, 5, 5, .14);
  background: transparent;
  color: rgba(5, 5, 5, .64);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.events-tab:last-child {
  border-right: 0;
}

.events-tab.is-active {
  background: #074337;
  color: #f7f6f1;
}

.events-slider-controls {
  display: flex;
  gap: 10px;
}

.events-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(5, 5, 5, .18);
  background: rgba(255, 255, 255, .38);
  color: #050505;
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, opacity .22s ease;
}

.events-arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(211, 194, 165, .34);
}

.events-arrow:disabled {
  opacity: .34;
  cursor: default;
}

.events-slider {
  overflow: hidden;
}

.events-track {
  display: grid;
  grid-template-columns: repeat(var(--events-per-view, 2), minmax(0, 1fr));
  min-height: 380px;
}

.event-slide-card {
  min-height: 380px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .28);
  display: flex;
  flex-direction: column;
}

.event-slide-card:nth-child(even) {
  background: rgba(211, 194, 165, .16);
}

.event-slide-card__date {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: auto;
  padding: 10px 14px;
  border: 1px solid rgba(7, 67, 55, .18);
  color: #074337;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.event-slide-card h3 {
  margin: clamp(54px, 5vw, 86px) 0 0;
  max-width: 620px;
  color: #050505;
  font-size: clamp(30px, 3vw, 46px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.event-slide-card p {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(5, 5, 5, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.events-empty {
  margin: 0;
  padding: 34px;
  color: rgba(5, 5, 5, .62);
  font-size: 15px;
  line-height: 1.4;
  text-transform: none;
}

body.js-enabled .events-section .events-module {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.events-section .events-module {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .events-section.is-visible .events-module {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  transition-delay: .34s;
}

@media (max-width: 760px) {
  .events-module__top {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
  }

  .events-tabs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .events-tab {
    min-height: 46px;
    padding: 0 12px;
    font-size: 11px;
  }

  .events-slider-controls {
    justify-content: space-between;
  }

  .events-arrow {
    width: calc(50% - 5px);
    height: 48px;
  }

  .events-track {
    min-height: 0;
  }

  .event-slide-card {
    min-height: 340px;
    padding: 26px 20px 28px;
  }

  .event-slide-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .event-slide-card p {
    font-size: 14px;
    line-height: 1.44;
  }
}


/* v46 join block */
.join-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(96px, 10vw, 136px);
  color: #050505;
  background:
    radial-gradient(circle at 82% 12%, rgba(7, 67, 55, .08), transparent 26vw),
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f6f2ea 0%, #e8ddca 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(5, 5, 5, .12);
  overflow: hidden;
}

.join-section::before {
  content: "JOIN";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(18px, 2.8vw, 38px);
  color: rgba(7, 67, 55, .08);
  font-size: clamp(72px, 11vw, 168px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.join-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.join-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 104px);
}

.join-section__title {
  margin: 0;
  max-width: 860px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.join-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, .16);
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.join-section__grid {
  display: grid;
  grid-template-columns: minmax(340px, .58fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.join-fees-card {
  min-height: 640px;
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid rgba(7, 67, 55, .28);
  background:
    linear-gradient(180deg, rgba(7, 67, 55, .94), rgba(5, 37, 31, .96)),
    #073a31;
  color: #f7f1e6;
  display: flex;
  flex-direction: column;
}

.join-fees-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .18);
  color: rgba(247, 246, 241, .72);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.join-fees-card h3 {
  margin: clamp(46px, 6vw, 84px) 0 0;
  max-width: 430px;
  font-size: clamp(31px, 3.2vw, 50px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.join-fees-card__prices {
  margin-top: auto;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(229, 221, 207, .2);
}

.join-fees-card__prices div {
  padding: 26px 0;
  border-bottom: 1px solid rgba(229, 221, 207, .2);
}

.join-fees-card__prices small {
  display: block;
  margin-bottom: 12px;
  color: rgba(247, 246, 241, .56);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
}

.join-fees-card__prices strong {
  display: block;
  color: #d3c2a5;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
}

.join-fees-card p {
  margin: 26px 0 0;
  color: rgba(247, 246, 241, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.join-cta {
  margin-top: 30px;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: #d3c2a5;
  color: #050505;
  border: 1px solid #d3c2a5;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .09em;
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.join-cta:hover {
  transform: translateY(-3px);
  background: transparent;
  color: #d3c2a5;
}

.join-info-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 2vw, 26px);
}

.join-requirements,
.join-step {
  border: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .42);
}

.join-requirements {
  padding: clamp(26px, 3.1vw, 42px);
}

.join-requirements > span {
  display: block;
  color: rgba(5, 5, 5, .46);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.join-requirements h3 {
  margin: 30px 0 0;
  max-width: 620px;
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.join-requirements ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.join-requirements li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid rgba(5, 5, 5, .12);
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.4;
  letter-spacing: .01em;
  text-transform: none;
}

.join-requirements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 12px;
  height: 1px;
  background: #074337;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
}

.join-step {
  min-height: 260px;
  padding: clamp(22px, 2.2vw, 32px);
  display: flex;
  flex-direction: column;
}

.join-step span {
  display: block;
  color: #074337;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.join-step h3 {
  margin: auto 0 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.join-step p {
  margin: 16px 0 0;
  color: rgba(5, 5, 5, .68);
  font-size: 14px;
  line-height: 1.38;
  letter-spacing: .01em;
  text-transform: none;
}

body.js-enabled .join-section::before,
body.js-enabled .join-section .section-kicker,
body.js-enabled .join-section__title,
body.js-enabled .join-section__head p,
body.js-enabled .join-section .join-fees-card,
body.js-enabled .join-section .join-requirements,
body.js-enabled .join-section .join-step {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.join-section::before,
.join-section .section-kicker,
.join-section__title,
.join-section__head p,
.join-section .join-fees-card,
.join-section .join-requirements,
.join-section .join-step {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .join-section.is-visible::before,
body.js-enabled .join-section.is-visible .section-kicker,
body.js-enabled .join-section.is-visible .join-section__title,
body.js-enabled .join-section.is-visible .join-section__head p,
body.js-enabled .join-section.is-visible .join-fees-card,
body.js-enabled .join-section.is-visible .join-requirements,
body.js-enabled .join-section.is-visible .join-step {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .join-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .join-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .join-section.is-visible .join-section__title { transition-delay: .16s; }
body.js-enabled .join-section.is-visible .join-section__head p { transition-delay: .26s; }
body.js-enabled .join-section.is-visible .join-fees-card { transition-delay: .34s; }
body.js-enabled .join-section.is-visible .join-requirements { transition-delay: .42s; }
body.js-enabled .join-section.is-visible .join-step:nth-child(1) { transition-delay: .5s; }
body.js-enabled .join-section.is-visible .join-step:nth-child(2) { transition-delay: .58s; }
body.js-enabled .join-section.is-visible .join-step:nth-child(3) { transition-delay: .66s; }

@media (max-width: 1180px) {
  .join-section__head,
  .join-section__grid {
    grid-template-columns: 1fr;
  }

  .join-fees-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .join-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .join-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 64px;
  }

  .join-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .join-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .join-section__head p,
  .join-requirements li {
    font-size: 15px;
    line-height: 1.42;
  }

  .join-fees-card,
  .join-requirements,
  .join-step {
    padding: 24px 20px 26px;
  }

  .join-fees-card h3,
  .join-requirements h3 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .join-fees-card__prices {
    margin-top: 42px;
  }

  .join-fees-card__prices strong {
    font-size: clamp(38px, 12vw, 54px);
  }

  .join-steps {
    grid-template-columns: 1fr;
  }

  .join-step {
    min-height: 210px;
  }

  .join-step h3 {
    font-size: clamp(25px, 7.2vw, 34px);
  }
}


/* v47: give the three join step cards more visual breathing room */
@media (min-width: 761px) {
  .join-steps {
    gap: clamp(12px, 1.1vw, 16px);
  }

  .join-step {
    padding: clamp(22px, 2vw, 30px);
  }

  .join-step span,
  .join-step h3,
  .join-step p {
    transform: translateX(-6px);
  }

  .join-step h3 {
    font-size: clamp(24px, 2.15vw, 33px);
  }
}


/* v48 partners and state block */
.partners-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(96px, 10vw, 136px);
  color: #f7f1e6;
  background:
    radial-gradient(circle at 82% 12%, rgba(211, 194, 165, .14), transparent 26vw),
    linear-gradient(90deg, rgba(229, 221, 207, .075) 1px, transparent 1px),
    linear-gradient(180deg, #062821 0%, #082f28 54%, #041a16 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(229, 221, 207, .18);
  overflow: hidden;
}

.partners-section::before {
  content: "PARTNERS";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(229, 221, 207, .055);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.partners-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .026), transparent 30%, rgba(0, 0, 0, .12));
  pointer-events: none;
}

.partners-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.partners-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 104px);
}

.partners-section__title {
  margin: 0;
  max-width: 900px;
  color: #f7f1e6;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.partners-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 221, 207, .26);
  color: rgba(247, 246, 241, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.partners-section__layout {
  display: grid;
  grid-template-columns: minmax(300px, .48fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
}

.partners-value-card {
  min-height: 610px;
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid rgba(229, 221, 207, .24);
  background:
    linear-gradient(180deg, rgba(211, 194, 165, .18), rgba(211, 194, 165, .05)),
    rgba(255, 255, 255, .035);
  display: flex;
  flex-direction: column;
}

.partners-value-card > span {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .2);
  color: rgba(247, 246, 241, .7);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.partners-value-card h3 {
  margin: auto 0 0;
  max-width: 420px;
  color: #f7f1e6;
  font-size: clamp(32px, 3vw, 48px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.partners-value-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.partners-value-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(247, 246, 241, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.partners-value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 1px;
  background: #d3c2a5;
}

.partners-cta {
  margin-top: 32px;
  align-self: flex-start;
  min-height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3c2a5;
  background: #d3c2a5;
  color: #050505;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.partners-cta:hover {
  transform: translateY(-2px);
  background: var(--beige);
  border-color: var(--beige);
}

.partners-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(229, 221, 207, .22);
  border-left: 1px solid rgba(229, 221, 207, .22);
}

.partners-audience-card {
  min-height: 305px;
  padding: clamp(26px, 2.8vw, 42px);
  border-right: 1px solid rgba(229, 221, 207, .22);
  border-bottom: 1px solid rgba(229, 221, 207, .22);
  background: rgba(255, 255, 255, .035);
  display: flex;
  flex-direction: column;
  transition: background .24s ease, transform .24s ease, border-color .24s ease;
}

.partners-audience-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(229, 221, 207, .34);
}

.partners-audience-card--accent {
  background: rgba(211, 194, 165, .1);
}

.partners-audience-card span {
  color: rgba(229, 221, 207, .58);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.partners-audience-card h3 {
  margin: auto 0 0;
  max-width: 480px;
  color: #f7f1e6;
  font-size: clamp(26px, 2.35vw, 38px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.partners-audience-card p {
  margin: 20px 0 0;
  max-width: 520px;
  color: rgba(247, 246, 241, .66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.partners-cases-row {
  margin-top: clamp(22px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(229, 221, 207, .22);
  border-left: 1px solid rgba(229, 221, 207, .22);
}

.partners-cases-row article {
  min-height: 188px;
  padding: clamp(22px, 2.3vw, 34px);
  border-right: 1px solid rgba(229, 221, 207, .22);
  border-bottom: 1px solid rgba(229, 221, 207, .22);
  background: rgba(255, 255, 255, .026);
}

.partners-cases-row span {
  display: block;
  margin-bottom: 30px;
  color: rgba(229, 221, 207, .52);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  font-weight: 300;
}

.partners-cases-row strong {
  display: block;
  color: #f7f1e6;
  font-size: clamp(21px, 1.85vw, 30px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 500;
}

.partners-cases-row p {
  margin: 14px 0 0;
  color: rgba(247, 246, 241, .62);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .012em;
  text-transform: none;
}

body.js-enabled .partners-section::before,
body.js-enabled .partners-section .section-kicker,
body.js-enabled .partners-section__title,
body.js-enabled .partners-section__head p,
body.js-enabled .partners-section .partners-value-card,
body.js-enabled .partners-section .partners-audience-card,
body.js-enabled .partners-section .partners-cases-row article {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.partners-section::before,
.partners-section .section-kicker,
.partners-section__title,
.partners-section__head p,
.partners-section .partners-value-card,
.partners-section .partners-audience-card,
.partners-section .partners-cases-row article {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .partners-section.is-visible::before,
body.js-enabled .partners-section.is-visible .section-kicker,
body.js-enabled .partners-section.is-visible .partners-section__title,
body.js-enabled .partners-section.is-visible .partners-section__head p,
body.js-enabled .partners-section.is-visible .partners-value-card,
body.js-enabled .partners-section.is-visible .partners-audience-card,
body.js-enabled .partners-section.is-visible .partners-cases-row article {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .partners-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .partners-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .partners-section.is-visible .partners-section__title { transition-delay: .16s; }
body.js-enabled .partners-section.is-visible .partners-section__head p { transition-delay: .26s; }
body.js-enabled .partners-section.is-visible .partners-value-card { transition-delay: .34s; }
body.js-enabled .partners-section.is-visible .partners-audience-card:nth-child(1) { transition-delay: .42s; }
body.js-enabled .partners-section.is-visible .partners-audience-card:nth-child(2) { transition-delay: .5s; }
body.js-enabled .partners-section.is-visible .partners-audience-card:nth-child(3) { transition-delay: .58s; }
body.js-enabled .partners-section.is-visible .partners-audience-card:nth-child(4) { transition-delay: .66s; }
body.js-enabled .partners-section.is-visible .partners-cases-row article:nth-child(1) { transition-delay: .74s; }
body.js-enabled .partners-section.is-visible .partners-cases-row article:nth-child(2) { transition-delay: .82s; }
body.js-enabled .partners-section.is-visible .partners-cases-row article:nth-child(3) { transition-delay: .9s; }

@media (max-width: 1180px) {
  .partners-section__head,
  .partners-section__layout {
    grid-template-columns: 1fr;
  }

  .partners-value-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .partners-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .partners-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .partners-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .partners-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .partners-section__head p {
    font-size: 15px;
    line-height: 1.42;
  }

  .partners-value-card {
    padding: 24px 20px 28px;
  }

  .partners-value-card h3,
  .partners-audience-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .partners-value-card li,
  .partners-audience-card p,
  .partners-cases-row p {
    font-size: 14px;
    line-height: 1.44;
  }

  .partners-audience-grid,
  .partners-cases-row {
    grid-template-columns: 1fr;
  }

  .partners-audience-card {
    min-height: 240px;
    padding: 24px 20px 26px;
  }

  .partners-cases-row article {
    min-height: 0;
    padding: 24px 20px 26px;
  }
}


/* v49 media block */
.media-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(96px, 10vw, 136px);
  background:
    radial-gradient(circle at 82% 18%, rgba(7, 67, 55, .08), transparent 28vw),
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f6f1e8 0%, #ebe2d0 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  color: #050505;
  border-top: 1px solid rgba(5, 5, 5, .12);
  overflow: hidden;
}

.media-section::before {
  content: "MEDIA";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(7, 67, 55, .075);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.media-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.media-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 104px);
}

.media-section__title {
  margin: 0;
  max-width: 900px;
  font-size: clamp(36px, 4.25vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.media-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, .16);
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.media-section__layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.media-feature-card {
  min-height: 560px;
  padding: clamp(28px, 3.2vw, 48px);
  border: 1px solid rgba(5, 5, 5, .14);
  background: #074337;
  color: #f7f1e6;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(7, 67, 55, .16);
}

.media-feature-card > span {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .22);
  color: rgba(247, 246, 241, .7);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.media-feature-card h3 {
  margin: auto 0 0;
  max-width: 540px;
  font-size: clamp(32px, 3.15vw, 52px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.media-feature-card p {
  margin: 24px 0 0;
  max-width: 540px;
  color: rgba(247, 246, 241, .7);
  font-size: clamp(15px, 1.04vw, 17px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.media-feature-card a {
  margin-top: 34px;
  display: inline-flex;
  align-self: flex-start;
  min-height: 54px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(211, 194, 165, .86);
  background: #d3c2a5;
  color: #050505;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .09em;
  text-decoration: none;
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.media-feature-card a:hover {
  transform: translateY(-3px);
  background: #e5ddcf;
  border-color: #e5ddcf;
}

.media-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 5, 5, .14);
  border-left: 1px solid rgba(5, 5, 5, .14);
}

.media-feed-card {
  min-height: 280px;
  padding: clamp(24px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(5, 5, 5, .14);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .34);
  transition: background .26s ease, transform .26s ease, box-shadow .26s ease;
}

.media-feed-card:hover {
  background: rgba(255, 255, 255, .55);
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(5, 5, 5, .06);
}

.media-feed-card--accent {
  background: rgba(211, 194, 165, .22);
}

.media-feed-card span {
  display: block;
  color: #074337;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.media-feed-card h3 {
  margin: auto 0 0;
  max-width: 460px;
  font-size: clamp(27px, 2.55vw, 40px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.media-feed-card p {
  margin: 18px 0 0;
  max-width: 480px;
  color: rgba(5, 5, 5, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.4;
  letter-spacing: .015em;
  text-transform: none;
}

body.js-enabled .media-section::before,
body.js-enabled .media-section .section-kicker,
body.js-enabled .media-section__title,
body.js-enabled .media-section__head p,
body.js-enabled .media-section .media-feature-card,
body.js-enabled .media-section .media-feed-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.media-section::before,
.media-section .section-kicker,
.media-section__title,
.media-section__head p,
.media-section .media-feature-card,
.media-section .media-feed-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .media-section.is-visible::before,
body.js-enabled .media-section.is-visible .section-kicker,
body.js-enabled .media-section.is-visible .media-section__title,
body.js-enabled .media-section.is-visible .media-section__head p,
body.js-enabled .media-section.is-visible .media-feature-card,
body.js-enabled .media-section.is-visible .media-feed-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .media-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .media-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .media-section.is-visible .media-section__title { transition-delay: .16s; }
body.js-enabled .media-section.is-visible .media-section__head p { transition-delay: .26s; }
body.js-enabled .media-section.is-visible .media-feature-card { transition-delay: .34s; }
body.js-enabled .media-section.is-visible .media-feed-card:nth-child(1) { transition-delay: .42s; }
body.js-enabled .media-section.is-visible .media-feed-card:nth-child(2) { transition-delay: .5s; }
body.js-enabled .media-section.is-visible .media-feed-card:nth-child(3) { transition-delay: .58s; }
body.js-enabled .media-section.is-visible .media-feed-card:nth-child(4) { transition-delay: .66s; }

@media (max-width: 1180px) {
  .media-section__head,
  .media-section__layout {
    grid-template-columns: 1fr;
  }

  .media-feature-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .media-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .media-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .media-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .media-section__title {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
    letter-spacing: -.03em;
  }

  .media-section__head p {
    font-size: 15px;
    line-height: 1.42;
  }

  .media-feature-card {
    min-height: 320px;
    padding: 28px 22px 30px;
  }

  .media-feature-card h3,
  .media-feed-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .media-feature-card p,
  .media-feed-card p {
    font-size: 14px;
    line-height: 1.44;
  }

  .media-feed-grid {
    grid-template-columns: 1fr;
  }

  .media-feed-card {
    min-height: 220px;
    padding: 24px 20px 26px;
  }

  .media-feed-card:hover {
    transform: none;
  }
}


/* v50 media block button + standalone media page */
.media-feature-card__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.media-feature-card__actions a {
  margin-top: 0;
}

.media-feature-card__link-secondary {
  background: transparent !important;
  color: #f7f1e6 !important;
  border-color: rgba(229, 221, 207, .4) !important;
}

.media-feature-card__link-secondary:hover {
  background: rgba(229, 221, 207, .12) !important;
  border-color: rgba(229, 221, 207, .72) !important;
}

.media-page-body {
  background: #f6f1e8;
  color: #050505;
}

.media-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(7, 67, 55, .08), transparent 28vw),
    linear-gradient(90deg, rgba(5, 5, 5, .055) 1px, transparent 1px),
    linear-gradient(180deg, #f6f1e8 0%, #ebe2d0 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  padding: 130px 4.2vw 96px;
  overflow: hidden;
}

.media-page__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.media-page__hero {
  position: relative;
  min-height: 58vh;
  padding: clamp(42px, 5vw, 74px) 0 clamp(48px, 6vw, 82px);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
}

.media-page__hero::after {
  content: "MEDIA";
  position: absolute;
  right: 0;
  bottom: 18px;
  color: rgba(7, 67, 55, .075);
  font-size: clamp(74px, 12vw, 180px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.media-page__hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .58fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
}

.media-page__eyebrow {
  display: inline-flex;
  margin-bottom: clamp(34px, 4vw, 58px);
  color: rgba(5, 5, 5, .56);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.media-page__hero h1 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(44px, 6.6vw, 104px);
  line-height: .88;
  letter-spacing: -.05em;
  font-weight: 500;
}

.media-page__lead {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(5, 5, 5, .16);
  color: rgba(5, 5, 5, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.media-catalog {
  padding-top: clamp(54px, 6.8vw, 92px);
}

.media-catalog__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.6vw, 48px);
}

.media-catalog__top h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 500;
}

.media-filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.media-filter-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(5, 5, 5, .18);
  background: rgba(255, 255, 255, .32);
  color: #050505;
  cursor: pointer;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}

.media-filter-tabs button.is-active,
.media-filter-tabs button:hover {
  background: #074337;
  border-color: #074337;
  color: #f7f1e6;
}

.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(5, 5, 5, .14);
  border-left: 1px solid rgba(5, 5, 5, .14);
}

.media-page-card {
  min-height: 380px;
  padding: clamp(24px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(5, 5, 5, .14);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .34);
  color: #050505;
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease;
}

.media-page-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 36px rgba(5, 5, 5, .06);
}

.media-page-card--accent {
  background: #074337;
  color: #f7f1e6;
}

.media-page-card--accent:hover {
  background: #083f35;
}

.media-page-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(5, 5, 5, .48);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .11em;
  font-weight: 300;
}

.media-page-card--accent .media-page-card__meta {
  color: rgba(247, 246, 241, .62);
}

.media-page-card h3 {
  margin: auto 0 0;
  max-width: 520px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.media-page-card p {
  margin: 18px 0 0;
  max-width: 520px;
  color: rgba(5, 5, 5, .68);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.media-page-card--accent p {
  color: rgba(247, 246, 241, .68);
}

.media-page-card__link {
  margin-top: 28px;
  color: #074337;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .1em;
}

.media-page-card--accent .media-page-card__link {
  color: #d3c2a5;
}

.media-page-card.is-hidden {
  display: none;
}

.media-page .site-footer-link {
  display: inline-flex;
  margin-top: 42px;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  border: 1px solid rgba(5, 5, 5, .18);
  color: #050505;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .1em;
}

@media (max-width: 1180px) {
  .media-page__hero-grid,
  .media-catalog__top {
    grid-template-columns: 1fr;
    display: grid;
  }

  .media-filter-tabs {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .media-feature-card__actions {
    gap: 10px;
  }

  .media-feature-card__actions a {
    width: 100%;
  }

  .media-page {
    padding: 104px 20px 72px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .media-page__hero {
    min-height: 0;
    padding: 36px 0 54px;
  }

  .media-page__hero::after {
    right: 0;
    bottom: 12px;
    font-size: 58px;
  }

  .media-page__eyebrow {
    margin-bottom: 28px;
  }

  .media-page__hero h1 {
    font-size: clamp(42px, 14vw, 62px);
    line-height: .9;
  }

  .media-page__lead {
    font-size: 15px;
    line-height: 1.42;
  }

  .media-catalog__top {
    gap: 22px;
  }

  .media-catalog__top h2 {
    font-size: clamp(30px, 8.4vw, 37px);
    line-height: .98;
  }

  .media-filter-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .media-filter-tabs button {
    padding: 0 12px;
  }

  .media-cards-grid {
    grid-template-columns: 1fr;
  }

  .media-page-card {
    min-height: 300px;
    padding: 24px 20px 26px;
  }

  .media-page-card:hover {
    transform: none;
  }

  .media-page-card h3 {
    font-size: clamp(25px, 7.2vw, 34px);
    line-height: 1;
  }

  .media-page-card p {
    font-size: 14px;
    line-height: 1.44;
  }
}


/* v51: remove large MEDIA background mark from media page hero */
.media-page__hero::after {
  display: none !important;
  content: none !important;
}


/* v52: media page starts from catalog, hero intro removed */
.media-page--catalog-only {
  padding-top: clamp(128px, 10.5vw, 164px);
}

.media-page--catalog-only .media-catalog {
  padding-top: 0;
}

.media-empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  padding: 34px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(5, 5, 5, .14);
  border-bottom: 1px solid rgba(5, 5, 5, .14);
  background: rgba(255, 255, 255, .34);
  color: rgba(5, 5, 5, .62);
  font-size: 16px;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 760px) {
  .media-page--catalog-only {
    padding-top: 114px;
  }
}


/* v53 contacts block */
.contacts-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 10.6vw, 148px) 4.2vw clamp(86px, 9vw, 126px);
  color: #f7f6f1;
  background:
    radial-gradient(circle at 80% 18%, rgba(211, 194, 165, .12), transparent 28vw),
    linear-gradient(90deg, rgba(229, 221, 207, .075) 1px, transparent 1px),
    linear-gradient(180deg, #061f1b 0%, #074337 100%);
  background-size: 100% 100%, 25vw 100%, 100% 100%;
  border-top: 1px solid rgba(229, 221, 207, .18);
  overflow: hidden;
}

.contacts-section::before {
  content: "CONTACT";
  position: absolute;
  right: 4.2vw;
  bottom: clamp(20px, 2.8vw, 38px);
  color: rgba(229, 221, 207, .055);
  font-size: clamp(68px, 10vw, 156px);
  line-height: .78;
  letter-spacing: -.05em;
  font-weight: 500;
  pointer-events: none;
}

.contacts-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.contacts-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .62fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: end;
  margin-bottom: clamp(56px, 7.8vw, 100px);
}

.contacts-section__title {
  margin: 0;
  max-width: 780px;
  color: #f7f1e6;
  font-size: clamp(40px, 5.2vw, 82px);
  line-height: .94;
  letter-spacing: -.04em;
  font-weight: 500;
}

.contacts-section__head p {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 221, 207, .26);
  color: rgba(247, 246, 241, .72);
  font-size: clamp(15px, 1.18vw, 20px);
  line-height: 1.38;
  letter-spacing: .015em;
  text-transform: none;
}

.contacts-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  gap: clamp(22px, 3vw, 48px);
}

.contacts-form,
.contacts-card {
  border: 1px solid rgba(229, 221, 207, .22);
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.contacts-form {
  padding: clamp(26px, 3.1vw, 42px);
  display: grid;
  gap: 18px;
}

.contacts-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contacts-form label {
  display: grid;
  gap: 10px;
}

.contacts-form label span {
  color: rgba(229, 221, 207, .62);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 1px solid rgba(229, 221, 207, .18);
  background: rgba(247, 246, 241, .06);
  color: #f7f6f1;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.35;
  padding: 16px 16px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .22s ease, background .22s ease;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: rgba(211, 194, 165, .62);
  background: rgba(247, 246, 241, .09);
}

.contacts-form textarea {
  min-height: 174px;
  resize: vertical;
}

.contacts-form__bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contacts-form button {
  border: 1px solid #d3c2a5;
  background: #d3c2a5;
  color: #050505;
  padding: 18px 24px;
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.contacts-form small {
  max-width: 360px;
  color: rgba(247, 246, 241, .56);
  font-size: 12px;
  line-height: 1.34;
  text-transform: none;
}

.contacts-card {
  padding: clamp(26px, 3.1vw, 42px);
  display: flex;
  flex-direction: column;
}

.contacts-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 10px 14px;
  border: 1px solid rgba(229, 221, 207, .2);
  color: rgba(247, 246, 241, .72);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.contacts-card h3 {
  margin: clamp(34px, 4.6vw, 68px) 0 0;
  max-width: 520px;
  color: #f7f1e6;
  font-size: clamp(28px, 2.75vw, 44px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 500;
}

.contacts-card p {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(247, 246, 241, .66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.contacts-list {
  display: grid;
  margin-top: auto;
  padding-top: clamp(38px, 5vw, 72px);
}

.contacts-item {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(229, 221, 207, .18);
  color: inherit;
  text-decoration: none;
}

.contacts-item span {
  color: rgba(229, 221, 207, .58);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 300;
}

.contacts-item strong {
  color: #f7f1e6;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -.025em;
  font-weight: 500;
  text-transform: none;
}

.site-footer {
  background: #050505;
  color: #f7f6f1;
  padding: 34px 4.2vw 30px;
}

.site-footer__inner {
  max-width: 1480px;
  margin: 0 auto;
}

.site-footer__brand img {
  display: block;
  width: 110px;
  height: auto;
  filter: invert(1);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 246, 241, .16);
}

.site-footer__nav a {
  color: rgba(247, 246, 241, .72);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: rgba(247, 246, 241, .42);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .08em;
}

body.js-enabled .contacts-section::before,
body.js-enabled .contacts-section .section-kicker,
body.js-enabled .contacts-section__title,
body.js-enabled .contacts-section__head p,
body.js-enabled .contacts-section .contacts-form,
body.js-enabled .contacts-section .contacts-card {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 42px, 0);
}

.contacts-section::before,
.contacts-section .section-kicker,
.contacts-section__title,
.contacts-section__head p,
.contacts-section .contacts-form,
.contacts-section .contacts-card {
  transition-property: opacity, transform, filter;
  transition-duration: .9s;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

body.js-enabled .contacts-section.is-visible::before,
body.js-enabled .contacts-section.is-visible .section-kicker,
body.js-enabled .contacts-section.is-visible .contacts-section__title,
body.js-enabled .contacts-section.is-visible .contacts-section__head p,
body.js-enabled .contacts-section.is-visible .contacts-form,
body.js-enabled .contacts-section.is-visible .contacts-card {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.js-enabled .contacts-section.is-visible::before { transition-delay: .04s; }
body.js-enabled .contacts-section.is-visible .section-kicker { transition-delay: .08s; }
body.js-enabled .contacts-section.is-visible .contacts-section__title { transition-delay: .16s; }
body.js-enabled .contacts-section.is-visible .contacts-section__head p { transition-delay: .26s; }
body.js-enabled .contacts-section.is-visible .contacts-form { transition-delay: .34s; }
body.js-enabled .contacts-section.is-visible .contacts-card { transition-delay: .44s; }

@media (max-width: 1180px) {
  .contacts-section__head,
  .contacts-section__layout {
    grid-template-columns: 1fr;
  }

  .contacts-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .contacts-section {
    padding: 86px 20px 76px;
    background-size: 100% 100%, 50vw 100%, 100% 100%;
  }

  .contacts-section::before {
    right: 20px;
    bottom: 16px;
    font-size: 58px;
  }

  .contacts-section__head {
    gap: 28px;
    margin-bottom: 44px;
  }

  .contacts-section__title {
    font-size: clamp(34px, 11vw, 48px);
    line-height: .96;
    letter-spacing: -.035em;
  }

  .contacts-form__row {
    grid-template-columns: 1fr;
  }

  .contacts-form,
  .contacts-card {
    padding: 24px 20px;
  }

  .contacts-card h3 {
    font-size: clamp(26px, 7.6vw, 36px);
  }

  .contacts-item strong {
    font-size: clamp(20px, 6.4vw, 28px);
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 32px 20px 28px;
  }

  .site-footer__nav {
    display: grid;
    gap: 14px;
  }

  .site-footer__bottom {
    display: grid;
  }
}


/* v54 footer redesign */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(211, 194, 165, .08), transparent 28vw),
    linear-gradient(180deg, #061f1a 0%, #050505 100%);
  color: #f7f6f1;
  padding: clamp(54px, 5.6vw, 82px) 4.2vw 32px;
  border-top: 1px solid rgba(229, 221, 207, .18);
  overflow: hidden;
}

.site-footer::before {
  content: "АОПФ";
  position: absolute;
  right: 4.2vw;
  bottom: -18px;
  color: rgba(247, 246, 241, .035);
  font-size: clamp(84px, 13vw, 210px);
  line-height: .8;
  letter-spacing: -.06em;
  font-weight: 500;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(320px, .72fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: start;
  padding-bottom: clamp(36px, 4.2vw, 62px);
  border-bottom: 1px solid rgba(247, 246, 241, .14);
}

.site-footer__brand img {
  display: block;
  width: clamp(122px, 12vw, 178px);
  height: auto;
  filter: none;
}

.site-footer__statement span {
  display: block;
  max-width: 840px;
  color: #f7f6f1;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 500;
}

.site-footer__statement p {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(247, 246, 241, .58);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
  letter-spacing: .015em;
  text-transform: none;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .34fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
  padding: clamp(32px, 3.4vw, 48px) 0;
  border-bottom: 1px solid rgba(247, 246, 241, .1);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 16px 24px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.site-footer__nav a {
  color: rgba(247, 246, 241, .66);
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  transition: color .22s ease, transform .22s ease;
}

.site-footer__nav a:hover {
  color: #d3c2a5;
  transform: translateX(4px);
}

.site-footer__cta {
  padding: 22px;
  border: 1px solid rgba(229, 221, 207, .18);
  background: rgba(255,255,255,.035);
}

.site-footer__cta span {
  display: block;
  color: rgba(247, 246, 241, .58);
  font-size: 12px;
  line-height: 1.34;
  letter-spacing: .08em;
}

.site-footer__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  background: #d3c2a5;
  color: #050505;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .09em;
  font-weight: 500;
  transition: background .22s ease, transform .22s ease;
}

.site-footer__cta a:hover {
  background: #f7f1e6;
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: rgba(247, 246, 241, .38);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .08em;
}

@media (max-width: 920px) {
  .site-footer__top,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 44px 20px 28px;
  }

  .site-footer__top {
    gap: 28px;
  }

  .site-footer__brand img {
    width: 132px;
  }

  .site-footer__statement span {
    font-size: clamp(25px, 8vw, 34px);
  }

  .site-footer__main {
    gap: 28px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 15px 18px;
  }

  .site-footer__cta {
    padding: 20px;
  }

  .site-footer__cta a {
    width: 100%;
  }

  .site-footer__bottom {
    display: grid;
  }
}

/* v62 mobile members accordion */
@media (max-width: 760px) {
  .members-grid .member-detail {
    grid-column: 1 / -1;
    min-height: 0;
    margin: -2px 0 12px;
    border-color: rgba(7, 67, 55, .18);
    background: rgba(255, 255, 255, .62);
  }

  .members-grid .member-detail__eyebrow {
    margin-bottom: 20px;
  }

  .members-grid .member-detail__meta {
    margin-top: 26px;
  }

  .members-grid .member-detail__footer {
    margin-top: 0;
    padding-top: 28px;
  }
}
