@font-face {
  font-family: "Cardo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cardo/cardo-regular-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cardo";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cardo/cardo-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cardo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cardo/cardo-bold-latin.woff2") format("woff2");
}

/*
 * Brown LL webfont licence: sanctuarygroup.co and its subdomains,
 * fewer than 50,000 monthly pageviews. The font file must not be renamed.
 * Full notice: assets/fonts/brown/01_IMPORTANT_License_Notice_Web.txt
 */
@font-face {
  font-family: "BrownLLWeb-Regular";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/brown/BrownLLWeb-Regular.woff2") format("woff2");
}

:root {
  --color-black: #222222;
  --color-neutral: #f0ede6;
  --color-yellow: #f5b01c;
  --color-white: #ffffff;
  --color-border: rgba(34, 34, 34, 0.25);
  --font-serif: "Cardo", Georgia, serif;
  --font-sans: "BrownLLWeb-Regular", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-header-height: clamp(112px, 11.5svh, 184px);
  --site-header-logo-width: clamp(250px, 28.6svh, 312px);
  --site-header-logo-height: clamp(28px, 3.2svh, 34.9px);
  --site-header-padding-y: clamp(
    36px,
    calc((var(--site-header-height) - var(--site-header-logo-height)) / 2),
    72px
  );
  --intro-next-section-peek: 160px;
  --intro-screen-height: calc(100vh - var(--intro-next-section-peek));
  --intro-content-center: calc(
    var(--site-header-height) +
      (var(--intro-screen-height) - var(--site-header-height)) / 2
  );
}

@supports (height: 100svh) {
  :root {
    --intro-screen-height: calc(100svh - var(--intro-next-section-peek));
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color: var(--color-black);
  background: var(--color-white);
  font-family: var(--font-serif);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-black);
  background: var(--color-white);
}

body.is-menu-open {
  overflow: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button,
a {
  color: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  font: inherit;
}

.insights-more__button,
.what-more__button,
.team-more__button {
  transition: color 260ms var(--ease);
}

.insights-more__button:hover,
.insights-more__button:focus-visible,
.what-more__button:hover,
.what-more__button:focus-visible,
.team-more__button:hover,
.team-more__button:focus-visible {
  color: var(--color-yellow);
}

a {
  text-decoration: none;
}

.home-page {
  min-width: 320px;
  overflow-x: hidden;
}

.default-page {
  min-width: 320px;
  background: var(--color-white);
}

.default-page__main {
  min-height: 100vh;
  padding: calc(var(--site-header-height) + 80px) 120px 120px;
}

.default-page__main h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--site-header-height);
  padding: 0 32px;
  background: var(--color-neutral);
}

.site-header__logo {
  grid-column: 2;
  display: block;
  align-self: center;
  justify-self: center;
  width: var(--site-header-logo-width);
  height: var(--site-header-logo-height);
  line-height: 0;
  transition:
    width 520ms var(--ease),
    height 520ms var(--ease);
}

.site-header__right {
  grid-column: 3;
  align-self: center;
  justify-self: end;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: var(--site-header-logo-height);
  object-fit: fill;
  transition: height 520ms var(--ease);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: fill;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.icon-button::before,
.site-menu__close::before {
  position: absolute;
  inset: -12px;
  content: "";
}

.menu-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
}

.menu-icon span {
  position: absolute;
  left: 4px;
  width: 32px;
  height: 1.6px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 520ms var(--ease);
  will-change: opacity, transform;
}

.menu-icon span:nth-child(1) {
  top: 11px;
}

.menu-icon span:nth-child(2) {
  top: 19px;
}

.menu-icon span:nth-child(3) {
  top: 27px;
}

.icon-button.is-open .menu-icon span:nth-child(1),
.site-menu__close.is-open .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) scaleX(1.04);
}

.icon-button.is-open .menu-icon span:nth-child(2),
.site-menu__close.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
  transition-duration: 160ms;
}

.icon-button.is-open .menu-icon span:nth-child(3),
.site-menu__close.is-open .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) scaleX(1.04);
}

.icon-button:focus-visible,
.site-menu__close:focus-visible,
.site-menu__link:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  min-height: 100vh;
  min-height: 100svh;
  overflow-y: auto;
  isolation: isolate;
  pointer-events: none;
}

.site-menu[hidden] {
  display: none;
}

.site-menu.is-open {
  pointer-events: auto;
}

.site-menu::before {
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: var(--color-neutral);
  content: "";
  transform: translateY(-16px) scaleY(0);
  transform-origin: top center;
  transition: transform 460ms var(--ease);
  will-change: transform;
}

.site-menu::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: transparent;
  content: "";
  pointer-events: none;
}

.site-menu.is-open::before {
  transform: translateY(0) scaleY(1);
  transition-duration: 700ms;
  transition-delay: 0ms;
}

.site-menu__header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--site-header-height);
  padding: 0 32px;
  background: var(--color-neutral);
}

.site-menu__logo {
  grid-column: 2;
  display: block;
  align-self: center;
  justify-self: center;
  width: var(--site-header-logo-width);
  height: var(--site-header-logo-height);
  line-height: 0;
  transition:
    width 520ms var(--ease),
    height 520ms var(--ease);
}

.site-menu__logo img {
  display: block;
  width: 100%;
  height: var(--site-header-logo-height);
  object-fit: fill;
  transition: height 520ms var(--ease);
}

.site-menu__close {
  position: relative;
  display: grid;
  grid-column: 3;
  align-self: center;
  place-items: center;
  justify-self: end;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .site-menu {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: var(--intro-screen-height);
    max-height: var(--intro-screen-height);
    min-height: 0;
  }

  .site-menu::before {
    position: absolute;
  }

  .site-menu.is-open .site-menu__logo {
    width: 214.56px;
    height: 24px;
  }

  .site-menu.is-open .site-menu__logo img {
    height: 24px;
  }
}

.site-menu__nav {
  position: relative;
  z-index: 2;
  display: flex;
  /* width: min(415px, calc(100% - 48px)); */
  flex-direction: column;
  align-items: center;
  margin: 37px auto 80px;
  clip-path: inset(0 0 0 0);
  transition: clip-path 460ms var(--ease);
  will-change: clip-path;
}

@media (min-width: 768px) {
  .site-menu__nav {
    position: absolute;
    top: var(--site-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    justify-content: center;
    margin: 0 auto;
    pointer-events: none;
    transform: translateY(-4%);
  }

  .site-menu__link {
    pointer-events: auto;
  }
}

.site-menu__link {
  --menu-link-duration: 360ms;
  --menu-link-delay: 0ms;

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 77px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.64px;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-56px);
  transition:
    opacity var(--menu-link-duration) var(--ease) var(--menu-link-delay),
    transform var(--menu-link-duration) var(--ease) var(--menu-link-delay),
    color 240ms var(--ease);
  will-change: opacity, transform;
}

.site-menu__link:focus-visible {
  color: var(--color-yellow);
}

@media (hover: hover) and (pointer: fine) {
  .site-menu__link:hover {
    color: var(--color-yellow);
  }
}

.site-menu.is-open .site-menu__link {
  --menu-link-duration: 520ms;

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

.site-menu.is-open .site-menu__link:nth-child(1) {
  --menu-link-delay: 690ms;
}

.site-menu.is-open .site-menu__link:nth-child(2) {
  --menu-link-delay: 560ms;
}

.site-menu.is-open .site-menu__link:nth-child(3) {
  --menu-link-delay: 430ms;
}

.site-menu.is-open .site-menu__link:nth-child(4) {
  --menu-link-delay: 300ms;
}

.site-menu.is-closing .site-menu__nav {
  clip-path: inset(0 0 100% 0);
}

.site-menu.is-closing .site-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.hero {
  --home-hero-progress: 0;
  --home-hero-headline-top: calc(var(--intro-screen-height) / 2);
  --home-hero-headline-enter-offset: -56px;

  position: relative;
  display: flex;
  height: var(--intro-screen-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--color-neutral);
  text-align: center;
}

.hero h1 {
  position: fixed;
  top: var(--home-hero-headline-top);
  left: 50%;
  z-index: 1;
  width: min(720px, 100%);
  margin: 0;
  padding: 0 24px;
  opacity: calc(1 - var(--home-hero-progress, 0) * 0.86);
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 72px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.22;
  transform: translate3d(-50%, -50%, 0);
  will-change: opacity;
}

.hero-headline {
  display: block;
}

.hero-headline--mobile {
  display: none;
}

.hero-headline__line,
.hero-headline__line-inner {
  display: block;
}

.hero-headline__line-inner {
  margin: 0 -0.08em -0.16em;
  padding: 0 0.08em 0.16em;
  white-space: nowrap;
  animation: home-hero-line-reveal 520ms var(--ease) both;
  will-change: opacity, transform;
}

.hero-headline__line:nth-child(1) .hero-headline__line-inner {
  animation-delay: 80ms;
}

.hero-headline__line:nth-child(2) .hero-headline__line-inner {
  animation-delay: 180ms;
}

.hero-headline__line:nth-child(3) .hero-headline__line-inner {
  animation-delay: 280ms;
}

.home-font-loading .hero-headline__line-inner,
.home-font-loading .hero .text-link,
.home-font-loading .intro {
  animation-play-state: paused;
}

.hero .text-link {
  position: absolute;
  z-index: 3;
  bottom: 60px;
  animation: home-lower-content-load 480ms cubic-bezier(0.65, 0, 0.35, 1) 650ms both;
  will-change: opacity, transform;
}

@keyframes home-hero-line-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, var(--home-hero-headline-enter-offset), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes home-lower-content-load {
  from {
    opacity: 0;
    transform: translate3d(0, 180px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 5px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link::after {
  position: absolute;
  right: 2px;
  bottom: 0;
  left: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left center;
  transition: transform 340ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.56);
}

.hero .text-link:hover::after,
.hero .text-link:focus-visible::after {
  transform: scaleX(0);
}

.text-link--arrow img {
  width: 14px;
  height: 14px;
  transition: transform 300ms var(--ease);
}

.text-link--arrow:hover img,
.text-link--arrow:focus-visible img {
  transform: translateX(4px);
}

.accordion-panel__inner .text-link::after {
  transform: scaleX(0);
}

.accordion-panel__inner .text-link:hover::after,
.accordion-panel__inner .text-link:focus-visible::after {
  transform: scaleX(1);
}

.intro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 160px 24px;
  background: var(--color-yellow);
  text-align: center;
  animation: home-lower-content-load 480ms cubic-bezier(0.65, 0, 0.35, 1) 650ms both;
  will-change: opacity, transform;
}

.accordion-section,
.team-section,
.news-section {
  position: relative;
  z-index: 2;
}

.intro p {
  width: min(972px, 100%);
  margin: 0;
  font-size: clamp(32px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
}

.accordion-section {
  padding: 160px 96px;
  background: var(--color-white);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(1248px, 100%);
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 140px;
  gap: 32px;
  padding: 38px 36px;
  cursor: pointer;
  text-align: left;
  transition: margin-bottom 520ms var(--ease);
}

/* .accordion-item:not(.is-open) .accordion-row {
  padding-right: 0;
  padding-left: 0;
} */

.accordion-row span:first-child {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.accordion-row__icon {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
}

.accordion-row__icon::before,
.accordion-row__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 1px;
  background: var(--color-black);
  content: "";
  transition:
    transform 360ms var(--ease),
    opacity 260ms var(--ease);
}

.accordion-row__icon::before {
  transform: translate(-50%, -50%);
}

.accordion-row__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-row__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.accordion-item.is-open .accordion-row__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 520ms var(--ease);
}

.accordion-panel__inner {
  min-height: 0;
  overflow: hidden;
}

.accordion-panel__inner {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 40px;
  background: var(--color-yellow);
  opacity: 0;
  transform: translateY(-16px);
  transition:
    padding 520ms var(--ease),
    opacity 360ms var(--ease),
    transform 520ms var(--ease);
}

.accordion-panel__content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.accordion-panel__inner p {
  width: min(844px, 100%);
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-style: italic;
  line-height: 1.22;
}

.accordion-item.is-open {
  border-bottom-color: transparent;
}

/* .accordion-item.is-open .accordion-row {
  margin-bottom: 24px;
} */

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel__inner {
  padding-top: 84px;
  padding-bottom: 84px;
  opacity: 1;
  transform: translateY(0);
}

.team-section {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  gap: 150px;
  padding: 160px 0 75px;
  background: var(--color-neutral);
}

.team-section h2 {
  width: min(936px, calc(100% - 48px));
  margin: 0;
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.team-section > .text-link::after {
  right: 0;
  left: 0;
  transform: scaleX(1);
}

.team-section > .text-link:hover::after,
.team-section > .text-link:focus-visible::after {
  transform: scaleX(0);
}

.news-section > .text-link::after {
  right: 0;
  left: 0;
  transform: scaleX(1);
}

.news-section > .text-link:hover::after,
.news-section > .text-link:focus-visible::after {
  transform: scaleX(0);
}

.scroll-rail {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.scroll-rail::-webkit-scrollbar {
  display: none;
}

.scroll-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.scroll-rail img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.team-rail {
  display: flex;
  gap: 24px;
  padding: 0 max(63px, calc((100vw - 1314px) / 2));
}

.team-card {
  display: flex;
  flex: 0 0 422px;
  height: 541px;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}

.team-card__image,
.team-card__image img {
  position: absolute;
  inset: 0;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 600ms var(--ease);
}

.team-card__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px 36px;
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 420ms ease,
    transform 620ms var(--ease);
  will-change: opacity, transform;
}

.team-card__copy span {
  font-size: 32px;
  line-height: 1.16;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease 70ms,
    transform 560ms var(--ease) 70ms;
}

.team-card__copy em {
  font-size: 32px;
  font-style: italic;
  line-height: 1.16;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease 140ms,
    transform 560ms var(--ease) 140ms;
}

.team-card:hover .team-card__image img,
.team-card:focus-visible .team-card__image img {
  filter: grayscale(1);
  transform: scale(1.045);
}

.team-card:hover .team-card__copy,
.team-card:focus-visible .team-card__copy {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover .team-card__copy span,
.team-card:hover .team-card__copy em,
.team-card:focus-visible .team-card__copy span,
.team-card:focus-visible .team-card__copy em {
  opacity: 1;
  transform: translateY(0);
}

.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding: 156px 0 129px;
  background: var(--color-white);
}

.news-rail {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
  overflow-x: visible;
  padding: 0 81px;
  cursor: default;
  scroll-snap-type: none;
  touch-action: auto;
  user-select: auto;
  -webkit-user-select: auto;
}

.news-card {
  display: flex;
  flex: 1 1 0;
  min-width: 280px;
  max-width: 410px;
  height: auto;
  flex-direction: column;
}

.news-card__body {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  padding: 40px 48px 32px 32px;
  background: var(--color-yellow);
}

.news-card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card__category,
.news-card__author {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.news-card__title {
  font-size: 32px;
  line-height: 1.2;
}

.news-card__date {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.news-card__image {
  display: block;
  height: 260px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .news-card__image {
    height: 351px;
  }
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.news-card:hover .news-card__image img,
.news-card:focus-visible .news-card__image img {
  transform: scale(1.05);
}

@media (min-width: 768px) and (max-width: 1049px) {
  .news-rail {
    justify-content: flex-start;
    overflow-x: auto;
    cursor: grab;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .news-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 459px;
  flex-direction: column;
  gap: 180px;
  padding: 116px 32px 32px;
  background: var(--color-neutral);
}

.site-footer__top {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 213px;
}

.site-footer__logo {
  flex: 0 0 260.4px;
  width: 260.4px;
  line-height: 0;
}

.site-footer__logo img {
  height: 30px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 128px;
  flex: 1 1 0;
  min-width: 0;
  align-items: flex-start;
}

.site-footer section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 5px;
}

.site-footer section:nth-child(1) {
  width: auto;
}

.site-footer section:nth-child(2) {
  width: auto;
}

.site-footer section:nth-child(3) {
  min-width: 0;
}

.site-footer section:nth-child(4) {
  width: auto;
}

.site-footer h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.site-footer a {
  font-style: normal;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-footer a {
  transition: color 260ms var(--ease);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-yellow);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: auto;
  padding-bottom: 32px;
}

.site-footer__social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
}

.site-footer__social img {
  width: 20px;
  height: 20px;
}

.site-footer__bird-group {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
}

.site-footer__bird {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-footer__bird:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 4px;
  border-radius: 50%;
}

.site-footer__bird-icon {
  width: 64px;
  height: 64px;
  transition: opacity 180ms ease;
}

.site-footer__bird-icon--selected {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.site-footer__bird-message {
  position: absolute;
  right: clamp(148px, 11.53vw, 166px);
  bottom: 127px;
  display: flex;
  align-items: center;
  width: min(440px, calc(100vw - 160px));
  min-height: 212px;
  padding: 10px 32px;
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.24;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(12px, 0, 0);
  transition:
    opacity 180ms ease,
    transform 360ms var(--ease),
    visibility 0s linear 360ms;
}

.site-footer.is-bird-message-open .site-footer__bird-message {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .site-footer.is-bird-message-open .site-footer__bird-icon--default {
    opacity: 0;
  }

  .site-footer.is-bird-message-open .site-footer__bird-icon--selected {
    opacity: 1;
  }
}

.site-footer__bird-message-tail {
  position: absolute;
  top: 50%;
  right: -32px;
  width: 42.335px;
  height: 46.24px;
  transform: none;
  z-index: -1;
}

.site-footer__bird-message-content {
  width: 100%;
}

.site-footer__bird-message p {
  margin: 0;
}

.site-footer__bird-message p + p {
  margin-top: 8px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__legal p {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.site-footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.site-footer__legal a {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-footer__legal a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: var(--color-border);
  transform: translateY(-50%);
}

.site-footer__legal a:first-child {
  padding-left: 0;
  margin-left: 0;
}

@media (min-width: 768px) and (max-width: 1439px) {
  .site-footer {
    min-height: 0;
    gap: 96px;
    padding-top: 80px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 64px;
  }

  .site-footer__logo {
    flex-basis: auto;
  }

  .site-footer__nav {
    width: 100%;
    grid-template-columns: 280px 160px 104px 104px;
    column-gap: clamp(24px, 3vw, 40px);
  }

  .site-footer section,
  .site-footer section:nth-child(1),
  .site-footer section:nth-child(2),
  .site-footer section:nth-child(3),
  .site-footer section:nth-child(4) {
    width: auto;
    padding-top: 0;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 48px;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --site-header-height: 80px;
  }

  button,
  a,
  [role="button"] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
  }

  button:focus,
  button:focus-visible,
  a:focus,
  a:focus-visible,
  [role="button"]:focus,
  [role="button"]:focus-visible {
    outline: none;
  }

  .site-header {
    grid-template-columns: 1fr 32px;
    height: 80px;
    padding: 24px;
  }

  .default-page__main {
    padding: 144px 24px 64px;
  }

  .default-page__main h1 {
    font-size: 40px;
  }

  .site-header__left {
    display: none;
  }

  .site-header__logo {
    grid-column: 1;
    justify-self: start;
    width: 191px;
    height: 22px;
  }

  .site-header__right {
    grid-column: 2;
  }

  .site-header__logo img {
    height: 22px;
  }

  .icon-button {
    width: 32px;
    height: 32px;
  }

  .menu-icon {
    width: 32px;
    height: 32px;
  }

  .menu-icon span {
    left: 0;
    width: 32px;
  }

  .menu-icon span:nth-child(1) {
    top: 8px;
  }

  .menu-icon span:nth-child(2) {
    top: 16px;
  }

  .menu-icon span:nth-child(3) {
    top: 24px;
  }

  .icon-button.is-open .menu-icon span:nth-child(1),
  .site-menu__close.is-open .menu-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) scaleX(1.04);
  }

  .icon-button.is-open .menu-icon span:nth-child(3),
  .site-menu__close.is-open .menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) scaleX(1.04);
  }

  .site-menu__header {
    grid-template-columns: 1fr 32px;
    height: 80px;
    padding: 24px;
  }

  .site-menu::before {
    top: 80px;
  }

  .site-menu__logo {
    grid-column: 1;
    justify-self: start;
    width: 191px;
    height: 22px;
  }

  .site-menu__logo img {
    height: 22px;
  }

  .site-menu__close {
    grid-column: 2;
    width: 32px;
    height: 32px;
  }

  .site-menu__nav {
    position: absolute;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    width: min(345px, calc(100% - 48px));
    justify-content: center;
    margin: 0 auto;
    transform: translateY(-6%);
  }

  .site-menu__link {
    min-height: 36px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.3px;
    transform: translateY(-48px);
  }

  .hero {
    --home-hero-headline-top: calc(50svh - var(--site-header-height));
    --home-hero-headline-enter-offset: -48px;

    gap: 128px;
    justify-content: flex-start;
    padding: 224px 24px 60px;
  }

  .hero .text-link {
    position: absolute;
    bottom: 60px;
  }

  .hero h1 {
    width: 345px;
    max-width: 100%;
    font-size: 48px;
  }

  .hero-headline--desktop {
    display: none;
  }

  .hero-headline--mobile {
    display: block;
  }

  .intro {
    padding: 64px 32px;
  }

  .intro p {
    width: 329px;
    max-width: 100%;
    font-size: 32px;
  }

  .accordion-section {
    padding: 64px 0;
  }

  .accordion {
    gap: 10px;
    /* width: 345px; */
    max-width: 100%;
  }

  .accordion-row {
    min-height: 80px;
    padding: 24px 24px;
  }

  .accordion-row span:first-child {
    font-size: 24px;
    letter-spacing: 0.72px;
    white-space: nowrap;
  }

  .accordion-row__icon {
    width: 32px;
    height: 32px;
  }

  .accordion-row__icon::before,
  .accordion-row__icon::after {
    width: 19px;
  }

  .accordion-panel__inner {
    width: 100%;
    margin-left: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .accordion-panel__inner p {
    font-size: 40px;
  }

  .accordion-item.is-open .accordion-panel__inner {
    padding-top: 64px;
    padding-right: 24px;
    padding-bottom: 64px;
    padding-left: 24px;
  }

  .team-section {
    height: auto;
    min-height: 0;
    gap: 64px;
    padding: 64px 0;
  }

  .team-section h2 {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .team-rail {
    align-items: flex-start;
    gap: 32px;
    justify-content: flex-start;
    padding: 0 calc((100vw - 262px) / 2);
  }

  .team-card {
    flex-basis: 262px;
    height: auto;
    justify-content: flex-start;
    overflow: visible;
    color: var(--color-black);
    -webkit-tap-highlight-color: transparent;
  }

  .team-card__image {
    position: relative;
    display: block;
    width: 262px;
    height: 336.274px;
    overflow: hidden;
  }

  .team-card__image img {
    position: absolute;
  }

  .team-card__copy {
    width: 100%;
    gap: 0;
    padding: 8px 0 0;
    line-height: 1.3;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .team-card__copy span,
  .team-card__copy em {
    font-size: 28px;
    line-height: 1.3;
    white-space: normal;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .team-card:hover .team-card__image img,
  .team-card:focus-visible .team-card__image img {
    filter: none;
    transform: none;
  }

  .team-card:active .team-card__image img {
    filter: grayscale(1);
    transform: scale(1.045);
  }

  .team-card:hover .team-card__copy,
  .team-card:focus-visible .team-card__copy,
  .team-card:active .team-card__copy {
    transform: none;
  }

  .news-section {
    min-height: 0;
    gap: 64px;
    padding: 64px 0;
  }

  .news-rail {
    gap: 24px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 24px;
    cursor: grab;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
    user-select: none;
    -webkit-user-select: none;
  }

  .news-card {
    flex: 0 0 321px;
    height: 583px;
    min-height: 0;
    scroll-snap-align: center;
  }

  .news-card__body {
    min-height: 323px;
    padding: 32px 40px 24px 20px;
  }

  .news-card__title {
    font-size: 28px;
  }

  .site-footer {
    min-height: 0;
    gap: 64px;
    padding: 64px 24px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 64px;
  }

  .site-footer__logo {
    width: 260.4px;
    flex-basis: auto;
  }

  .site-footer__logo img {
    height: 30px;
  }

  .site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .site-footer section,
  .site-footer section:nth-child(1),
  .site-footer section:nth-child(2),
  .site-footer section:nth-child(3),
  .site-footer section:nth-child(4) {
    flex: none;
    width: min(104px, 100%);
    padding-top: 0;
  }

  .site-footer section:nth-child(1) {
    width: min(312px, 100%);
  }

  .site-footer section:nth-child(2) {
    width: min(218px, 100%);
  }

  .site-footer section:nth-child(3) {
    width: 100%;
  }

  .site-footer h2 {
    font-size: 16px;
  }

  .site-footer__links {
    gap: 16px;
  }

  .site-footer address,
  .site-footer a {
    font-size: 16px;
  }

  .site-footer__legal p {
    font-size: 16px;
  }

  .site-footer__bottom {
    gap: 0;
    padding-bottom: 0;
  }

  .site-footer__social-row {
    padding-bottom: 24px;
  }

  .site-footer__social span {
    display: none;
  }

  .site-footer__social img {
    width: 32px;
    height: 32px;
  }

  .site-footer__bird-icon {
    width: 48px;
    height: 48px;
  }

  .site-footer__bird-icon--default {
    opacity: 1;
  }

  .site-footer__bird-icon--selected {
    opacity: 0;
  }

  .site-footer__bird-message {
    position: static;
    display: block;
    width: calc(100% + 48px);
    max-height: 0;
    min-height: 0;
    margin: 0 -24px;
    overflow: hidden;
    padding: 0 40px;
    border-radius: 0;
    background: var(--color-white);
    box-shadow: none;
    font-size: 20px;
    line-height: 1.16;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition:
      max-height 520ms var(--ease),
      padding 520ms var(--ease);
  }

  .site-footer.is-bird-message-open .site-footer__bird-message {
    max-height: 500px;
    padding: 32px 40px;
    pointer-events: auto;
  }

  .site-footer__bird-message-content {
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 360ms var(--ease);
  }

  .site-footer.is-bird-message-open .site-footer__bird-message-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 130ms;
  }

  .site-footer__bird-message p + p {
    margin-top: 12px;
  }

  .site-footer__bird-message-tail {
    display: none;
  }

  .site-footer__legal {
    margin-top: 24px;
    transition: margin-top 520ms var(--ease);
  }

  .site-footer.is-bird-message-open .site-footer__legal {
    margin-top: 40px;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }

  .site-footer__legal nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__legal a,
  .site-footer__legal a:first-child {
    padding-left: 0;
    margin-left: 0;
  }

  .site-footer__legal a::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
