.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    background: var(--color-header);
    box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    height: 100%;
}

.site-header__logo img {
    width: 164px;
    height: auto;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
}

.site-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.site-header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
}

.site-header__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: var(--color-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .site-header__toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 24px;
    border: 0;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: -0.005em;
    color: var(--color-white);
    background: linear-gradient(95.75deg, var(--color-green) 0%, var(--color-green-dark) 100%);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover,
.button:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.button--small {
    min-width: 124px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    color: var(--color-green-dark);
    background: transparent;
}

.icon-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.text-link,
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.005em;
}

.text-link::before,
.arrow-link::before {
    content: "→";
    font-size: 18px;
    line-height: 1;
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 54px;
}

.section-title--center {
    justify-content: center;
}

.section-title img {
    width: 40px;
    height: auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 221px;
    padding: 36px 32px 32px;
    background: var(--color-white);
    box-shadow: 0 2px 4px 1px var(--color-shadow);
}

.service-card img {
    width: 65px;
    height: 65px;
    margin-inline: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.service-card h3 {
    max-width: 205px;
    margin-top: 24px;
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    hyphens: auto;
    overflow-wrap: break-word;
}

.service-card .arrow-link {
    margin-top: 16px;
}

.eyebrow {
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: -0.01em;
    color: var(--color-green-dark);
}

.contact-person-section {
    position: relative;
    margin-top: 90px;
    background: rgba(225, 210, 143, 0.2);
}

.contact-person {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    align-items: center;
    min-height: 230px;
    gap: 80px;
}

.contact-person__profile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 0;
    transform: translateY(-76px);
}

.contact-person__image {
    width: 190px;
    height: 190px;
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 50%;
    background: #ffb3b3;
}

.contact-person__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-text);
    text-align: center;
}

.contact-person__meta strong {
    font-weight: 700;
}

.contact-person__meta span {
    font-weight: 500;
}

.contact-person__content {
    padding: 58px 0;
}

.contact-person__content h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.site-footer {
    padding-block: 70px 42px;
    background: var(--color-footer);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 1.05fr 1.25fr;
    gap: 70px;
}

.site-footer h2 {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
}

.site-footer li,
.site-footer p,
.site-footer address,
.site-footer a,
.site-footer span {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.005em;
}

.footer-label {
    margin-top: 16px;
}

.footer-strong,
.footer-strong a,
.site-footer address strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 54px;
}

.instagram-link img {
    width: 48px;
    height: 48px;
}

.instagram-link span {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.02em;
}

.site-footer__bottom {
    display: flex;
    gap: 34px;
    margin-top: 76px;
}

.site-footer__bottom a,
.site-footer__bottom span {
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.02em;
}
