/* ===================================================== tokens */
:root {
  --ink:        #000000;
  --paper:      #F4F1EC;
  --white:      #FFFFFF;
  --gray-400:   #B2B2B2;
  --gray-300:   #BDBDBD;
  --gray-200:   #D7D7D7;
  --gray-100:   #F5F5F5;
  --green:      #3F9E49;
  --green-deep: #10653F;
  --gray-700:   #3A3A3A;

  --font-body:    'Montserrat', sans-serif;
  --font-nav:     'Titillium Web', sans-serif;
  --font-alt:     'Work Sans', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  --container: 1360px;
  --gutter: 70px;
}
@media (max-width: 1000px) { :root { --gutter: 24px; } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.45; color: var(--ink); background: var(--paper); overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

/* ===================================================== header */
.site-head { position: absolute; inset: 0 0 auto; z-index: 20; color: var(--white); }
.site-head.has-anim { transition: top .35s ease; }
.site-head.is-fixed { position: fixed; left: 0; right: 0; top: -110px; color: var(--ink); }
.site-head.is-fixed::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(237, 233, 225, .92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
}
.site-head.is-visible { top: 0; }
.site-head.is-fixed .site-head__inner { padding-top: 14px; padding-bottom: 14px; }
.site-head__brand .logo-dark { display: none; }
.site-head.is-fixed .logo-light, body.nav-open .logo-light { display: none; }
.site-head.is-fixed .logo-dark, body.nav-open .logo-dark { display: block; }
.site-head.is-fixed .site-head__brand img { width: 130px; height: auto; }
.site-head__inner { display: flex; align-items: center; padding-top: 36px; padding-bottom: 26px; position: relative; }
.site-head__inner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(255, 255, 255, .45); transform-origin: left center;
  animation: fober-head-line 1s cubic-bezier(.25, .6, .3, 1) .15s backwards;
}
.site-head.is-fixed .site-head__inner::after { background: rgba(0, 0, 0, .1); }
@keyframes fober-head-line { from { transform: scaleX(0); } }
@keyframes fober-head-item { from { opacity: 0; transform: translateY(-12px); } }
.site-head__brand { position: relative; z-index: 30; transform-origin: left center; transition: transform .3s ease; animation: fober-head-item .6s ease-out .1s backwards; }
.site-head__brand:hover { transform: scale(1.05); }
.site-head__brand:active { transform: scale(.97); }
.site-head__toggle { animation: fober-head-item .6s ease-out .45s backwards; }
.site-nav > * { animation: fober-head-item .55s ease-out backwards; }
.site-nav > :nth-child(1) { animation-delay: .28s; }
.site-nav > :nth-child(2) { animation-delay: .36s; }
.site-nav > :nth-child(3) { animation-delay: .44s; }
.site-nav > :nth-child(4) { animation-delay: .52s; }
.site-nav > :nth-child(5) { animation-delay: .6s; }
.site-nav > :nth-child(6) { animation-delay: .68s; }
.site-nav > :nth-child(7) { animation-delay: .76s; }
.site-head__brand img { width: 169px; height: 56px; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 59px; font-family: var(--font-nav); font-weight: 600; font-size: 17px; letter-spacing: 1.7px; text-transform: uppercase; }
.site-nav > a, .site-nav__item > a { position: relative; }
.site-nav > a::after, .site-nav__item > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: left center; transition: transform .28s ease;
}
.site-nav > a:hover::after, .site-nav__item > a:hover::after, .site-nav__item:hover > a::after { transform: scaleX(1); }
.site-nav__item { position: relative; display: inline-flex; }
.site-nav__item > a { padding-right: 17px; }
.site-nav__item > a::before {
  content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform .3s ease;
}
.site-nav__item:hover > a::before { transform: translateY(-30%) rotate(225deg); }
.site-nav__sub {
  position: absolute; top: calc(100% + 24px); left: -26px; min-width: 230px; z-index: 5;
  display: flex; flex-direction: column; padding: 12px 0;
  background: rgba(244, 241, 236, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--ink); box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
}
.site-nav__item::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 26px; }
.site-nav__item:hover .site-nav__sub, .site-nav__item:focus-within .site-nav__sub {
  opacity: 1; visibility: visible; transform: none; transition: opacity .3s ease, transform .3s ease;
}
.site-nav__sub a { padding: 11px 26px; font-size: 14px; transition: color .25s, padding-left .25s; }
.site-nav__sub a:hover { color: var(--green); padding-left: 34px; }
.site-nav__cta { display: inline-flex; align-items: center; gap: 9px; }
.site-nav__cta svg { color: var(--green); transition: transform .28s ease; }
body:not(.nav-open) .site-head:not(.is-fixed) .site-nav__cta svg { color: var(--white); }
.site-nav__cta:hover svg { transform: translate(2px, -2px); }
.site-nav__lang { display: inline-flex; align-items: center; gap: 10px; margin-left: -10px; }
.site-nav__lang i { font-style: normal; opacity: .8; }
.site-nav__lang a:not(.is-active) { opacity: .65; }
.site-head__toggle { display: none; }

/* ===================================================== hero */
.hero {
  position: relative; height: max(807px, 50vw); background-size: cover; background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 97.6%, 95.4% 100%, 0 88.7%);
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__video { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity .35s ease; }
.hero__video.is-playing { opacity: 1; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .16) 15%, rgba(0, 0, 0, 0) 28%);
}
.hero__inner { position: relative; height: 100%; }
.hero__badge { position: absolute; top: 20.694%; right: var(--gutter); width: 245px; height: 121px; }
.hero__title { position: absolute; top: 60.347%; left: var(--gutter); font-weight: 500; font-size: 85px; line-height: 94px; }
.hero__title > span { display: block; }
.hero__title-2 { font-weight: 300; margin-left: 199px; margin-top: -28px; }
.hero__tag {
  position: absolute; top: 72.986%; right: 0; display: flex; align-items: center; gap: 24px;
  font-size: 30px; font-weight: 400; letter-spacing: 13.5px; text-transform: uppercase; white-space: nowrap;
}
.hero__tag::before { content: ""; width: 230px; height: 1px; background: var(--white); }
.hero__tag::after { content: ""; width: 70px; height: 1px; background: var(--white); }

/* ===================================================== intro */
.intro { padding-top: 55px; padding-bottom: 90px; }
.intro__grid { display: grid; grid-template-columns: 655px 1fr; column-gap: 0; }
.intro__title { grid-column: 1; font-size: 50px; line-height: 55px; font-weight: 500; max-width: 667px; }
.intro__copy { grid-column: 2; padding-top: 9px; }
.intro__lead { font-family: var(--font-alt); font-size: 20px; line-height: 31px; }
.intro__kicker { grid-column: 1; margin-top: 60px; font-family: var(--font-alt); font-weight: 500; font-size: 20px; line-height: 30px; letter-spacing: 2px; color: var(--green); }
.intro__copy2 { grid-column: 1 / -1; margin-top: 15px; max-width: 709px; font-family: var(--font-alt); font-size: 20px; line-height: 31px; }

/* ===================================================== responsive */
@media (max-width: 1360px) {
  .site-nav { gap: 30px; font-size: 14px; letter-spacing: 1.2px; }
}
@media (max-width: 1100px) {
  .site-head__toggle { display: grid; gap: 6px; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer; position: relative; z-index: 30; color: inherit; }
  .site-head__toggle span:not(.screen-reader-text) { width: 28px; height: 2px; background: currentColor; transition: transform .3s ease, opacity .2s ease; }
  .site-head__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-head__toggle.is-open span:nth-child(2) { opacity: 0; }
  .site-head__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; z-index: 15; margin: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0;
    padding: 140px var(--gutter) 48px; font-size: 30px; letter-spacing: 3px;
    background: rgba(244, 241, 236, .92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    color: var(--ink);
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility 0s .4s;
  }
  .site-nav::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: rgba(0, 0, 0, .04); clip-path: polygon(0 62%, 100% 88%, 100% 100%, 0 100%);
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transition: opacity .4s ease; }
  body.nav-open .site-head { color: var(--ink); }
  body.nav-open .site-head.is-fixed::before { box-shadow: none; }
  .site-nav > a, .site-nav > .site-nav__item { padding: 13px 0; opacity: 0; transform: translateY(26px); transition: opacity .5s ease, transform .5s ease; }
  .site-nav.is-open > a, .site-nav.is-open > .site-nav__item { opacity: 1; transform: none; }
  .site-nav.is-open > :nth-child(1) { transition-delay: .08s; }
  .site-nav.is-open > :nth-child(2) { transition-delay: .14s; }
  .site-nav.is-open > :nth-child(3) { transition-delay: .2s; }
  .site-nav.is-open > :nth-child(4) { transition-delay: .26s; }
  .site-nav.is-open > :nth-child(5) { transition-delay: .32s; }
  .site-nav a::after { display: none; }
  .site-nav__item { display: flex; flex-direction: column; padding: 0; }
  .site-nav__item > a { padding: 13px 0; }
  .site-nav__item > a::before { display: none; }
  .site-nav > a.site-nav__cta { padding: 13px 0; }
  .site-nav__sub {
    position: static; min-width: 0; padding: 0 0 8px 2px; margin-top: -4px;
    background: none; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; transition: none;
  }
  .site-nav__sub a {
    display: inline-flex; align-items: center; gap: 12px; padding: 9px 0;
    font-size: 16px; letter-spacing: 3px; color: var(--gray-700);
  }
  .site-nav__sub a::before { content: ""; width: 22px; height: 1px; background: var(--green); }
  .site-nav__sub a:hover, .site-nav__sub a:active { padding-left: 0; color: var(--green); }
  .site-nav__cta { opacity: 0; transform: translateY(26px); transition: opacity .5s ease .38s, transform .5s ease .38s; }
  .site-nav__cta svg { width: 15px; height: 15px; }
  .site-nav.is-open .site-nav__cta { opacity: 1; transform: none; }
  .site-nav__lang { position: absolute; left: var(--gutter); bottom: 44px; margin: 0; font-size: 17px; gap: 14px; opacity: 0; transition: opacity .5s ease .45s; }
  .site-nav.is-open .site-nav__lang { opacity: 1; }
  body.nav-open { overflow: hidden; }
  .hero__title { font-size: 64px; line-height: 1.1; }
  .hero__title-2 { margin-left: 120px; margin-top: 0; }
  .hero__tag { font-size: 20px; letter-spacing: 8px; }
  .hero__badge { width: 180px; height: auto; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__title, .intro__copy, .intro__kicker, .intro__copy2 { grid-column: 1; }
  .intro__title { font-size: 42px; line-height: 1.12; }
  .intro__copy { margin-top: 26px; }
  .intro__kicker { margin-top: 36px; }
}
@media (max-width: 860px) {
  .hero { height: 620px; }
  .hero__title { top: auto; bottom: 160px; font-size: 46px; }
  .hero__tag { top: auto; bottom: 90px; font-size: 15px; letter-spacing: 5px; }
  .hero__tag::before { width: 60px; }
  .hero__badge { top: 155px; width: 140px; }
  .intro__title { font-size: 34px; line-height: 1.15; }
}

/* ===================================================== about (rólunk) */
.rule { border: 0; border-top: 1px solid var(--ink); }
.eyebrow { position: relative; align-self: start; font-size: 20px; font-weight: 500; letter-spacing: 9px; text-transform: uppercase; }
.eyebrow::before { content: ""; position: absolute; right: calc(100% + 12px); top: calc(50% - 1px); width: 100vw; height: 1px; background: var(--ink); }
.about { padding-bottom: 60px; }
.about__row .eyebrow, .phil__grid .eyebrow { line-height: 50px; margin-top: 1px; }
.ro-intro__grid .eyebrow { line-height: 55px; margin-top: 1px; }
.ro-quote__grid .eyebrow, .team__head .eyebrow { line-height: 56px; margin-top: 1px; }
.timeline__head .eyebrow, .projects__head .eyebrow { line-height: 66px; margin-top: 0; }
.about__photos { display: grid; grid-template-columns: 488fr 489fr 330fr; gap: 27px; margin-top: 56px; }
.about__photos img { width: 100%; height: 452px; object-fit: cover; will-change: transform; }
.about__photos img:nth-child(2) { height: 381px; margin-top: 126px; }
.about__row { display: grid; grid-template-columns: 261px 1fr; margin-top: 140px; }
.about__text { font-family: var(--font-display); font-weight: 500; font-size: 45px; line-height: 50px; max-width: 1010px; }
.about__text-light { font-weight: 300; }
.stats { display: flex; justify-content: space-between; margin-top: 84px; }
.stats__item { width: 279px; border-top: 1px solid var(--ink); padding-top: 13px; }
.stats__item strong { display: block; font-size: 60px; line-height: 66px; font-weight: 400; color: var(--gray-200); font-variant-numeric: tabular-nums; }
.stats__item span { display: block; margin-top: 12px; font-size: 20px; font-weight: 500; letter-spacing: 9px; text-transform: uppercase; white-space: nowrap; }
.about__more { margin-top: 62px; text-align: right; }
.link-arrow { position: relative; display: inline-flex; align-items: center; gap: 14px; font-size: 20px; font-weight: 500; letter-spacing: 2px; color: var(--green); padding-bottom: 13px; min-width: 230px; justify-content: space-between; }
.link-arrow::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 82%;
  background: var(--ink); transition: width .4s cubic-bezier(.22,.61,.36,1), background .3s ease;
}
.link-arrow:hover::after { width: 100%; background: var(--green); }
.link-arrow svg { transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.link-arrow:hover svg { transform: scale(1.35) translate(1px, -1px); }
.link-arrow--light::after { background: var(--white); }
.link-arrow--light:hover { color: var(--green); }
.link-arrow--light:hover::after { background: var(--green); }

@media (max-width: 1100px) {
  .about__text { font-size: 32px; line-height: 1.15; }
  .about__row { grid-template-columns: 160px 1fr; }
  .stats { flex-wrap: wrap; gap: 24px; }
  .stats__item { width: calc(50% - 12px); }
  .stats__item strong { font-size: 42px; }
}
@media (max-width: 860px) {
  .about__photos { grid-template-columns: 1fr 1fr; }
  .about__photos img, .about__photos img:nth-child(2) { height: 260px; margin-top: 0; }
  .about__photos img:nth-child(3) { display: none; }
  .about__row { grid-template-columns: 1fr; row-gap: 18px; margin-top: 64px; }
  .eyebrow { padding-left: 42px; }
  .eyebrow::before { right: auto; left: 0; top: calc(50% - 1px); width: 28px; height: 1px; background: var(--green); }
  .about__row .eyebrow, .phil__grid .eyebrow, .timeline__head .eyebrow, .projects__head .eyebrow, .ro-intro__grid .eyebrow, .ro-quote__grid .eyebrow, .team__head .eyebrow { line-height: inherit; margin-top: 0; }
}

/* ===================================================== timeline */
.timeline { position: relative; margin-top: 90px; padding-bottom: 90px; }
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: max(270px, calc((100% - 1500px) / 2 + 270px)); right: 0;
  background: url('../img/timeline-band.svg') no-repeat top left / cover;
}
.timeline__head { position: relative; display: grid; grid-template-columns: 261px 1fr; padding-top: 10px; }
.timeline__title { font-size: 60px; line-height: 66px; font-weight: 500; }
.timeline__track { position: relative; height: 580px; margin-top: 40px; }
@media (min-width: 1461px) { .timeline__track { width: 1433px; } }

.timeline__axis {
  position: absolute; top: 289px; left: 0; width: 100%; height: 1px; background: var(--gray-300);
  transform: scaleX(0); transform-origin: left center; transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.timeline.is-inview .timeline__axis { transform: scaleX(1); }
.timeline__axis::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: var(--tl-progress, 77%); background: var(--green);
  transform: scaleX(0); transform-origin: left center; transition: transform 1.4s cubic-bezier(.22,.61,.36,1) .7s;
}
.timeline.is-inview .timeline__axis::before { transform: scaleX(1); }
.timeline__axis::after {
  content: ""; position: absolute; right: 0; top: -4.5px; width: 9px; height: 9px;
  border-top: 1px solid var(--gray-300); border-right: 1px solid var(--gray-300); transform: rotate(45deg);
}

.tl-item { position: absolute; top: 0; height: 100%; width: 240px; opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.timeline.is-inview .tl-item { opacity: 1; transform: none; }

.tl-item__dot {
  position: absolute; left: -2px; top: 284px; width: 11px; height: 11px; border-radius: 50%; background: var(--ink);
  transform: scale(0);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.timeline.is-inview .tl-item__dot { transform: scale(1); transition-delay: inherit; }
.timeline.is-drawn .tl-item__dot { transition-delay: 0s; }
.tl-item--has-pop:hover .tl-item__dot, .tl-item--has-pop:focus-visible .tl-item__dot { background: var(--green); transform: scale(1.45); transition-delay: 0s; }

.tl-item__year { position: absolute; left: 0; font-family: var(--font-alt); font-weight: 600; font-size: 30px; line-height: 35px; transition: color .25s ease, opacity .35s ease; }
.tl-item--has-pop:hover .tl-item__year, .tl-item--has-pop:focus-visible .tl-item__year { color: var(--green); }
.tl-item__text { position: absolute; left: 0; font-family: var(--font-alt); font-weight: 400; font-size: 16px; line-height: 22px; color: var(--gray-700); margin: 0; transition: opacity .35s ease; }
.tl-item:not(.tl-item--has-pop) .tl-item__dot { background: var(--white); border: 2px solid var(--green); box-sizing: border-box; }
@media (min-width: 861px) {
  .timeline__track:has(.tl-item:hover) .tl-item:not(:hover) .tl-item__year,
  .timeline__track:has(.tl-item:hover) .tl-item:not(:hover) .tl-item__text { opacity: .07; }

    .tl-item { pointer-events: none; }
  .tl-item::after { content: ""; position: absolute; left: 0; right: 0; pointer-events: auto; }
  .tl-item--below::after { top: 276px; bottom: 10px; }
  .tl-item--above::after { top: 60px; bottom: 277px; }
    .tl-item__year, .tl-item__text, .tl-item__dot, .tl-item__pop { pointer-events: auto; }
  .tl-item__year, .tl-item__text, .tl-item__dot { z-index: 1; }
}

.tl-item--below .tl-item__year { top: 322px; }
.tl-item--below .tl-item__text { top: 372px; }
.tl-item--above .tl-item__year { bottom: 306px; }
.tl-item--above .tl-item__text { bottom: 356px; }

.tl-item__pop {
  position: absolute; left: -40px; width: 280px; z-index: 5; bottom: 316px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease, visibility 0s .28s;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .22); pointer-events: none;
}
.tl-item--above .tl-item__pop { bottom: auto; top: 316px; transform: translateY(-12px); }
.timeline .tl-item--has-pop:hover .tl-item__pop, .timeline .tl-item--has-pop:focus-visible .tl-item__pop {
  opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s;
}
.tl-item__pop img { display: block; width: 100%; height: auto; }
.tl-item__pop--two { width: 490px; left: -145px; display: flex; gap: 14px; align-items: flex-start; background: none; box-shadow: none; }
.tl-item__pop--two img { width: 238px; height: 178px; object-fit: cover; box-shadow: 0 24px 48px rgba(0, 0, 0, .22); }
.tl-item__pop--two img:nth-child(2) { height: 150px; margin-top: 48px; }
.tl-item:last-child .tl-item__pop { left: auto; right: 0; }

@media (max-width: 860px) {
  .timeline__head { grid-template-columns: 1fr; row-gap: 12px; }
  .timeline__title { font-size: 38px; line-height: 1.1; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline__axis, .timeline__axis::before, .tl-item, .tl-item__dot { transition: none; transform: none; opacity: 1; }
}

/* ===================================================== projects */
.projects { padding: 60px 0; }
.projects__head { display: grid; grid-template-columns: 261px 1fr auto; align-items: start; }
.projects__title { font-family: var(--font-display); font-weight: 500; font-size: 60px; line-height: 66px; max-width: 690px; }
.projects__title .dim { color: var(--gray-400); }
.projects__more { padding-top: 6px; }
.projects__feature { display: block; position: relative; height: 719px; margin-top: 86px; background-size: cover; background-position: center; color: var(--white); }
.projects__feature::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,0) 70%); transition: opacity .4s ease; }
.projects__feature:hover::before { opacity: .75; }
.projects__feature h3::after {
  content: ""; position: absolute; left: var(--gutter); bottom: -18px; width: calc(100% - var(--gutter)); height: 2px;
  background: var(--white); transform: scaleX(0); transform-origin: left center; transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.projects__feature:hover h3::after { transform: scaleX(1); }

.projects__feature-inner { position: relative; height: 100%; padding: 240px 0 0; display: flex; flex-direction: column; align-items: flex-start; }
.projects__feature h3 { position: relative; font-size: 60px; line-height: 66px; font-weight: 400; max-width: 400px; padding-left: var(--gutter); }
.projects__feature-tag { margin-top: 21px; padding-left: var(--gutter); font-size: 15px; line-height: 20px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; }
.projects__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; margin-top: 22px; }
.projects__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 56px 23px; }
.project-card__media { display: block; position: relative; overflow: hidden; }
.project-card__media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left center; transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.project-card img { width: 100%; aspect-ratio: 436 / 318; height: auto; object-fit: cover; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.project-card:hover img { transform: scale(1.05); }
.project-card:hover .project-card__media::after { transform: scaleX(1); }
.project-card { display: flex; flex-direction: column; }
.project-card h3 { margin-top: 22px; font-size: 45px; line-height: 45px; font-weight: 400; overflow-wrap: break-word; hyphens: auto; }
.project-card h3.is-long { font-size: 34px; line-height: 1.2; }
.project-card h3.is-xlong { font-size: 26px; line-height: 1.35; }
.projects__grid:not(.projects__grid--3) .project-card h3 { font-size: 34px; line-height: 1.12; }
.projects__grid:not(.projects__grid--3) .project-card h3.is-long { font-size: 27px; }
.projects__grid:not(.projects__grid--3) .project-card h3.is-xlong { font-size: 22px; }
.project-card__cat { display: block; margin-top: auto; padding-top: 18px; font-size: 13px; line-height: 17px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); transition: color .3s ease; }
.project-card:hover .project-card__cat { color: var(--green); }
.projects__more--bottom { text-align: right; margin-top: 64px; }

@media (max-width: 1100px) {
  .projects__head { grid-template-columns: 1fr; row-gap: 16px; }
  .projects__title { font-size: 40px; line-height: 1.1; }
  .projects__feature { height: 480px; margin-top: 48px; }
  .projects__feature-inner { justify-content: center; padding-top: 0; }
  .projects__feature h3 { font-size: 40px; line-height: 1.1; }
  .projects__feature-tag { margin-top: 20px; }
  .projects__grid { grid-template-columns: 1fr 1fr; gap: 32px 17px; }
  .project-card h3 { font-size: 30px; line-height: 1.05; }
  .project-card h3.is-long { font-size: 24px; line-height: 1.2; }
  .project-card h3.is-xlong { font-size: 20px; line-height: 1.35; }
}
@media (max-width: 640px) {
  .projects__grid { grid-template-columns: 1fr; }
}

/* ===================================================== philosophy */
.phil { padding: 90px 0 60px; }
.phil__grid { display: grid; grid-template-columns: 353px 1fr; }
.phil__text { font-family: var(--font-display); font-weight: 500; font-size: 45px; line-height: 50px; max-width: 1039px; }
.phil__light { font-weight: 300; }

/* ===================================================== services */
.services { padding: 60px 0 0; }
.services__head { display: flex; justify-content: space-between; align-items: start; }
.services__more--bottom { display: none; }
.services__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 90px 75px; margin-top: 122px; padding-bottom: 120px; }
.service { display: grid; grid-template-columns: 51px 1fr; gap: 25px; align-items: start; }
.service img { width: 51px; height: 51px; object-fit: contain; }
.service h3 { font-size: 27px; line-height: 30px; font-weight: 500; }

/* ===================================================== cta */
.cta { position: relative; height: 636px; background-size: cover; background-position: center; color: var(--white); }
.cta::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .5); }
.cta { clip-path: polygon(0 0, 100% 0, 100% 99%, 95.7% 100%, 0 84.3%); }
.cta__inner { position: relative; height: 100%; }
.cta .eyebrow { position: absolute; top: 190px; line-height: 66px; max-width: 230px; }
.cta .eyebrow--multi { line-height: 30px; margin-top: 6px; }
.eyebrow--light { color: var(--white); }
.eyebrow--light::before { background: var(--white); }
.cta__body { position: absolute; top: 190px; left: calc(300px + var(--gutter)); max-width: 1077px; }
.cta__body h2 { font-size: 60px; line-height: 66px; font-weight: 300; }
.cta__link { margin-top: 62px; }
.link-arrow--light { color: var(--white); border-color: var(--white); }
.link-arrow--light:hover { color: var(--green); border-color: var(--green); }

/* ===================================================== footer */
.site-foot { position: relative; padding: 0 0 26px; background: var(--paper); }
.site-foot::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; top: -110px; background: var(--white); clip-path: polygon(0 23px, 39.5% 64px, 11% 100%, 0 100%); }
.site-foot .container { position: relative; }
.site-foot__brand { display: flex; gap: 40px; align-items: flex-start; margin-top: -10px; }
.site-foot__brand img { width: 169px; height: 56px; }
.site-foot__logo { display: block; flex: 0 0 auto; transform-origin: left center; transition: transform .3s ease; }
.site-foot__logo:hover { transform: scale(1.05); }
.site-foot__logo:active { transform: scale(.97); }
.site-foot__tagline { font-size: 17px; line-height: 20px; max-width: 340px; }
.site-foot__cols { display: grid; grid-template-columns: 508px 552px 1fr; margin-top: 90px; }
.site-foot__col { border-top: 1px solid var(--ink); padding-top: 16px; margin-right: 78px; }
.site-foot__col:last-child { margin-right: 0; }
.site-foot__label { display: block; font-size: 20px; line-height: 26px; font-weight: 500; letter-spacing: 9px; text-transform: uppercase; }
.site-foot__value { display: block; margin-top: 6px; font-size: 30px; line-height: 33px; font-weight: 500; max-width: 430px; transition: color .3s ease; }
a.site-foot__value:hover { color: var(--green); }
.site-foot__bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 110px; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.site-foot__legal { display: inline-flex; gap: 32px; }
.site-foot__credits { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.site-foot__bottom a { transition: color .3s ease; }
.site-foot__bottom a:hover { color: var(--green); }

@media (max-width: 1100px) {
  .phil__grid { grid-template-columns: 1fr; row-gap: 18px; }
  .phil__text { font-size: 32px; line-height: 1.15; }
  .services__grid { grid-template-columns: 1fr 1fr; gap: 48px 40px; margin-top: 64px; }
  .service h3 { font-size: 22px; line-height: 1.15; }
  .cta__body { left: 0; padding-left: var(--gutter); top: 240px; }
  .cta__body h2 { font-size: 40px; line-height: 1.1; }
  .cta .eyebrow { display: none; }
  .site-foot__cols { grid-template-columns: 1fr; row-gap: 32px; margin-top: 56px; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .site-head__brand img { width: 132px; height: auto; }
  .site-foot__brand { flex-direction: column; gap: 20px; padding-top: 30px; }
  .cta { height: auto; min-height: 480px; }
  .cta__inner { display: block; height: auto; }
  .cta__body { position: static; padding: 96px var(--gutter) 150px; max-width: none; }
  .cta__link { margin-top: 36px; }
  .cta { clip-path: polygon(0 0, 100% 0, 100% 99%, 95.7% 100%, 0 92%); }
  .site-foot__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-foot__legal { flex-direction: column; gap: 8px; }
  .site-foot__credits { text-align: left; }
  .site-foot::before { top: 0; clip-path: polygon(0 14px, 62% 44px, 30% 100%, 0 100%); }
}

/* ===================================================== small screens */
@media (max-width: 640px) {
  .eyebrow { font-size: 14px; letter-spacing: 5px; }
  .eyebrow::before { top: 9px; }
  .stats { gap: 20px; margin-top: 56px; }
  .stats__item strong { font-size: 36px; line-height: 1.1; }
  .stats__item span { font-size: 12px; letter-spacing: 2.5px; white-space: normal; margin-top: 8px; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .services__more--top { display: none; }
  .services__grid { padding-bottom: 48px; }
  .services__more--bottom { display: block; padding-bottom: 72px; }
  .link-arrow { min-width: 200px; font-size: 17px; }
  .site-foot__label { font-size: 14px; letter-spacing: 5px; }
  .site-foot__value { font-size: 22px; line-height: 1.2; }
  .timeline__title { font-size: 32px; }
  .hero__title { font-size: 38px; bottom: 140px; }
  .hero__title-2 { margin-left: 44px; }
  .hero__tag { font-size: 12px; letter-spacing: 3.5px; gap: 12px; }
  .hero__badge { width: 104px; top: 145px; }
}

/* ===================================================== motion */
.js .reveal { opacity: 0; transform: translateY(26px); }
.js .reveal:not(.is-in) { transition: none !important; }
.js .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }

.js .txtfx .ch { opacity: .13; transition: opacity .45s ease; }
.js .txtfx.is-in .ch { opacity: 1; }
.js .txtfx:not(.is-in) .ch { transition-delay: 0s !important; }

.js .fx-build { clip-path: inset(0 50% 0 50%); transition: clip-path 1s cubic-bezier(.22,.61,.36,1); }
.js .fx-build.is-in { clip-path: inset(0 0 0 0); }
.js .fx-build .projects__feature-inner { opacity: 0; transition: opacity .5s ease; }
.js .fx-build.is-in .projects__feature-inner { opacity: 1; transition-delay: .5s; }

.js .about__photos img { clip-path: inset(16% 0 16% 0); opacity: 0; transition: clip-path .9s cubic-bezier(.22,.61,.36,1), opacity .9s ease; }
.js .about__photos.is-in img { clip-path: inset(0 0 0 0); opacity: 1; }
.js .about__photos img:nth-child(2) { transition-delay: .15s; }
.js .about__photos img:nth-child(3) { transition-delay: .3s; }
.hero__tag, .hero__badge { animation: fober-hero-in .9s ease both; }
.hero__tag { animation-delay: .3s; }
.hero__badge { animation-delay: .5s; }
.js .txtfx--hero .ch { opacity: 0; transition: opacity .6s ease; }
@keyframes fober-hero-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .txtfx .ch, .js .about__photos img { opacity: 1; transform: none; transition: none; clip-path: none; }
  .js .fx-build, .js .fx-build .projects__feature-inner { clip-path: none; opacity: 1; transition: none; }
  .hero__tag, .hero__badge { animation: none; }
  .site-head.has-anim { transition: none; }
  .site-head__brand, .site-head__toggle, .site-nav > *, .site-head__inner::after { animation: none; }
}

/* ===================================================== responsive round 2 */
@media (min-width: 861px) and (max-width: 1460px) {
  .hero__tag { top: 696px; }
}

@media (max-width: 860px) {
  .timeline .container:last-child { overflow: visible; padding-bottom: 0; }
  .timeline::before { left: 26%; }
  .timeline__axis { display: none; }
  .timeline__track {
    zoom: 1; width: auto; height: auto; margin-top: 36px; position: relative;
    display: block; padding-left: 32px;
  }
  .timeline__track::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px; background: var(--gray-300); }
  .tl-item {
    position: relative !important; left: 0 !important; top: 0 !important; width: auto !important;
    height: auto; transition-delay: 0s !important;
    display: flex; flex-direction: column; align-items: stretch; padding-bottom: 44px;
  }
  .tl-item:last-child { padding-bottom: 8px; }
  .timeline .tl-item, .timeline.is-inview .tl-item { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
  .timeline .tl-item.is-in, .timeline.is-inview .tl-item.is-in { opacity: 1; transform: none; }
  .tl-item__dot {
    position: absolute !important; left: -32px; top: 9px; width: 11px; height: 11px; border-radius: 50%;
    background: var(--gray-300); transform: none !important; transition: background .4s ease;
  }
  .timeline.is-inview .tl-item__dot { transform: none; transition-delay: 0s; }
  .tl-item.is-in .tl-item__dot { background: var(--green); }
  .tl-item:not(.tl-item--has-pop) .tl-item__dot { background: var(--white); border: 2px solid var(--gray-300); }
  .tl-item.is-in:not(.tl-item--has-pop) .tl-item__dot { background: var(--white); border-color: var(--green); }
  .tl-item__year { position: static; order: 1; font-size: 26px; line-height: 1.2; margin-bottom: 10px; }
  .tl-item__pop {
    position: static; order: 2; width: 100%; margin: 2px 0 14px;
    opacity: 1; visibility: visible; transform: none !important; transition: none;
    box-shadow: none; pointer-events: auto;
  }
  .tl-item__pop img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; margin: 0 !important; transition: none; }
  .tl-item__pop--two { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: none; }
  .tl-item__pop--two img { aspect-ratio: 1 / 1; }
  .tl-item__text { position: static; order: 3; font-size: 15px; line-height: 1.5; }
  .tl-item--has-pop:hover .tl-item__dot, .tl-item--has-pop:focus-visible .tl-item__dot { width: 11px; height: 11px; top: 9px; }
  .tl-item--has-pop:hover .tl-item__year, .tl-item--has-pop:focus-visible .tl-item__year { color: inherit; }
}

/* ===================================================== subpages */
.page-head {
  position: relative; height: 394px; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 97.6%, 95.4% 100%, 0 88.7%);
}
.page-head::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .45); }
.page-head__title { position: relative; font-family: var(--font-nav); font-weight: 600; font-size: 40px; letter-spacing: 8px; text-transform: uppercase; padding-bottom: 30px; }

.svcs { padding: 64px 0 40px; }
.svcs__list { margin-top: 56px; }
.svc { display: grid; grid-template-columns: minmax(0, 1fr) 528px; column-gap: 51px; align-items: start; }
.svc + .svc { margin-top: 56px; }
.svc::after { content: ""; grid-column: 1; height: 1px; background: #C6C6C6; margin-top: 56px; }
.svc__text { display: grid; grid-template-columns: 78px minmax(0, 1fr); }
.svc__icon { grid-row: 1; grid-column: 1; align-self: center; justify-self: start; width: auto; }
.svc__title { grid-row: 1; grid-column: 2; align-self: center; font-size: 40px; line-height: 46px; font-weight: 500; max-width: 90%; }
.svc__body { grid-row: 2; grid-column: 2; margin-top: 26px; font-family: var(--font-alt); font-size: 17px; line-height: 27px; }
.svc__body p + p { margin-top: 16px; }
.svc__media { margin: 0; min-width: 0; }
.svc__media img { width: 100%; aspect-ratio: 528 / 321; object-fit: cover; }

.ro-intro { padding: 62px 0 30px; }
.ro-intro__grid { display: grid; grid-template-columns: 226px 1fr auto; align-items: start; }
.ro-intro__title { font-size: 50px; line-height: 55px; font-weight: 500; max-width: 760px; }
.ro-intro__badge { width: 245px; height: auto; justify-self: end; margin-top: -14px; }
.ro-owner { padding: 26px 0 10px; }
.ro-owner__box { margin: 0 auto; max-width: 1112px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); padding: 34px 0 42px; }
.ro-label { font-size: 20px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--green); }
.ro-lead { margin-top: 24px; font-family: var(--font-body); font-weight: 400; font-size: 20px; line-height: 31px; max-width: 900px; }
.ro-content { padding: 44px 0 40px; }
.ro-grid { display: grid; grid-template-columns: 510px 510px; column-gap: 60px; row-gap: 44px; justify-content: center; }
.ro-cell--body { max-width: 480px; }
.ro-body p, .ro-cell--side p, .ro-cell--side div p { font-family: var(--font-body); font-weight: 400; font-size: 17px; line-height: 26px; }
.ro-body p + p, .ro-cell--side div p + p { margin-top: 16px; }
.ro-cell img { width: 100%; aspect-ratio: 509 / 348; object-fit: cover; }
.ro-cell--side { padding-top: 0; }
.ro-cell--side p.ro-highlight { margin: 22px 0; padding-left: 24px; border-left: 2px solid var(--ink); font-family: var(--font-body); font-weight: 500; font-size: 30px; line-height: 40px; }
.ro-quote { padding: 96px 0 80px; }
.ro-quote__grid { display: grid; grid-template-columns: 226px 1fr; }
.ro-quote__text { justify-self: end; max-width: 480px; font-family: var(--font-body); font-size: 45px; line-height: 56px; font-weight: 500; }
.about--compact { padding-top: 20px; }
.about--compact .stats { margin-bottom: 70px; }

.team { padding: 70px 0 30px; }
.team__head { display: grid; grid-template-columns: 261px 1fr; }
.team__title { font-size: 50px; line-height: 56px; font-weight: 500; max-width: 700px; }
.team__grid { display: grid; grid-template-columns: repeat(3, 320px); justify-content: center; gap: 76px 140px; margin-top: 80px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 250 / 270; object-fit: cover; object-position: 50% 12%; }
.team-card__name { margin-top: 24px; font-size: 30px; line-height: 1.15; font-weight: 500; }
.team-card__role { margin-top: 10px; font-size: 14px; line-height: 20px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gray-400); }
.team-card__pos, .team-card__owner { display: block; }
.team-card__role::after { content: ""; display: block; width: 44px; height: 1px; background: var(--gray-300); margin: 18px auto 0; }
.vez-group { margin: 100px 0 0; }
.vez-group img { width: 100%; height: auto; display: block; }

.kap { padding: 64px 0 80px; }
.kap__grid { display: grid; grid-template-columns: 1fr 580px; column-gap: 110px; margin-top: 46px; }
.kap__h { font-size: 40px; line-height: 48px; font-weight: 500; padding-bottom: 18px; border-bottom: 1px solid var(--gray-300); margin-bottom: 30px; }
.kap-col--info .kap__h { margin-top: 56px; }
.kap-col--info .kap__h:first-child { margin-top: 0; }
.kap-names { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kap-names p { font-family: var(--font-alt); font-weight: 600; font-size: 17px; line-height: 25px; }
.kap-names__en { color: var(--gray-400); }
.kap-details { margin-top: 26px; font-family: var(--font-alt); font-weight: 500; font-size: 17px; line-height: 25px; }
.kap-form { display: flex; flex-direction: column; gap: 18px; }
.kap-form input[type="text"], .kap-form input[type="email"], .kap-form textarea, .kap-form__file {
  width: 100%; border: 1px solid var(--gray-300); background: transparent; padding: 15px 18px;
  font-family: var(--font-body); font-size: 14px; letter-spacing: 2px; color: var(--ink);
}
.kap-form input:focus, .kap-form textarea:focus { outline: none; border-color: var(--ink); }
.kap-form ::placeholder { color: var(--gray-400); text-transform: uppercase; letter-spacing: 2px; }
.kap-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.kap-form textarea { resize: vertical; min-height: 220px; }
.kap-form__file { cursor: pointer; color: var(--gray-400); text-transform: uppercase; }
.kap-form__file input { display: none; }
.kap-form__hp { position: absolute !important; left: -9999px !important; }
.kap-form__consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 4px; font-family: var(--font-alt); font-size: 15px; line-height: 22px; cursor: pointer; }
.kap-form__consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.kap-form__consent a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.kap-form__consent a:hover { color: var(--green-deep); }
.kap-form__submit { text-align: right; margin-top: 4px; }
.kap-form__submit .link-arrow { background: none; border: 0; cursor: pointer; }
.kap-form__notice { margin-bottom: 18px; padding: 14px 18px; font-family: var(--font-alt); font-size: 15px; }
.kap-form__notice--ok { background: rgba(63, 158, 73, .12); color: var(--green-deep); }
.kap-form__notice--err { background: rgba(190, 40, 40, .1); color: #8c1c1c; }
.kap-map { height: 520px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), 95.7% 100%, 0 calc(100% - 100px)); }
.kap-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.flt { padding: 62px 0 8px; }
.flt__row { display: flex; justify-content: center; gap: 34px; }
.flt__group { width: 294px; }
.flt__icon { display: flex; align-items: flex-end; height: 67px; margin-left: 8px; }
.flt__icon img { width: auto; max-height: 67px; }
.flt__h { margin: 17px 0 0 8px; font-size: 27px; line-height: 30px; font-weight: 500; }
.flt__dd { position: relative; margin-top: 19px; }
.flt__cur {
  position: relative; display: block; width: 100%; padding: 0 24px 8px 2px;
  background: none; border: 0; border-bottom: 1px solid var(--ink); cursor: pointer;
  font-family: var(--font-body); font-size: 13px; line-height: 21px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--ink); text-align: left;
}
.flt__dd.has-clear .flt__cur { padding-right: 48px; }
.flt__cur::after {
  content: ""; position: absolute; right: 6px; top: 5px; width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform .3s ease;
}
.flt__dd.is-open .flt__cur::after { transform: rotate(225deg); }
.flt__clear {
  position: absolute; top: -2px; right: 26px; z-index: 11;
  font-size: 19px; line-height: 24px; font-weight: 400; color: var(--ink);
  transition: color .25s ease;
}
.flt__clear:hover { color: var(--green); }
.flt__cur .is-tight { font-size: 11px; letter-spacing: 1.2px; }
.flt__list {
  position: absolute; top: 100%; left: 0; z-index: 10;
  min-width: 100%; width: max-content; max-width: calc(100vw - 2 * var(--gutter));
  display: flex; flex-direction: column; padding: 12px 0;
  background: var(--gray-100); box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .28s ease, transform .28s ease, visibility 0s .28s;
}
.flt__dd.is-open .flt__list { opacity: 1; visibility: visible; transform: none; transition: opacity .28s ease, transform .28s ease; }
.flt__list a { padding: 3px 16px 3px 8px; font-size: 13px; line-height: 19px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: #7A7A7A; white-space: nowrap; transition: color .25s; }
.flt__list a:hover, .flt__list a.is-active { color: var(--ink); }
.parch { padding: 44px 0 40px; }
.parch__empty { text-align: center; padding: 48px 0 36px; }
.parch__empty-title { font-size: 26px; line-height: 1.25; font-weight: 500; }
.parch__empty-text { max-width: 540px; margin: 14px auto 32px; font-family: var(--font-alt); font-size: 17px; line-height: 26px; color: var(--gray-700); }
.plist { padding: 40px 0 60px; }
.plist__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 23px; margin-top: 58px; }
.plist__item { display: flex; flex-direction: column; background: var(--gray-100); padding: 20px 24px 24px; }
.plist__title { font-family: var(--font-display); font-size: 22px; line-height: 27px; font-weight: 500; overflow-wrap: break-word; hyphens: auto; }
.plist__text { margin-top: 10px; font-family: var(--font-alt); font-size: 16px; font-weight: 400; line-height: 22px; color: var(--gray-700); }
.plist__cat { display: block; margin-top: auto; padding-top: 12px; font-size: 13px; line-height: 17px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); }
.projects__title--narrow { max-width: 980px; }

.prj { padding: 78px 0 60px; }
.prj__title { text-align: center; font-size: 55px; line-height: 1.1; font-weight: 400; }
.prj__cat { margin-top: 20px; text-align: center; font-size: 13px; line-height: 17px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); }
.prj__lead { max-width: 860px; margin: 26px auto 0; text-align: center; font-family: var(--font-alt); font-size: 20px; line-height: 31px; font-weight: 500; color: var(--gray-700); }
.prj__body { max-width: 900px; margin: 40px auto 0; font-family: var(--font-alt); font-size: 17px; line-height: 27px; }
.prj__body p + p { margin-top: 16px; }
.prj__gallery { margin-top: 68px; display: flex; flex-direction: column; gap: 26px; }
.prj__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pg { padding: 70px 0 40px; }
.pg .entry { margin-top: 0; }
.vjframe { margin-top: 10px; }

.news { padding: 64px 0 80px; }
.news__feat { display: grid; grid-template-columns: 528px minmax(0, 1fr); column-gap: 43px; align-items: start; margin-top: 66px; }
.news__feat-media img, .news-card__media img { width: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.22,.61,.36,1); }
.news__feat-media, .news-card__media { display: block; overflow: hidden; }
.news__feat-media:hover img, .news-card:hover .news-card__media img { transform: scale(1.05); }
.news__feat-media img { aspect-ratio: 528 / 321; }
.news__feat-title { font-size: 40px; line-height: 44px; font-weight: 500; max-width: 760px; }
.news__excerpt { margin-top: 30px; font-family: var(--font-alt); font-size: 17px; line-height: 24px; max-width: 700px; }
.news__more { margin-top: 32px; }
.news__more .link-arrow { min-width: 250px; font-size: 17px; letter-spacing: 2.5px; font-weight: 600; }
.news__rule { border: 0; height: 1px; background: var(--gray-200); margin: 28px 0 0; }
.news__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 60px 57px; margin-top: 30px; }
.news-card { display: flex; flex-direction: column; }
.news-card .news__more { margin-top: auto; padding-top: 26px; }
.news-card__title { margin-top: 30px; font-size: 30px; line-height: 33px; font-weight: 500; overflow-wrap: break-word; hyphens: auto; }
.news-card__title.is-long { font-size: 26px; line-height: 1.15; }
.news-card__title.is-xlong { font-size: 22px; line-height: 1.2; }
.news-card__title a:hover, .news__feat-title a:hover { color: var(--green); transition: color .3s ease; }
.news-card__media img { aspect-ratio: 416 / 253; }
.news-card .news__excerpt { margin-top: 24px; }
.news-card .news__more { margin-top: 26px; }
.news__empty { margin-top: 40px; font-family: var(--font-alt); font-size: 17px; }
.news .pagination { margin-top: 76px; }
.news .nav-links { display: flex; justify-content: center; align-items: center; gap: 8px; }
.news .page-numbers {
  min-width: 44px; height: 44px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; letter-spacing: 1px; color: var(--ink);
  border: 1px solid transparent; transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.news .page-numbers.current { color: var(--green); border-color: var(--green); }
.news a.page-numbers:hover { color: var(--green); }
.news .page-numbers.prev, .news .page-numbers.next { border-color: var(--gray-300); }
.news .page-numbers.prev:hover, .news .page-numbers.next:hover { border-color: var(--green); background: var(--green); color: var(--white); }
.news .page-numbers.dots { color: var(--gray-400); }
.news .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

.hir { padding: 70px 0 30px; }
.hir__head { max-width: 970px; }
.hir__date { font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--green); }
.hir__title { margin-top: 16px; font-size: 45px; line-height: 1.15; font-weight: 500; }
.hir__back { max-width: 970px; margin: 70px auto 30px; }
.entry { max-width: 830px; margin: 44px auto 0; font-family: var(--font-alt); font-size: 17px; line-height: 27px; }
.entry > * + * { margin-top: 22px; }
.entry h2 { margin-top: 48px; font-family: var(--font-body); font-size: 30px; line-height: 1.2; font-weight: 500; }
.entry h3 { margin-top: 40px; font-family: var(--font-body); font-size: 22px; line-height: 1.25; font-weight: 600; }
.entry h4 { margin-top: 34px; font-family: var(--font-body); font-size: 18px; font-weight: 600; }
.entry a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; transition: color .25s ease; }
.entry a:hover { color: var(--green-deep); }
.entry ul, .entry ol { padding-left: 6px; display: flex; flex-direction: column; gap: 10px; }
.entry ul li { list-style: none; padding-left: 26px; position: relative; }
.entry ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 1px; background: var(--green); }
.entry ol { counter-reset: fober-ol; }
.entry ol li { list-style: none; padding-left: 32px; position: relative; counter-increment: fober-ol; }
.entry ol li::before { content: counter(fober-ol); position: absolute; left: 0; top: 2px; width: 21px; height: 21px; border: 1.2px solid var(--green); border-radius: 50%; color: var(--green); font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; }
.entry blockquote { margin: 40px 0; padding: 6px 0 6px 28px; border-left: 2px solid var(--green); }
.entry blockquote p { font-family: var(--font-alt); font-size: 24px; line-height: 36px; font-weight: 600; }
.entry blockquote cite { display: block; margin-top: 14px; font-size: 13px; font-style: normal; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gray-400); }
.entry img { width: 100%; height: auto; display: block; }
.entry figure { margin: 44px 0; }
.entry figcaption { margin-top: 12px; font-size: 13px; line-height: 19px; letter-spacing: 1px; color: var(--gray-400); }
.entry hr { border: 0; height: 1px; background: var(--gray-200); margin: 48px 0; }
.entry table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 22px; }
.entry .wp-block-table { overflow-x: auto; }
.entry th, .entry td { padding: 12px 16px; border: 1px solid var(--gray-200); text-align: left; }
.entry th { font-weight: 600; background: rgba(63, 158, 73, .07); }
.entry strong { font-weight: 700; }
.entry .wp-block-quote.is-style-plain { border: 0; padding: 0; }
.entry .has-text-align-center { text-align: center; }

.kin { padding: 74px 0 30px; }
.kin__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.kin__title { font-size: 40px; line-height: 52px; font-weight: 600; }
.kin__hl { color: var(--green); }
.kin__text { max-width: 700px; margin: 22px auto 0; font-family: var(--font-alt); font-size: 17px; line-height: 27px; }
.kdays { padding: 60px 0 0; }
.kdays__grid { display: grid; grid-template-columns: minmax(0, 1fr) 620px; column-gap: 80px; margin-top: 34px; }
.kdays__title { font-size: 44px; line-height: 1.2; font-weight: 500; max-width: 580px; }
.kdays__lead { margin-top: 30px; font-family: var(--font-alt); font-size: 17px; line-height: 27px; font-weight: 600; max-width: 660px; }
.klist { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; margin-top: 34px; list-style: none; padding: 0; }
.klist li { display: flex; gap: 10px; align-items: flex-start; font-family: var(--font-alt); font-size: 16px; line-height: 22px; font-weight: 500; color: var(--gray-400); }
.klist .check { flex: 0 0 auto; color: var(--green); margin-top: 2px; }
.kdays__media { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.kdays__media img { width: 100%; object-fit: cover; }
.kdays__media img:first-child { aspect-ratio: 360 / 310; }
.kdays__media img:last-child { aspect-ratio: 250 / 470; margin-top: 84px; }
.kband { background: var(--paper); }
.kpos { padding: 84px 0 40px; }
.kpos__head { display: grid; grid-template-columns: minmax(0, 1fr) 540px; align-items: start; column-gap: 60px; margin-top: 20px; }
.kpos__title { font-size: 55px; line-height: 1.12; font-weight: 500; max-width: 660px; }
.kpos__text { font-family: var(--font-alt); font-size: 17px; line-height: 26px; font-weight: 600; padding-top: 12px; }
.kpos__list { display: flex; flex-direction: column; gap: 28px; margin-top: 56px; }
.kjob { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto; align-items: center; gap: 24px; background: var(--white); border-radius: 14px; padding: 46px 52px; }
.kjob__title { font-size: 28px; line-height: 1.2; font-weight: 600; }
.kjob__meta { display: flex; flex-direction: column; gap: 13px; }
.kjob__meta span { display: inline-flex; align-items: center; gap: 11px; font-size: 16px; font-weight: 600; }
.kjob__meta svg { color: var(--gray-400); flex: 0 0 auto; }
.kjob__more { margin: 0; }
.kjob { transition: box-shadow .35s ease; }
.js .kjob.reveal.is-in { transition: opacity .7s ease, transform .7s ease, box-shadow .35s ease; }
.kjob:hover { box-shadow: 0 18px 44px rgba(0, 0, 0, .08); }
.kjob:hover .link-arrow::after { width: 100%; background: var(--green); }
.kjob:hover .link-arrow svg { transform: scale(1.35) translate(1px, -1px); }
.link-arrow--green { color: var(--green); }
.koffer { padding: 40px 0 100px; }
.koffer__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 80px 45px; margin-top: 44px; }
.koffer-card { background: var(--white); border-radius: 14px; padding: 22px 26px 28px; }
.koffer-card__icon { width: 34px; height: 34px; }
.koffer-card__title { margin-top: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); font-size: 22px; line-height: 1.25; font-weight: 600; }
.koffer-card__text { margin-top: 14px; font-family: var(--font-alt); font-size: 16px; line-height: 23px; font-weight: 500; }
.ksel { padding: 44px 0 100px; }
.ksel__grid { display: grid; grid-template-columns: minmax(0, 1fr) 660px; gap: 60px; align-items: start; margin-top: 20px; }
.ksel__title { font-size: 44px; line-height: 1.15; font-weight: 500; }
.ksel__lead { margin-top: 24px; font-family: var(--font-alt); font-size: 17px; line-height: 26px; font-weight: 600; max-width: 640px; }
.ksel__steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.ksel__card { background: var(--white); border-radius: 14px; padding: 20px 18px 26px; }
.ksel__num { display: inline-flex; align-items: center; justify-content: center; width: 27px; height: 27px; border: 1.4px solid var(--green); border-radius: 50%; color: var(--green); font-size: 14px; font-weight: 600; }
.ksel__card p { margin-top: 14px; font-size: 16px; line-height: 22px; font-weight: 600; }
.cta__text { margin-top: 26px; max-width: 540px; font-family: var(--font-alt); font-size: 17px; line-height: 26px; font-weight: 600; }
.cta__actions { margin-top: 42px; display: flex; align-items: center; gap: 44px; flex-wrap: wrap; }
.btn-outline { display: inline-flex; align-items: center; gap: 12px; padding: 13px 22px; border: 1px solid var(--green); color: var(--white); font-size: 15px; font-weight: 600; letter-spacing: 2px; transition: background .3s ease; }
.btn-outline svg { color: var(--green); transition: transform .28s ease; }
.btn-outline:hover { background: rgba(63, 158, 73, .28); }
.btn-outline:hover svg { transform: translate(2px, -2px); }
.cta__mail { font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--white); padding-bottom: 6px; transition: color .3s ease, border-color .3s ease; }
.cta__mail:hover { color: var(--green); border-color: var(--green); }

.eyebrow--green { color: var(--green); }
.kpost { padding: 74px 0 0; }
.kpost__title { margin-top: 20px; font-size: 50px; line-height: 1.15; font-weight: 500; }
.kpost__lead { margin-top: 26px; max-width: 840px; font-family: var(--font-alt); font-size: 17px; line-height: 27px; font-weight: 600; }
.kpost__meta { display: flex; flex-wrap: wrap; gap: 16px 44px; margin-top: 44px; font-size: 16px; font-weight: 600; }
.kpost__meta span { display: inline-flex; align-items: center; gap: 11px; }
.kpost__meta svg { color: var(--gray-400); flex: 0 0 auto; }
.kpost__cards { margin-top: 56px; padding: 74px 0 84px; }
.kpost__cardgrid { display: grid; grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr); gap: 28px; }
.kpost__cardgrid--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.kpost__body { margin: 34px 0 0; max-width: 860px; }
.kcard { background: var(--white); border-radius: 14px; padding: 42px 50px 50px; }
.kcard__title { font-size: 40px; line-height: 1.15; font-weight: 600; }
.kcard .klist { grid-template-columns: 1fr; gap: 16px; margin-top: 30px; }
.kcard .klist li { color: var(--ink); }
.klist--plain { display: flex; flex-direction: column; gap: 14px; }
.klist--plain li { font-family: var(--font-alt); font-size: 16px; line-height: 24px; font-weight: 500; color: var(--ink); }
.kcard__text { margin-top: 20px; font-family: var(--font-alt); font-size: 16px; line-height: 24px; font-weight: 500; }
.kapply { margin-top: 26px; display: flex; flex-direction: column; gap: 17px; list-style: none; padding: 0; }
.kapply li { display: flex; align-items: center; gap: 12px; font-family: var(--font-alt); font-size: 16px; font-weight: 600; }
.kapply svg { color: var(--green); flex: 0 0 auto; }
.kapply a { transition: color .25s ease; }
.kapply a:hover { color: var(--green); }
.kstrip { display: grid; grid-template-columns: 1.15fr 1.15fr .78fr; gap: 26px; align-items: start; padding-top: 0; padding-bottom: 84px; }
.kstrip img { width: 100%; object-fit: cover; }
.kstrip img:nth-child(1) { aspect-ratio: 470 / 420; }
.kstrip img:nth-child(2) { aspect-ratio: 470 / 350; margin-top: 120px; }
.kstrip img:nth-child(3) { aspect-ratio: 320 / 420; }

.prj__g { margin: 0; }
.prj__zoom { display: block; cursor: zoom-in; }
.prj__g img { width: 100%; height: auto; object-fit: cover; display: block; }

.lb {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 8, .93);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility 0s .3s;
}
.lb.is-open { opacity: 1; visibility: visible; transition: opacity .3s ease; }
.lb__img { max-width: min(1360px, 88vw); max-height: 86vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); cursor: zoom-out; }
.lb__close { position: absolute; top: 28px; right: 32px; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; }
.lb__close::before, .lb__close::after { content: ""; position: absolute; left: 8px; right: 8px; top: 50%; height: 2px; background: var(--white); transition: transform .3s ease; }
.lb__close::before { transform: rotate(45deg); }
.lb__close::after { transform: rotate(-45deg); }
.lb__close:hover::before { transform: rotate(135deg); }
.lb__close:hover::after { transform: rotate(45deg); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; background: none; border: 0; cursor: pointer; color: var(--white); }
.lb__nav::before { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transition: transform .25s ease; }
.lb__nav--prev { left: 24px; }
.lb__nav--prev::before { transform: translate(-30%, -50%) rotate(135deg); }
.lb__nav--next { right: 24px; }
.lb__nav--next::before { transform: translate(-70%, -50%) rotate(-45deg); }
.lb__nav--prev:hover::before { transform: translate(-50%, -50%) rotate(135deg); }
.lb__nav--next:hover::before { transform: translate(-50%, -50%) rotate(-45deg); }
.lb__count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: var(--white); font-size: 13px; letter-spacing: 3px; }
.lb__caption { position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%); max-width: min(900px, 84vw); text-align: center; color: rgba(255, 255, 255, .85); font-size: 14px; line-height: 20px; }
@media (max-width: 640px) {
  .lb__caption { bottom: 58px; font-size: 12px; line-height: 17px; }
}
body.lb-open { overflow: hidden; }
@media (max-width: 640px) {
  .lb__img { max-width: 100vw; max-height: 78vh; }
  .lb__close { top: 14px; right: 12px; }
  .lb__nav--prev { left: 4px; }
  .lb__nav--next { right: 4px; }
}
.prj__g--full img { aspect-ratio: 1360 / 524; }
.prj__g--half img { aspect-ratio: 670 / 438; }

@media (max-width: 1100px) {
  .page-head { height: 300px; padding-top: 118px; }
  .page-head__title { font-size: 28px; letter-spacing: 5px; }
  .svc { grid-template-columns: minmax(0, 1fr); row-gap: 30px; }
  .svc::after { margin-top: 0; }
  .svc__title { font-size: 32px; line-height: 1.2; max-width: none; }
  .svc__media { order: -1; }
  .ro-intro__grid, .ro-quote__grid, .team__head { grid-template-columns: 1fr; row-gap: 14px; }
  .ro-intro__title { font-size: 36px; line-height: 1.15; }
  .ro-intro__badge { width: 170px; justify-self: start; margin-top: 6px; }
  .ro-owner__box { margin: 0; }
  .ro-grid { grid-template-columns: 1fr; gap: 36px; }
  .ro-grid .ro-cell:nth-child(2) { order: -1; }
  .ro-grid .ro-cell:nth-child(3) { order: 10; }
  .ro-cell--body { max-width: none; }
  .ro-quote__text { font-size: 32px; line-height: 1.25; justify-self: start; max-width: none; }
  .team__title { font-size: 36px; line-height: 1.15; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 340px)); gap: 56px 60px; }
  .kap__grid { grid-template-columns: 1fr; row-gap: 64px; }
  .plist__grid { grid-template-columns: 1fr 1fr; }
  .prj__title { font-size: 36px; }
  .prj__lead { font-size: 17px; line-height: 27px; margin-top: 20px; }
  .news__feat { grid-template-columns: 1fr; row-gap: 28px; }
  .news__feat-title { font-size: 30px; line-height: 1.15; }
  .news__grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .hir__title { font-size: 32px; }
  .kin__title { font-size: 30px; line-height: 1.35; }
  .kdays__grid { grid-template-columns: 1fr; row-gap: 48px; }
  .kdays__title { font-size: 34px; }
  .kpos__head, .ksel__grid { grid-template-columns: 1fr; row-gap: 26px; }
  .kpos__title { font-size: 38px; }
  .kjob { grid-template-columns: 1fr; gap: 18px; padding: 32px; align-items: start; }
  .koffer__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .ksel__steps { grid-template-columns: 1fr 1fr; }
  .ksel__title { font-size: 34px; }
  .kpost__title { font-size: 36px; }
  .kpost__cardgrid { grid-template-columns: 1fr; }
  .kcard { padding: 32px; }
  .kcard__title { font-size: 30px; }
  .kstrip { grid-template-columns: 1fr 1fr; padding-top: 56px; }
  .kstrip img:nth-child(2) { margin-top: 0; }
}
@media (max-width: 640px) {
  .page-head { height: 260px; }
  .svc__text { grid-template-columns: 56px minmax(0, 1fr); }
  .svc__icon { max-width: 44px; }
  .svc__title { font-size: 26px; hyphens: auto; overflow-wrap: break-word; }
  .svc__body { grid-column: 1 / -1; }
  .team__grid { grid-template-columns: 1fr; justify-items: center; }
  .team-card { max-width: 340px; }
  .kap-names { grid-template-columns: 1fr; }
  .kap-form__row { grid-template-columns: 1fr; }
  .kap__h { font-size: 28px; line-height: 1.2; }
  .kap-map { height: 360px; }
  .vez-group { margin: 56px 0 0; }
  .news__grid { grid-template-columns: 1fr; }
  .news-card__title { font-size: 26px; line-height: 1.15; }
  .hir__title { font-size: 27px; }
  .entry blockquote p { font-size: 20px; line-height: 30px; }
  .kin__title { font-size: 24px; }
  .klist { grid-template-columns: 1fr; }
  .koffer__grid { grid-template-columns: 1fr; gap: 28px; }
  .ksel__steps { grid-template-columns: 1fr; }
  .ksel { padding-bottom: 80px; }
  .kdays__media img:last-child { margin-top: 44px; }
  .kpos__title { font-size: 30px; }
  .kstrip { grid-template-columns: 1fr; gap: 16px; }
  .cta__actions { gap: 26px; }
  .flt__row { flex-direction: column; gap: 30px; }
  .flt__group { width: 100%; }
  .flt__icon { height: 52px; }
  .flt__icon img { max-height: 52px; }
  .plist__grid { grid-template-columns: 1fr; }
  .prj { padding-top: 56px; }
  .prj__title { font-size: 30px; }
  .prj__gallery { margin-top: 44px; gap: 16px; }
  .prj__pair { grid-template-columns: 1fr; gap: 16px; }
  .prj__g--full img, .prj__g--half img { aspect-ratio: 4 / 3; }
}

/* ===================================================== 404 */
.e404 { padding-block: 16px 6px; }
.e404__code { font-family: var(--font-display); font-size: 120px; line-height: 1; font-weight: 600; letter-spacing: -2px; color: var(--green); }
.e404__title { margin-top: 20px; max-width: 830px; font-family: var(--font-display); font-size: 36px; line-height: 1.25; font-weight: 500; }
.e404__text { margin-top: 18px; max-width: 830px; font-family: var(--font-alt); font-size: 17px; line-height: 27px; color: var(--gray-700); }
.e404__links { display: flex; flex-wrap: wrap; gap: 14px 56px; margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--gray-200); }
@media (max-width: 860px) {
  .e404__code { font-size: 78px; }
  .e404__title { font-size: 26px; }
  .e404__links { gap: 8px 32px; margin-top: 34px; padding-top: 26px; }
}
