html {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    min-height: 100vh;
    scrollbar-gutter: stable
}

:focus-visible {
    outline: 2px solid #92A148;
    outline-offset: 3px;
    transition: outline-offset .18s ease-out
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0
}

.brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 7px;
    border-left: 3px solid #92A148;
    background-color: #fff;
    box-shadow: -1px 1px 5px 0 #92a14812 -1px 7px 18px 0 #92a1481a;
    padding: 8px;
    flex-shrink: 0
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand__name {
    font-family: 'EB Garamond', serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #fff
}

.brand__name span {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .02em;
    color: #A8B56F;
    line-height: 1.7
}

.site-header {
    position: relative;
    background: linear-gradient(135deg, #2a2f14 0%, #3d4520 40%, #4a5228 100%);
    overflow: hidden
}

.site-header::before {
    content: '';
    position: absolute;
    top: -56px;
    right: -56px;
    width: 420px;
    height: 420px;
    border-radius: 48px;
    background: linear-gradient(135deg, #92a1482e 0%, #a8b56f14 100%);
    pointer-events: none;
    transform: rotate(18deg)
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -32px;
    left: 30%;
    width: 260px;
    height: 260px;
    border-radius: 48px;
    background: #92a14812;
    pointer-events: none;
    transform: rotate(-12deg)
}

.header__body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 56px;
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 2
}

.header__divider {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, #a8b56f80, transparent);
    flex-shrink: 0
}

.header__right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end
}

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0
}

.menu__item a {
    display: inline-block;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.7;
    color: #e8ecda;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 7px;
    border: 1px solid transparent;
    transition: color .18s ease-out, border-color .15s ease-out, background-color .18s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.menu__item a:hover {
    color: #A8B56F;
    border-color: #a8b56f4d;
    background-color: #92a14814
}

.menu__item--active a {
    color: #A8B56F
}

.header__address {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    color: #e8ecda99;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 8px
}

.header__address {
    margin: 0
}

.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #a8b56f4d;
    border-radius: 7px;
    background: #92a14814;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto
}

.header__toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #e8ecda;
    border-radius: 2px;
    transition: transform .18s ease-out, opacity .14s ease-out
}

body.nav-open .header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

body.nav-open .header__toggle-bar:nth-child(2) {
    opacity: 0
}

body.nav-open .header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.site-footer {
    background: #F8F9F5;
    box-shadow: 0 -1px 5px 0 #92a14812 0 -7px 18px 0 #92a1480f;
    padding: 32px 56px
}

.footer__body {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.footer__nav a {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .02em;
    color: #3d4520;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 7px;
    transition: color .14s ease-out, background-color .16s ease-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.footer__nav a:hover {
    color: #92A148;
    background-color: #92a14814
}

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center
}

.footer__contacts a,
.footer__contacts span {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    color: #3d4520;
    text-decoration: none;
    transition: color .14s ease-out
}

.footer__contacts a:hover {
    color: #92A148
}

.footer__sep {
    color: #92a14866;
    font-size: 15px
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.footer__brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 7px;
    border-left: 3px solid #92A148;
    background-color: #fff;
    box-shadow: -1px 1px 5px 0 #92a14812 -1px 7px 18px 0 #92a1481a;
    padding: 8px
}

.footer__brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.footer__copy {
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    color: #3d45208c;
    line-height: 1.7
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center
}

.footer__info p {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    color: #3d4520;
    line-height: 1.7
}

.footer__info a {
    color: #3d4520;
    text-decoration: none;
    transition: color .14s ease-out
}

.footer__info a:hover {
    color: #92A148
}

.form-phone-error {
    display: block;
    margin-top: 6px;
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #b33
}

.legal-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 32px;
    color: #2c2c2c;
    line-height: 1.7
}

.legal-container h1 {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin-bottom: 32px;
    margin-top: 0
}

.legal-container h2 {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin-top: 56px;
    margin-bottom: 16px
}

.legal-container h3 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #92A148;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px
}

.legal-container h4,
.legal-container h5,
.legal-container h6 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #1b1b1b;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 8px
}

.legal-container p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin-top: 0;
    margin-bottom: 16px;
    color: #2c2c2c
}

.legal-container strong,
.legal-container b {
    font-weight: 700;
    color: #1b1b1b
}

.legal-container a {
    color: #92A148;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .14s ease-out
}

.legal-container a:hover {
    color: #A8B56F;
    text-decoration-color: #A8B56F
}

.legal-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 32px;
    margin-bottom: 32px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    border-radius: 7px;
    overflow: hidden
}

.legal-container thead {
    background-color: #F8F9F5
}

.legal-container thead tr {
    border-bottom: 2px solid #92A148
}

.legal-container th {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #1b1b1b;
    text-align: left;
    padding: 16px;
    background-color: #F8F9F5
}

.legal-container tbody tr {
    border-bottom: 1px solid #e8ecda;
    transition: background-color .16s ease-out
}

.legal-container tbody tr:last-child {
    border-bottom: none
}

.legal-container tbody tr:hover {
    background-color: #F8F9F5
}

.legal-container td {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2c2c2c;
    padding: 16px;
    vertical-align: top
}

.learning-program {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden
}

.learning-program .program-reveal {
    clip-path: inset(0 100% 0 0);
    animation: revealClip .72s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

@keyframes revealClip {
    to {
        clip-path: inset(0 0% 0 0)
    }
}

.learning-program .program-reveal--delay {
    animation-delay: .18s
}

.learning-program .program-reveal--delay2 {
    animation-delay: .34s
}

.learning-program .title-block {
    position: relative;
    padding: 96px 56px;
    background: radial-gradient(ellipse at 8% 20%, #92A148 0%, #F8F9F5 55%, #fff 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px;
    overflow: hidden
}

.learning-program .title-block__decor {
    position: absolute;
    top: -56px;
    right: -56px;
    width: 320px;
    height: 320px;
    border-radius: 48px;
    border: 2px solid #92a14821;
    pointer-events: none;
    z-index: 0
}

.learning-program .title-block__decor--small {
    top: 32px;
    right: 80px;
    width: 160px;
    height: 160px;
    border-radius: 48px;
    border: 2px solid #a8b56f1a
}

.learning-program .title-block__text {
    flex: 1 1 0;
    position: relative;
    z-index: 1
}

.learning-program .title-block__badge {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 16px
}

.learning-program .title-block__heading {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e14;
    margin: 0 0 16px
}

.learning-program .title-block__heading span {
    display: block;
    color: #92A148
}

.learning-program .title-block__sub {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    max-width: 480px;
    margin: 0 0 32px
}

.learning-program .title-block__cta {
    display: inline-block;
    background: linear-gradient(135deg, #92A148 0%, #A8B56F 100%);
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    border-radius: 7px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-position .18s ease-out, box-shadow .14s ease-out;
    background-size: 200% 200%;
    background-position: 0 0;
    box-shadow: -1px 7px 18px 0 #92a1481a
}

.learning-program .title-block__cta:hover {
    background-position: 100% 100%;
    box-shadow: -1px 9px 36px 0 #92a14824;
    color: #fff
}

.learning-program .title-block__image-wrap {
    flex: 0 0 420px;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.learning-program .title-block__image-wrap img {
    width: 420px;
    height: 360px;
    object-fit: cover;
    display: block
}

.learning-program .title-block__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #92a14873 0%, transparent 60%);
    pointer-events: none
}

.learning-program .structure {
    padding: 96px 56px;
    background: #fff
}

.learning-program .structure__label {
    display: inline-block;
    background: #F8F9F5;
    color: #92A148;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    border-radius: 7px;
    padding: 8px 16px;
    margin-bottom: 32px
}

.learning-program .structure__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e14;
    margin: 0 0 8px;
    background: #F8F9F5;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 7px
}

.learning-program .structure__intro {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    max-width: 620px;
    margin: 16px 0 56px
}

.learning-program .structure__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.learning-program .module-card {
    border-radius: 20px;
    border: 1.5px solid #e8ecda;
    padding: 32px;
    background: #F8F9F5;
    box-shadow: -1px 1px 5px 0 #92a14812;
    transition: box-shadow .18s ease-out, border-color .14s ease-out;
    position: relative;
    overflow: hidden
}

.learning-program .module-card:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    border-color: #A8B56F
}

.learning-program .module-card__number {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #92a1482e;
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 16px
}

.learning-program .module-card__tag {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 16px
}

.learning-program .module-card__title {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e14;
    margin: 0 0 8px
}

.learning-program .module-card__desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    margin: 0
}

.learning-program .module-card__list {
    margin: 16px 0 0;
    padding: 0 0 0 16px;
    list-style: disc
}

.learning-program .module-card__list li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    margin-bottom: 8px
}

.learning-program .module-card__list li::marker {
    color: #92A148
}

.learning-program .comparison {
    padding: 96px 56px;
    background: #F8F9F5
}

.learning-program .comparison__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e14;
    text-align: center;
    background: #fff;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 7px;
    margin: 0 auto 8px
}

.learning-program .comparison__center {
    text-align: center;
    margin-bottom: 56px
}

.learning-program .comparison__sub {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    text-align: left;
    max-width: 580px;
    margin: 16px auto 0
}

.learning-program .matrix {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    background: #fff
}

.learning-program .matrix__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1.5px solid #e8ecda;
    transition: background .14s ease-out
}

.learning-program .matrix__row:last-child {
    border-bottom: none
}

.learning-program .matrix__row--header {
    background: #92A148
}

.learning-program .matrix__row:not(.matrix__row--header):hover {
    background: #F8F9F5
}

.learning-program .matrix__cell {
    padding: 16px 32px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2a2e14;
    display: flex;
    flex-direction: row;
    align-items: center
}

.learning-program .matrix__cell--header {
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em
}

.learning-program .matrix__cell--center {
    justify-content: center;
    text-align: center
}

.learning-program .matrix__dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 48px;
    background: #92A148;
    box-shadow: -1px 1px 5px 0 #92a14812
}

.learning-program .matrix__dot--no {
    background: #d9ddd0
}

.learning-program .instructors {
    padding: 96px 56px;
    background: #fff
}

.learning-program .instructors__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e14;
    background: #F8F9F5;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 7px;
    margin: 0 0 8px
}

.learning-program .instructors__sub {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    max-width: 540px;
    margin: 16px 0 56px
}

.learning-program .instructors__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.learning-program .review-card {
    border-radius: 20px;
    border: 1.5px solid #e8ecda;
    padding: 32px;
    background: #F8F9F5;
    box-shadow: -1px 1px 5px 0 #92a14812;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.6, 1), border-color .16s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.learning-program .review-card:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    border-color: #A8B56F
}

.learning-program .review-card__name {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    font-weight: 700
}

.learning-program .review-card__role {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #7a8050
}

.learning-program .review-card__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d4220;
    margin: 0
}

.learning-program .instructors__cta-row {
    margin-top: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px
}

.learning-program .instructors__cta {
    display: inline-block;
    background: linear-gradient(135deg, #92A148 0%, #A8B56F 100%);
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    border-radius: 7px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-position .18s ease-out, box-shadow .14s ease-out;
    background-size: 200% 200%;
    background-position: 0 0;
    box-shadow: -1px 7px 18px 0 #92a1481a
}

.learning-program .instructors__cta:hover {
    background-position: 100% 100%;
    box-shadow: -1px 9px 36px 0 #92a14824;
    color: #fff
}

.learning-program .instructors__note {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #7a8050
}

@media (max-width: 900px) {
    .learning-program .title-block {
        flex-direction: column;
        padding: 56px 16px;
        gap: 32px
    }

    .learning-program .title-block__image-wrap {
        flex: 0 0 auto
    }

    .learning-program .title-block__image-wrap img {
        width: 100%;
        height: 240px
    }

    .learning-program .title-block__heading {
        font-size: 41px
    }

    .learning-program .structure {
        padding: 56px 16px
    }

    .learning-program .structure__grid {
        grid-template-columns: 1fr
    }

    .learning-program .comparison {
        padding: 56px 16px
    }

    .learning-program .instructors {
        padding: 56px 16px
    }

    .learning-program .instructors__layout {
        grid-template-columns: 1fr
    }

    .learning-program .matrix__row {
        grid-template-columns: 2fr 1fr 1fr
    }

    .learning-program .matrix__cell {
        padding: 16px
    }
}

@media (max-width: 600px) {
    .learning-program .title-block__heading {
        font-size: 31px
    }

    .learning-program .structure__heading,
    .learning-program .comparison__heading,
    .learning-program .instructors__heading {
        font-size: 31px
    }

    .learning-program .matrix__cell {
        padding: 8px;
        font-size: 15px
    }

    .learning-program .instructors__cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

.about-us {
    max-width: 100%;
    overflow-x: hidden
}

.about-us .column {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px
}

.about-us .badge {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    padding: 8px 16px;
    border-radius: 48px;
    margin-bottom: 16px
}

.about-us .divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #92A148, transparent);
    margin: 0
}

.about-us .entry {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff
}

.about-us .entry__grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start
}

.about-us .entry__image-col {
    position: relative
}

.about-us .entry__image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.about-us .entry__image-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: blur(0px)
}

.about-us .entry__image-wrap img.blurred-bg {
    position: absolute;
    inset: 0;
    filter: blur(8px);
    opacity: .3;
    z-index: 0
}

.about-us .entry__dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, #92A148 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .08;
    border-radius: 20px
}

.about-us .entry__text-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-us .entry__heading {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b2000;
    margin: 0
}

.about-us .entry__heading mark {
    background: #92A148;
    color: #fff;
    padding: 0 8px;
    border-radius: 7px;
    display: inline
}

.about-us .entry__desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3f1e;
    margin: 0;
    max-width: 560px
}

.about-us .story {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #F8F9F5;
    position: relative
}

.about-us .story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#92a1480f 1px, transparent 1px), linear-gradient(90deg, #92a1480f 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none
}

.about-us .story::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #92a1481a 100%);
    pointer-events: none
}

.about-us .story__inner {
    position: relative;
    z-index: 1
}

.about-us .story__head {
    text-align: center;
    margin-bottom: 56px
}

.about-us .story__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b2000;
    margin: 0 0 16px
}

.about-us .story__heading mark {
    background: #A8B56F;
    color: #1b2000;
    padding: 0 8px;
    border-radius: 7px
}

.about-us .story__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f1e;
    margin: 0;
    text-align: left;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto
}

.about-us .timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0
}

.about-us .timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #92A148 20%, #A8B56F 80%, transparent);
    transform: translateX(-50%)
}

.about-us .timeline__item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    align-items: start;
    padding-bottom: 56px
}

.about-us .timeline__item:last-child {
    padding-bottom: 0
}

.about-us .timeline__dot {
    width: 20px;
    height: 20px;
    border-radius: 48px;
    background: #92A148;
    border: 3px solid #F8F9F5;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    margin: 0 auto;
    margin-top: 8px;
    transition: background .18s ease-out
}

.about-us .timeline__item:hover .timeline__dot {
    background: #A8B56F
}

.about-us .timeline__card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    transition: box-shadow .18s ease-out
}

.about-us .timeline__card:hover {
    box-shadow: -1px 9px 36px 0 #92a14824
}

.about-us .timeline__card--right {
    grid-column: 3
}

.about-us .timeline__card--left {
    grid-column: 1;
    text-align: right
}

.about-us .timeline__year {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    margin: 0 0 8px
}

.about-us .timeline__label {
    font-size: 15px;
    line-height: 1.7;
    color: #1b2000;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.about-us .timeline__text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f1e;
    margin: 0;
    letter-spacing: .01em
}

.about-us .team {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff;
    position: relative
}

.about-us .team::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 35%, #a8b56f14 100%);
    pointer-events: none
}

.about-us .team__inner {
    position: relative;
    z-index: 1
}

.about-us .team__head {
    margin-bottom: 56px
}

.about-us .team__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b2000;
    margin: 0 0 16px;
    text-align: center
}

.about-us .team__heading mark {
    background: #92A148;
    color: #fff;
    padding: 0 8px;
    border-radius: 7px
}

.about-us .team__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.about-us .team__col {
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden
}

.about-us .team__col--a {
    background: #1b2000;
    color: #fff
}

.about-us .team__col--b {
    background: #92A148;
    color: #fff
}

.about-us .team__col--c {
    background: #F8F9F5;
    color: #1b2000
}

.about-us .team__col-label {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    font-weight: 600;
    opacity: .7;
    margin: 0
}

.about-us .team__col--a .team__col-label,
.about-us .team__col--b .team__col-label {
    color: #fff
}

.about-us .team__col--c .team__col-label {
    color: #92A148
}

.about-us .team__col-name {
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0
}

.about-us .team__col--a .team__col-name,
.about-us .team__col--b .team__col-name {
    color: #fff
}

.about-us .team__col--c .team__col-name {
    color: #1b2000
}

.about-us .team__col-text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0
}

.about-us .team__col--a .team__col-text,
.about-us .team__col--b .team__col-text {
    color: #ffffffd9
}

.about-us .team__col--c .team__col-text {
    color: #3a3f1e
}

.about-us .team__img-wrap {
    border-radius: 7px;
    overflow: hidden;
    box-shadow: -1px 5px 5px 0 #92a14812
}

.about-us .team__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.about-us .approach {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #F8F9F5
}

.about-us .approach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.about-us .approach__text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-us .approach__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1b2000;
    margin: 0
}

.about-us .approach__heading mark {
    background: #A8B56F;
    color: #1b2000;
    padding: 0 8px;
    border-radius: 7px
}

.about-us .approach__body {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f1e;
    margin: 0;
    letter-spacing: .01em
}

.about-us .approach__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.about-us .approach__list li {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f1e;
    letter-spacing: .01em;
    padding-left: 16px;
    position: relative
}

.about-us .approach__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #92A148
}

.about-us .approach__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.about-us .approach__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.about-us .approach__img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.about-us .approach__img-wrap:hover img {
    transform: scale(1.03)
}

.about-us .approach__img-wrap--tall {
    grid-row: span 2
}

.about-us .approach__img-wrap--tall img {
    height: 100%;
    min-height: 300px
}

.about-us .bracket {
    position: relative
}

.about-us .bracket::before,
.about-us .bracket::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: #92A148;
    border-style: solid;
    opacity: .4;
    pointer-events: none
}

.about-us .bracket::before {
    top: -8px;
    left: -8px;
    border-width: 2px 0 0 2px;
    border-radius: 7px 0 0 0
}

.about-us .bracket::after {
    bottom: -8px;
    right: -8px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 7px 0
}

@keyframes appear-scale {
    from {
        opacity: 0;
        transform: scale(0.8)
    }

    60% {
        transform: scale(1.04)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.about-us .animate-appear {
    animation: appear-scale .45s cubic-bezier(0.4, 0, 0.6, 1) both
}

@media (max-width: 900px) {
    .about-us .entry__grid {
        grid-template-columns: 1fr
    }

    .about-us .entry__heading {
        font-size: 41px
    }

    .about-us .timeline__line {
        left: 20px
    }

    .about-us .timeline__item {
        grid-template-columns: 40px 1fr
    }

    .about-us .timeline__card--left {
        grid-column: 2;
        text-align: left
    }

    .about-us .timeline__card--right {
        grid-column: 2
    }

    .about-us .team__cols {
        grid-template-columns: 1fr
    }

    .about-us .approach__grid {
        grid-template-columns: 1fr
    }

    .about-us .approach__images {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 600px) {
    .about-us .entry__heading {
        font-size: 31px
    }

    .about-us .approach__images {
        grid-template-columns: 1fr
    }

    .about-us .approach__img-wrap--tall {
        grid-row: span 1
    }
}

.careers {
    background: #fff;
    overflow-x: clip
}

.careers * {
    box-sizing: border-box
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.careers .animate-up {
    animation: slide-up .55s cubic-bezier(0.4, 0, 0.6, 1) both
}

.careers .animate-up:nth-child(2) {
    animation-delay: .1s
}

.careers .animate-up:nth-child(3) {
    animation-delay: .2s
}

.careers .animate-up:nth-child(4) {
    animation-delay: .3s
}

.careers .page-divider {
    display: flex;
    align-items: center;
    gap: 0;
    height: 2px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px
}

.careers .page-divider span {
    flex: 1;
    height: 1px;
    background: #d6dab8
}

.careers .page-divider em {
    width: 56px;
    height: 2px;
    background: #92A148;
    display: block;
    flex-shrink: 0
}

.careers .mosaic-panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 56px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: center
}

.careers .mosaic-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px
}

.careers .mosaic-images::before {
    content: '';
    position: absolute;
    inset: -16px;
    background-image: radial-gradient(circle, #92A148 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .18;
    z-index: 0;
    pointer-events: none;
    border-radius: 7px
}

.careers .mosaic-img--primary {
    grid-column: 1 / 3;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.careers .mosaic-img--primary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    opacity: .82
}

.careers .mosaic-stat {
    background: #F8F9F5;
    border-radius: 7px;
    padding: 16px;
    position: relative;
    z-index: 1;
    box-shadow: -1px 1px 5px 0 #92a14812
}

.careers .mosaic-stat__number {
    font-size: 41px;
    line-height: 1.15;
    color: #92A148;
    letter-spacing: .01em;
    font-weight: 700
}

.careers .mosaic-stat__label {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em
}

.careers .text-panel {
    position: relative
}

.careers .text-panel .dot-grid {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #A8B56F 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    opacity: .22;
    pointer-events: none;
    z-index: 0
}

.careers .tag-badge {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    padding: 4px 16px;
    border-radius: 48px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.careers .text-panel h1 {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1e2010;
    margin: 0 0 16px;
    position: relative;
    z-index: 1
}

.careers .text-panel h1 .num-accent {
    color: #92A148
}

.careers .text-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0 0 32px;
    position: relative;
    z-index: 1
}

.careers .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(135deg, #92A148 0%, #A8B56F 100%);
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    transition: box-shadow .18s ease-out, background-position .22s cubic-bezier(0.4, 0, 0.6, 1);
    background-size: 200% 200%;
    background-position: 0 0
}

.careers .btn-primary:hover {
    background-position: 100% 100%;
    box-shadow: -1px 9px 36px 0 #92a1482e
}

.careers .btn-primary:focus-visible {
    outline: 3px solid #92A148 !important;
    outline-offset: 3px !important
}

.careers .positions-panel {
    background: #F8F9F5;
    padding: 96px 0
}

.careers .positions-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px
}

.careers .section-heading {
    text-align: center;
    margin-bottom: 56px
}

.careers .section-heading h2 {
    display: inline-block;
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1e2010;
    background: linear-gradient(135deg, #92a14821 0%, #a8b56f14 100%);
    padding: 8px 32px;
    border-radius: 7px;
    margin: 0 0 16px
}

.careers .section-heading p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    text-align: left;
    max-width: 640px;
    margin: 0 auto
}

.careers .positions-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px
}

.careers .position-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    position: relative;
    transition: box-shadow .18s ease-out
}

.careers .position-card:hover {
    box-shadow: -1px 9px 36px 0 #92a14824
}

.careers .position-card .corner-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    padding: 4px 12px;
    border-radius: 48px;
    letter-spacing: .02em
}

.careers .position-card h3 {
    font-size: 31px;
    line-height: 1.15;
    color: #1e2010;
    letter-spacing: .01em;
    margin: 0 0 8px
}

.careers .position-card--featured h3 {
    font-size: 41px
}

.careers .position-card .position-type {
    font-size: 15px;
    line-height: 1.15;
    color: #92A148;
    letter-spacing: .02em;
    margin-bottom: 16px;
    display: block
}

.careers .position-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0 0 16px
}

.careers .position-card ul {
    margin: 0 0 32px;
    padding: 0;
    list-style: none
}

.careers .position-card ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    padding-left: 16px;
    position: relative
}

.careers .position-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #92A148
}

.careers .position-card .apply-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    color: #92A148;
    letter-spacing: .02em;
    text-decoration: none;
    border-bottom: 1px solid #92a14866;
    padding-bottom: 2px;
    transition: color .15s ease-out, border-color .15s ease-out
}

.careers .position-card .apply-link:hover {
    color: #A8B56F;
    border-color: #A8B56F
}

.careers .position-card .apply-link:focus-visible {
    outline: 3px solid #92A148 !important;
    outline-offset: 3px !important
}

.careers .position-card--featured {
    background: linear-gradient(160deg, #F8F9F5 0%, #eef1e0 100%);
    box-shadow: -1px 9px 36px 0 #92a14824
}

.careers .position-card--side {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.careers .culture-panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 56px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start
}

.careers .culture-visual {
    position: relative
}

.careers .culture-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.careers .annotation-group {
    position: absolute;
    right: -32px;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.careers .annotation {
    background: #fff;
    border-radius: 7px;
    padding: 16px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 160px
}

.careers .annotation__num {
    font-size: 31px;
    line-height: 1.15;
    color: #92A148;
    font-weight: 700;
    letter-spacing: .01em;
    flex-shrink: 0
}

.careers .annotation__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em
}

.careers .culture-text h2 {
    display: inline-block;
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1e2010;
    background: linear-gradient(135deg, #92a14821 0%, #a8b56f14 100%);
    padding: 8px 16px;
    border-radius: 7px;
    margin: 0 0 16px
}

.careers .culture-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0 0 16px
}

.careers .culture-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}

.careers .culture-item {
    background: #F8F9F5;
    border-radius: 7px;
    padding: 16px;
    box-shadow: -1px 1px 5px 0 #92a14812
}

.careers .culture-item h4 {
    font-size: 15px;
    line-height: 1.15;
    color: #1e2010;
    letter-spacing: .02em;
    margin: 0 0 8px;
    font-weight: 700
}

.careers .culture-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0
}

.careers .contact-panel {
    background: linear-gradient(160deg, #F8F9F5 0%, #eef1e0 100%);
    padding: 96px 0
}

.careers .contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.careers .contact-heading-col {
    grid-column: 1 / 2
}

.careers .contact-heading-col h2 {
    display: inline-block;
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #1e2010;
    background: linear-gradient(135deg, #92a14821 0%, #a8b56f14 100%);
    padding: 8px 16px;
    border-radius: 7px;
    margin: 0 0 16px
}

.careers .contact-heading-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0
}

.careers .contact-detail-col {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px
}

.careers .contact-detail {
    background: #fff;
    border-radius: 7px;
    padding: 16px;
    box-shadow: -1px 1px 5px 0 #92a14812
}

.careers .contact-detail__label {
    font-size: 15px;
    line-height: 1.15;
    color: #92A148;
    letter-spacing: .02em;
    margin-bottom: 8px;
    display: block;
    font-weight: 700
}

.careers .contact-detail a {
    font-size: 15px;
    line-height: 1.7;
    color: #1e2010;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .15s ease-out
}

.careers .contact-detail a:hover {
    color: #A8B56F
}

.careers .contact-detail a:focus-visible {
    outline: 3px solid #92A148 !important;
    outline-offset: 2px !important
}

.careers .contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #1e2010;
    letter-spacing: .01em;
    margin: 0
}

.careers .contact-cta-col {
    grid-column: 3 / 4;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px
}

.careers .contact-cta-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3d2e;
    letter-spacing: .01em;
    margin: 0
}

.careers .mask-reveal {
    position: relative;
    overflow: hidden;
    border-radius: 7px
}

.careers .mask-reveal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease-out
}

.careers .mask-reveal__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #92a148e0 0%, #a8b56fd1 100%);
    clip-path: polygon(0 100%, 0 100%, 0 100%);
    transition: clip-path .22s cubic-bezier(0.4, 0, 0.6, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px
}

.careers .mask-reveal:hover .mask-reveal__overlay {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.careers .mask-reveal__overlay p {
    font-size: 15px;
    line-height: 1.7;
    color: #fff;
    letter-spacing: .01em;
    margin: 0;
    text-align: center
}

@media (max-width: 900px) {
    .careers .mosaic-panel {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        gap: 32px
    }

    .careers .text-panel h1 {
        font-size: 41px
    }

    .careers .positions-grid {
        grid-template-columns: 1fr
    }

    .careers .positions-inner {
        padding: 0 32px
    }

    .careers .culture-panel {
        grid-template-columns: 1fr;
        padding: 56px 32px
    }

    .careers .annotation-group {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 16px
    }

    .careers .contact-inner {
        grid-template-columns: 1fr;
        padding: 0 32px
    }

    .careers .contact-heading-col,
    .careers .contact-detail-col,
    .careers .contact-cta-col {
        grid-column: 1
    }

    .careers .culture-img {
        height: 260px
    }
}

.debut {
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden
}

.debut .panel {
    position: relative;
    padding: 96px 56px
}

.debut .panel--tight {
    padding: 56px
}

.debut .panel--open {
    padding: 96px 56px
}

.debut .badge {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.15;
    padding: 8px 16px;
    border-radius: 48px;
    margin-bottom: 32px
}

.debut .strip {
    display: inline;
    background: #92A148;
    color: #fff;
    padding: 0 8px;
    border-radius: 7px
}

.debut .meter-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px
}

.debut .meter-item {
    flex: 1 1 180px;
    background: #F8F9F5;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 1px 5px 0 #92a14812 -1px 7px 18px 0 #92a1481a;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.debut .meter-item:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    transform: translateY(-4px)
}

.debut .meter-item__number {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #92A148;
    display: block
}

.debut .meter-item__label {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a;
    margin-top: 8px
}

.debut .title-panel {
    background: linear-gradient(160deg, #2d3318 0%, #4a5420 40%, #92A148 100%);
    position: relative;
    overflow: hidden;
    padding: 96px 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px
}

.debut .title-panel__ghost {
    position: absolute;
    top: -16px;
    right: 56px;
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #ffffff0a;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    font-size: clamp(120px, 18vw, 260px);
    white-space: nowrap
}

.debut .title-panel__text {
    flex: 1 1 480px;
    position: relative;
    z-index: 1
}

.debut .title-panel__badge {
    display: inline-block;
    background: #ffffff1f;
    color: #d8e4a0;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.15;
    padding: 8px 16px;
    border-radius: 48px;
    margin-bottom: 32px
}

.debut .title-panel__h1 {
    font-size: clamp(41px, 5.5vw, 70px);
    line-height: 1.15;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 32px
}

.debut .title-panel__desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #ffffffd1;
    max-width: 520px
}

.debut .title-panel__image-wrap {
    flex: 0 0 380px;
    position: relative;
    z-index: 1
}

.debut .title-panel__image-wrap img {
    width: 380px;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    opacity: .88;
    box-shadow: -1px 9px 36px 0 #92a14847;
    filter: brightness(1.08) saturate(0.9);
    display: block
}

.debut .scale-panel {
    background: #F8F9F5;
    position: relative
}

.debut .scale-panel::before {
    content: "";
    display: block;
    width: 100%;
    height: 56px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1280 56' preserveAspectRatio='none'%3E%3Cpath d='M0,28 C80,56 160,0 320,28 C480,56 560,0 640,28 C720,56 800,0 960,28 C1120,56 1200,0 1280,28 L1280,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") center/cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.debut .scale-panel__inner {
    padding: 96px 56px 56px
}

.debut .scale-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 56px
}

.debut .scale-panel__image-wrap {
    position: relative
}

.debut .scale-panel__image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    opacity: .9;
    box-shadow: -1px 9px 36px 0 #92a14824;
    display: block
}

.debut .scale-panel__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e12;
    margin-bottom: 16px;
    text-align: center
}

.debut .scale-panel__sub {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a;
    margin-bottom: 32px
}

.debut .pattern-panel {
    background: #fff;
    position: relative;
    padding: 96px 56px
}

.debut .pattern-panel__wavy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 28px, #92a1480a 28px, #92a1480a 29px);
    background-size: 100% 56px;
    pointer-events: none;
    overflow: hidden
}

.debut .pattern-panel__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e12;
    text-align: center;
    margin-bottom: 56px
}

.debut .voice-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.debut .voice-item {
    background: #F8F9F5;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 1px 5px 0 #92a14812;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    transition: box-shadow .2s ease-out
}

.debut .voice-item:hover {
    box-shadow: -1px 7px 18px 0 #92a1481f
}

.debut .voice-item__avatar {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: linear-gradient(135deg, #92A148, #A8B56F);
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    letter-spacing: .01em;
    line-height: 1.15;
    font-weight: 700
}

.debut .voice-item__body {
    flex: 1
}

.debut .voice-item__name {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    margin-bottom: 8px;
    font-weight: 600
}

.debut .voice-item__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a
}

.debut .situations-panel {
    background: radial-gradient(ellipse at 50% 40%, #F8F9F5 30%, #dde3c4 100%);
    padding: 96px 56px;
    position: relative
}

.debut .situations-panel__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e12;
    text-align: center;
    margin-bottom: 56px
}

.debut .situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.debut .sit-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 1px 5px 0 #92a14812 -1px 7px 18px 0 #92a1481a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s ease-out, transform .16s ease-out
}

.debut .sit-card:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    transform: translateY(-3px)
}

.debut .sit-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background: #92A148;
    border-radius: 7px;
    margin-bottom: 16px
}

.debut .sit-card__heading {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #2a2e12;
    font-weight: 700;
    margin-bottom: 16px
}

.debut .sit-card__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a
}

.debut .sit-card__counter {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    width: 32px;
    height: 32px;
    border-radius: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 700
}

.debut .limits-panel {
    background: #2a2e12;
    padding: 96px 56px;
    position: relative;
    overflow: hidden
}

.debut .limits-panel__decor {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 280px;
    height: 280px;
    border-radius: 48px;
    border: 2px solid #a8b56f1a;
    transform: rotate(18deg);
    pointer-events: none
}

.debut .limits-panel__decor2 {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 180px;
    height: 180px;
    border-radius: 48px;
    border: 2px solid #a8b56f12;
    transform: rotate(10deg);
    pointer-events: none
}

.debut .limits-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.debut .limits-panel__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #fff;
    margin-bottom: 32px
}

.debut .limits-panel__sub {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #ffffffb8;
    margin-bottom: 32px
}

.debut .limit-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0
}

.debut .limit-list li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #ffffffd1;
    padding-left: 16px;
    position: relative
}

.debut .limit-list li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #A8B56F;
    position: absolute;
    left: 0;
    top: 10px
}

.debut .limits-contrast {
    background: #ffffff0d;
    border-radius: 20px;
    padding: 32px;
    box-shadow: inset 0 1px 0 #ffffff14 inset 0 -2px 6px #92a1481f
}

.debut .limits-contrast__label {
    font-size: 15px;
    letter-spacing: .02em;
    color: #A8B56F;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15
}

.debut .limits-contrast__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #ffffffc7
}

.debut .context-panel {
    background: #fff;
    padding: 96px 56px;
    position: relative
}

.debut .context-panel::after {
    content: "";
    display: block;
    position: absolute;
    top: 56px;
    right: 56px;
    width: 120px;
    height: 120px;
    border-radius: 48px;
    border: 1.5px solid #92a14821;
    transform: rotate(25deg);
    pointer-events: none
}

.debut .context-panel__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2a2e12;
    text-align: center;
    margin-bottom: 16px
}

.debut .context-panel__intro {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a;
    text-align: left;
    max-width: 700px;
    margin: 0 auto 56px
}

.debut .context-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start
}

.debut .context-col {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.debut .context-col--image {
    position: relative
}

.debut .context-col--image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    opacity: .92;
    box-shadow: -1px 9px 36px 0 #92a14824;
    display: block
}

.debut .context-fact {
    background: #F8F9F5;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 1px 5px 0 #92a14812;
    transition: box-shadow .2s ease-out
}

.debut .context-fact:hover {
    box-shadow: -1px 7px 18px 0 #92a1481f
}

.debut .context-fact__label {
    font-size: 15px;
    letter-spacing: .02em;
    color: #92A148;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.15
}

.debut .context-fact__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a3a3a
}

.debut .reveal-group {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.debut .reveal-group__base {
    padding: 32px;
    background: #F8F9F5;
    border-radius: 20px;
    transition: background .18s ease-out
}

.debut .reveal-group:hover .reveal-group__base {
    background: #eef2d8
}

.debut .reveal-group__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #92A148, #A8B56F);
    color: #fff;
    padding: 32px;
    transform: translateY(100%);
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 0 0 20px 20px
}

.debut .reveal-group:hover .reveal-group__overlay {
    transform: translateY(0)
}

.debut .reveal-group__label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.15;
    margin-bottom: 8px
}

.debut .reveal-group__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.debut .title-panel__text {
    animation: slideInLeft .22s ease-out both
}

.debut .title-panel__image-wrap {
    animation: slideInRight .2s ease-out both
}

.debut .badge {
    animation: slideInBottom .18s ease-out both
}

@media (max-width: 900px) {
    .debut .title-panel {
        flex-direction: column;
        padding: 56px 32px
    }

    .debut .title-panel__image-wrap {
        flex: 0 0 auto
    }

    .debut .title-panel__image-wrap img {
        width: 100%;
        height: 280px
    }

    .debut .scale-panel__grid {
        grid-template-columns: 1fr
    }

    .debut .situations-grid {
        grid-template-columns: 1fr 1fr
    }

    .debut .limits-panel__grid {
        grid-template-columns: 1fr
    }

    .debut .context-layout {
        grid-template-columns: 1fr
    }

    .debut .context-col--image img {
        height: 280px
    }

    .debut .panel {
        padding: 56px 32px
    }

    .debut .scale-panel__inner {
        padding: 56px 32px
    }

    .debut .meter-row {
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .debut .situations-grid {
        grid-template-columns: 1fr
    }

    .debut .title-panel__ghost {
        display: none
    }
}

.contact-us {
    background: #fff;
    overflow-x: clip;
    padding: 0
}

.contact-us .panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

.contact-us .reach {
    background: linear-gradient(170deg, #92A148 0%, #A8B56F 38%, #F8F9F5 72%, #fff 100%);
    padding: 96px 32px 56px;
    position: relative
}

.contact-us .reach__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.contact-us .reach__bg::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 8%;
    width: 320px;
    height: 320px;
    border: 1.5px solid #ffffff2e;
    border-radius: 48px;
    transform: rotate(18deg)
}

.contact-us .reach__bg::after {
    content: '';
    position: absolute;
    top: 60px;
    right: 12%;
    width: 180px;
    height: 180px;
    border: 1.5px solid #ffffff21;
    border-radius: 48px;
    transform: rotate(-12deg)
}

.contact-us .reach__curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0
}

.contact-us .reach__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1
}

.contact-us .reach__badge {
    display: inline-block;
    background: #ffffff47;
    color: #3a4010;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.15;
    padding: 8px 16px;
    border-radius: 48px;
    font-weight: 600
}

.contact-us .reach__heading {
    font-size: 70px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #fff;
    margin: 0;
    max-width: 720px;
    text-shadow: -1px 1px 5px #92a1482e
}

.contact-us .reach__sub {
    font-size: 31px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #ffffffe0;
    margin: 0;
    max-width: 560px
}

.contact-us .reach__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 420px;
    height: 340px;
    object-fit: cover;
    border-radius: 20px 0 0 0;
    box-shadow: -1px 9px 36px 0 #92a14824;
    filter: brightness(0.88) contrast(1.05)
}

.contact-us .form-area {
    background: #F8F9F5;
    padding: 96px 32px;
    position: relative
}

.contact-us .form-area__geo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.contact-us .form-area__geo::before {
    content: '';
    position: absolute;
    top: 32px;
    right: -56px;
    width: 280px;
    height: 280px;
    border-radius: 48px;
    background: #92a1480d;
    transform: rotate(22deg)
}

.contact-us .form-area__geo::after {
    content: '';
    position: absolute;
    bottom: 56px;
    left: -32px;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background: #a8b56f0f;
    transform: rotate(-14deg)
}

.contact-us .form-area__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    position: relative;
    z-index: 1
}

.contact-us .form-meta {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.contact-us .form-meta__label {
    display: inline-block;
    background: #92A148;
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.15;
    padding: 8px 16px;
    border-radius: 7px;
    font-weight: 600;
    align-self: flex-start
}

.contact-us .form-meta__heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2c2c2c;
    margin: 0
}

.contact-us .form-meta__desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #4a4a4a;
    margin: 0
}

.contact-us .address-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-us .address-card__row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-us .address-card__key {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    font-weight: 700;
    text-transform: uppercase
}

.contact-us .address-card__val {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2c2c2c;
    margin: 0
}

.contact-us .address-card__val a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color .18s ease-out
}

.contact-us .address-card__val a:hover {
    color: #92A148
}

.contact-us .form-box {
    background: #fff;
    border-radius: 20px;
    padding: 56px;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.contact-us .form-box__form {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.contact-us .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.contact-us .field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.contact-us .field__label {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #4a4a4a;
    font-weight: 600;
    transition: color .15s ease-out
}

.contact-us .field:focus-within .field__label {
    color: #92A148
}

.contact-us .field__input {
    border: 1.5px solid #d4d8c8;
    border-radius: 7px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2c2c2c;
    background: #F8F9F5;
    outline: none;
    transition: border-color .15s ease-out, box-shadow .18s ease-out;
    width: 100%;
    box-sizing: border-box
}

.contact-us .field__input:focus {
    border-color: #92A148;
    box-shadow: -1px 1px 5px 0 #92a14812
}

.contact-us .field__input::placeholder {
    color: #b0b8a0
}

.contact-us .budget-group {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-us .budget-group__heading {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #4a4a4a;
    font-weight: 600;
    margin: 0
}

.contact-us .budget-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px
}

.contact-us .budget-option {
    position: relative
}

.contact-us .budget-option__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.contact-us .budget-option__label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 48px;
    border: 1.5px solid #d4d8c8;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #4a4a4a;
    cursor: pointer;
    background: #F8F9F5;
    transition: border-color .15s ease-out, background .18s ease-out, color .15s ease-out
}

.contact-us .budget-option__input:checked+.budget-option__label {
    background: #92A148;
    border-color: #92A148;
    color: #fff
}

.contact-us .budget-option__label:hover {
    border-color: #92A148;
    color: #92A148
}

.contact-us .budget-option__input:focus-visible+.budget-option__label {
    outline: 2px solid #92A148;
    outline-offset: 2px
}

.contact-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.contact-us .privacy-row__check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #92A148;
    margin-top: 2px;
    cursor: pointer
}

.contact-us .privacy-row__text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #4a4a4a;
    margin: 0
}

.contact-us .privacy-row__text a {
    color: #92A148;
    text-decoration: underline;
    text-decoration-color: #92a14866;
    transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.contact-us .privacy-row__text a:hover {
    color: #A8B56F;
    text-decoration-color: #a8b56f99
}

.contact-us .submit-btn {
    align-self: flex-start;
    background: linear-gradient(125deg, #92A148 0%, #A8B56F 100%);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 16px 56px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s ease-out, transform .12s ease-out;
    box-shadow: -1px 7px 18px 0 #92a1481a
}

.contact-us .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, #A8B56F 0%, #92A148 100%);
    opacity: 0;
    transition: opacity .18s ease-out;
    border-radius: 7px
}

.contact-us .submit-btn:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    transform: translateY(-1px)
}

.contact-us .submit-btn:hover::before {
    opacity: 1
}

.contact-us .submit-btn:active {
    transform: translateY(0)
}

.contact-us .submit-btn:focus-visible {
    outline: 2px solid #92A148;
    outline-offset: 3px
}

.contact-us .submit-btn__text {
    position: relative;
    z-index: 1
}

.contact-us .data-strip {
    background: #fff;
    padding: 96px 32px;
    position: relative;
    overflow: hidden
}

.contact-us .data-strip__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.contact-us .data-strip__pattern svg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .04
}

.contact-us .data-strip__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 32px;
    position: relative;
    z-index: 1
}

.contact-us .info-tile {
    background: #F8F9F5;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 1px 5px 0 #92a14812;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.contact-us .info-tile:hover {
    box-shadow: -1px 9px 36px 0 #92a14824;
    transform: translateY(-2px)
}

.contact-us .info-tile__dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #92A148;
    box-shadow: 0 0 0 3px #92a1482e
}

.contact-us .info-tile__icon {
    width: 40px;
    height: 40px;
    background: #92A148;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact-us .info-tile__icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.contact-us .info-tile__heading {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0
}

.contact-us .info-tile__body {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2c2c2c;
    margin: 0
}

.contact-us .info-tile__body a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color .15s ease-out
}

.contact-us .info-tile__body a:hover {
    color: #92A148
}

.contact-us .code-tile {
    background: #2c2c2c;
    border-radius: 20px;
    padding: 32px;
    box-shadow: -1px 9px 36px 0 #92a14824;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    position: relative
}

.contact-us .code-tile__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.contact-us .code-tile__dot {
    width: 10px;
    height: 10px;
    border-radius: 48px
}

.contact-us .code-tile__dot--red {
    background: #e06c75
}

.contact-us .code-tile__dot--yellow {
    background: #e5c07b
}

.contact-us .code-tile__dot--green {
    background: #98c379
}

.contact-us .code-tile__label {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #888;
    margin-left: auto
}

.contact-us .code-tile__block {
    background: #1e1e1e;
    border-radius: 7px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #abb2bf;
    font-family: monospace;
    white-space: pre-wrap;
    word-break: break-word;
    margin: 0
}

.contact-us .code-tile__block .tok-key {
    color: #c678dd
}

.contact-us .code-tile__block .tok-str {
    color: #98c379
}

.contact-us .code-tile__block .tok-num {
    color: #e5c07b
}

.contact-us .code-tile__block .tok-com {
    color: #5c6370;
    font-style: italic
}

.contact-us .code-tile__caption {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #888;
    margin: 0
}

@keyframes flicker-accent {

    0%,
    100% {
        opacity: .04
    }

    48% {
        opacity: .09
    }

    52% {
        opacity: .04
    }
}

.contact-us .data-strip__pattern svg {
    animation: flicker-accent 6s ease-out infinite
}

@media (max-width: 960px) {
    .contact-us .reach__image {
        display: none
    }

    .contact-us .form-area__grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .contact-us .data-strip__grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-us .code-tile {
        grid-column: 1 / -1
    }

    .contact-us .reach__heading {
        font-size: 41px
    }
}

@media (max-width: 640px) {
    .contact-us .field-row {
        grid-template-columns: 1fr
    }

    .contact-us .data-strip__grid {
        grid-template-columns: 1fr
    }

    .contact-us .reach__heading {
        font-size: 31px
    }

    .contact-us .reach__sub {
        font-size: 15px
    }

    .contact-us .form-box {
        padding: 32px
    }

    .contact-us .budget-options {
        flex-direction: column
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #F8F9F5
}

.success-page .success-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: -1px 7px 18px 0 #92a1481a;
    padding: 56px;
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success-page .success-card .success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    width: 72px;
    height: 72px;
    border-radius: 48px;
    background: linear-gradient(135deg, #92A148 0%, #A8B56F 100%);
    box-shadow: -1px 9px 36px 0 #92a14824
}

.success-page .success-card .success-icon svg {
    display: block
}

.success-page .success-card .success-heading {
    font-size: 41px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2b2b2b;
    margin: 0 0 16px
}

.success-page .success-card .success-text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d3d3d;
    margin: 0 0 32px
}

.success-page .success-card .success-badge {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #92A148;
    background: #F8F9F5;
    border-radius: 48px;
    padding: 8px 16px;
    margin-bottom: 32px
}

.success-page .success-card .success-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #fff;
    background: linear-gradient(120deg, #92A148 0%, #A8B56F 100%);
    border-radius: 7px;
    padding: 16px 32px;
    text-decoration: none;
    transition: box-shadow .18s ease-out, background-position .22s cubic-bezier(0.4, 0, 0.6, 1);
    background-size: 200% 200%;
    background-position: 0 50%
}

.success-page .success-card .success-link:hover {
    background-position: 100% 50%;
    box-shadow: -1px 9px 36px 0 #92a14824
}

.success-page .success-card .success-link:focus {
    outline: 2px solid #92A148;
    outline-offset: 3px
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}

@media (max-width: 768px) {
    .header__body {
        flex-wrap: wrap;
        padding: 16px;
        gap: 16px
    }

    .header__toggle {
        display: flex
    }

    .header__divider {
        display: none
    }

    .header__right {
        display: none;
        flex-basis: 100%;
        align-items: stretch;
        order: 3;
        background: #2a2f14e6;
        border: 1px solid #a8b56f33;
        border-radius: 7px;
        padding: 16px
    }

    .header__right.header__right--open {
        display: flex
    }

    .menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%
    }

    .menu__item a {
        justify-content: flex-start;
        width: 100%
    }

    .header__address {
        justify-content: flex-start;
        text-align: left
    }

    .brand__name {
        font-size: 24px
    }

    .brand__mark {
        width: 48px;
        height: 48px
    }

    .site-footer {
        padding: 32px 16px
    }

    .footer__info p,
    .footer__messengers {
        font-size: 14px
    }
}

@media (max-width: 480px) {
    .brand__name span {
        font-size: 13px
    }

    .contact-us .form-box {
        padding: 24px 16px
    }

    .contact-us .form-area__grid {
        padding: 0 16px 56px
    }

    .contact-us .reach {
        padding: 72px 16px 40px
    }
}
