:root {
    --dark: #171815;
    --dark-soft: #23241f;
    --light: #f4f1ea;
    --white: #ffffff;
    --accent: #b8905c;
    --accent-dark: #8d6a3e;
    --muted: #6d7069;
    --line: rgba(23, 24, 21, .13);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--dark);
    background: #fff;
    font-family: "Manrope", sans-serif;
}

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

img {
    max-width: 100%;
}

.section-space {
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-label::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-title {
    max-width: 780px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 4.6vw, 66px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.section-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.navbar-shell {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    padding: 22px 0;
}

.navbar {
    min-height: 78px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(17,18,15,.48);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    letter-spacing: .02em;
}

.brand-text small {
    margin-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 30px 4px !important;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 20px;
    left: 50%;
    height: 1px;
    content: "";
    background: var(--accent);
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    right: 4px;
    left: 4px;
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s ease;
}

.header-cta:hover {
    border-color: var(--accent);
    color: var(--dark);
    background: var(--accent);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
}

.hero {
    position: relative;
    min-height: 940px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15,16,13,.94) 0%, rgba(15,16,13,.67) 44%, rgba(15,16,13,.2) 100%),
        linear-gradient(0deg, rgba(15,16,13,.65) 0%, rgba(15,16,13,0) 48%),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=88") center/cover no-repeat;
}

.hero::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to right, #000, transparent 78%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 210px 0 88px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-kicker span {
    display: inline-block;
    width: 54px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(50px, 7.8vw, 112px);
    font-weight: 600;
    line-height: .94;
    letter-spacing: -.065em;
}

.hero h1 em {
    display: block;
    color: var(--accent);
    font-style: normal;
}

.hero-bottom {
    margin-top: 70px;
}

.hero-description {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-main,
.btn-light-outline {
    display: inline-flex;
    min-height: 58px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn-main {
    color: var(--dark);
    background: var(--accent);
}

.btn-main:hover {
    color: #fff;
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-light-outline {
    border: 1px solid rgba(255,255,255,.26);
    color: #fff;
}

.btn-light-outline:hover {
    border-color: #fff;
    color: var(--dark);
    background: #fff;
    transform: translateY(-2px);
}

.btn-arrow {
    font-size: 18px;
    line-height: 1;
}

.hero-index {
    position: absolute;
    z-index: 3;
    right: 32px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-index span {
    color: rgba(255,255,255,.38);
    font-size: 11px;
    font-weight: 700;
}

.hero-index span.active {
    color: var(--accent);
}

.hero-index span.active::before {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    content: "";
    background: var(--accent);
}

.stats {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    color: #fff;
    background: var(--dark);
}

.stat-item {
    min-height: 190px;
    padding: 42px 28px;
    border-right: 1px solid rgba(255,255,255,.1);
}

.stat-item:last-child {
    border-right: 0;
}

.stat-number {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
}

.stat-text {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.6;
}

.about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(184, 144, 92, .13), transparent 27%),
        linear-gradient(135deg, #f6f3ed 0%, #ece7dd 100%);
}

.about::before {
    position: absolute;
    top: 70px;
    right: -120px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(141, 106, 62, .15);
    border-radius: 50%;
    content: "";
}

.about-visual {
    position: relative;
    min-height: 720px;
    padding: 24px 58px 64px 0;
}

.about-main-photo {
    position: absolute;
    top: 0;
    right: 58px;
    bottom: 64px;
    left: 0;
    overflow: hidden;
    border-radius: 180px 26px 26px 26px;
    box-shadow: 0 36px 90px rgba(31, 29, 24, .18);
}

.about-main-photo img,
.about-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-main-photo img {
    transition: transform .9s ease;
}

.about-visual:hover .about-main-photo img {
    transform: scale(1.035);
}

.about-main-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(18, 19, 16, .02) 45%, rgba(18, 19, 16, .62) 100%);
}

.about-detail-photo {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 270px;
    overflow: hidden;
    border: 10px solid var(--light);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(31, 29, 24, .18);
}

.about-year {
    position: absolute;
    z-index: 4;
    top: 36px;
    right: 18px;
    display: grid;
    width: 126px;
    height: 126px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 18px 42px rgba(21, 22, 19, .25);
}

.about-year::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: inherit;
    content: "";
}

.about-year-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-year strong {
    display: block;
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-size: 29px;
    line-height: 1;
}

.about-year span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.6);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-photo-caption {
    position: absolute;
    z-index: 2;
    right: 110px;
    bottom: 92px;
    left: 34px;
    max-width: 340px;
    color: #fff;
}

.about-photo-caption span {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-photo-caption strong {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.about-content {
    position: relative;
    padding-left: 64px;
}

.about-content .section-title {
    max-width: 690px;
}

.about-lead {
    position: relative;
    margin: 34px 0 24px;
    padding-left: 28px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
}

.about-lead::before {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 3px;
    border-radius: 10px;
    content: "";
    background: var(--accent);
}

.about-values {
    display: grid;
    margin-top: 42px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.about-value {
    min-height: 164px;
    padding: 24px 20px;
    border: 1px solid rgba(23, 24, 21, .11);
    border-radius: 18px;
    background: rgba(255,255,255,.38);
    transition: .35s ease;
}

.about-value:hover {
    border-color: rgba(184, 144, 92, .5);
    background: rgba(255,255,255,.78);
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(31,29,24,.08);
}

.about-value span {
    display: block;
    margin-bottom: 34px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.about-value strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.3;
}

.about-value small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.about-action {
    display: inline-flex;
    margin-top: 34px;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.about-action i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--dark);
    font-style: normal;
    font-size: 18px;
    transition: .3s ease;
}

.about-action:hover i {
    color: var(--dark);
    background: var(--accent);
    transform: rotate(-35deg);
}

.services {
    color: #fff;
    background: var(--dark);
}

.services .section-title {
    max-width: 900px;
}

.services-intro {
    color: rgba(255,255,255,.55);
}

.service-list {
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,.13);
}

.service-item {
    position: relative;
    display: grid;
    min-height: 160px;
    padding: 34px 0;
    grid-template-columns: 110px 1.1fr 1.2fr 90px;
    align-items: center;
    gap: 34px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    transition: .35s ease;
}

.service-item::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, rgba(184,144,92,.18), transparent);
    transition: .35s ease;
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-item:hover {
    padding-right: 24px;
    padding-left: 24px;
}

.service-item:hover::before {
    opacity: 1;
}

.service-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.service-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 600;
    letter-spacing: -.035em;
}

.service-text {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.75;
}

.service-arrow {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    font-size: 22px;
    transition: .3s ease;
}

.service-item:hover .service-arrow {
    border-color: var(--accent);
    color: var(--dark);
    background: var(--accent);
    transform: rotate(-35deg);
}

.projects {
    background: #fff;
}

.project-card {
    position: relative;
    display: block;
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
    background-position: center;
    background-size: cover;
}

.project-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(16,17,14,.06) 30%, rgba(16,17,14,.86) 100%);
}

.project-card::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: rgba(184,144,92,.18);
    transition: .4s ease;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.project-card:hover img {
    transform: scale(1.045);
}

.project-content {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 34px;
    left: 34px;
    color: #fff;
}

.project-meta {
    display: flex;
    margin-bottom: 18px;
    gap: 16px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.project-content h3 {
    max-width: 500px;
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(27px, 3vw, 44px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-card-small {
    min-height: 294px;
}

.project-card-small .project-content {
    right: 26px;
    bottom: 26px;
    left: 26px;
}

.project-card-small .project-content h3 {
    font-size: 28px;
}

.project-top {
    margin-bottom: 54px;
}

.project-top .section-text {
    max-width: 470px;
    margin-left: auto;
}

.approach {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(18,19,16,.93), rgba(18,19,16,.4)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2200&q=88") center/cover no-repeat;
}

.approach-card {
    max-width: 650px;
    padding: 52px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: var(--radius);
    background: rgba(20,21,18,.42);
    backdrop-filter: blur(20px);
}

.approach-card .section-title {
    font-size: clamp(34px, 4vw, 58px);
}

.approach-card p {
    margin: 28px 0 0;
    color: rgba(255,255,255,.62);
    line-height: 1.9;
}

.approach-values {
    display: grid;
    margin-top: 42px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,.13);
}

.approach-value {
    padding: 24px 16px 0 0;
}

.approach-value strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
}

.approach-value small {
    color: rgba(255,255,255,.52);
}

.news {
    background: var(--light);
}

.news-card {
    height: 100%;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.48);
    transition: .35s ease;
}

.news-card:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(28,29,25,.08);
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.news-content {
    padding: 24px 8px 12px;
}

.news-date {
    display: block;
    margin-bottom: 14px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.news-content h3 {
    margin: 0 0 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.news-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.contact-cta {
    color: #fff;
    background: var(--accent-dark);
}

.contact-cta-inner {
    display: flex;
    min-height: 350px;
    padding: 60px 0;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 5.2vw, 74px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-circle {
    display: grid;
    min-width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.44);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .35s ease;
}

.contact-circle:hover {
    color: var(--dark);
    background: #fff;
    transform: rotate(-8deg);
}

footer {
    padding: 76px 0 28px;
    color: #fff;
    background: var(--dark);
}

.footer-brand .brand {
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    line-height: 1.85;
}

.footer-title {
    margin-bottom: 22px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.35);
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .navbar {
        padding: 0 16px;
    }

    .navbar-collapse {
        margin: 12px -16px 0;
        padding: 12px 22px 22px;
        border-top: 1px solid rgba(255,255,255,.1);
        background: rgba(17,18,15,.96);
    }

    .navbar-nav .nav-link {
        padding: 14px 0 !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        margin-top: 14px;
    }

    .hero-index {
        display: none;
    }

    .service-item {
        grid-template-columns: 70px 1fr 1.2fr 60px;
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 82px 0;
    }

    .hero {
        min-height: 820px;
    }

    .hero-bottom {
        margin-top: 46px;
    }

    .hero-actions {
        margin-top: 28px;
        justify-content: flex-start;
    }

    .stat-item {
        min-height: 150px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .about-visual {
        min-height: 650px;
        max-width: 680px;
        margin: 0 auto;
    }

    .about-content {
        padding: 42px 0 0;
    }

    .service-item {
        grid-template-columns: 60px 1fr 55px;
    }

    .service-text {
        display: none;
    }

    .project-top .section-text {
        margin: 30px 0 0;
    }

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

    .project-card-small {
        min-height: 330px;
    }

    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .navbar-shell {
        padding: 14px 0;
    }

    .navbar {
        min-height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .hero {
        min-height: 760px;
        background-position: 61% center;
    }

    .hero-content {
        padding: 160px 0 54px;
    }

    .hero h1 {
        font-size: clamp(43px, 15vw, 74px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn-main,
    .btn-light-outline {
        width: 100%;
    }

    .stat-item {
        padding: 32px 18px;
    }

    .stat-number {
        font-size: 34px;
    }

    .about-visual {
        min-height: 520px;
        padding: 0 34px 52px 0;
    }

    .about-main-photo {
        right: 34px;
        bottom: 52px;
        border-radius: 110px 22px 22px 22px;
    }

    .about-detail-photo {
        width: 150px;
        height: 180px;
        border-width: 7px;
    }

    .about-year {
        top: 18px;
        right: 0;
        width: 96px;
        height: 96px;
    }

    .about-year strong {
        font-size: 22px;
    }

    .about-photo-caption {
        right: 74px;
        bottom: 72px;
        left: 22px;
    }

    .about-photo-caption strong {
        font-size: 15px;
    }

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

    .about-value {
        min-height: auto;
    }

    .about-value span {
        margin-bottom: 20px;
    }

    .service-list {
        margin-top: 42px;
    }

    .service-item {
        min-height: 130px;
        padding: 26px 0;
        grid-template-columns: 44px 1fr 44px;
        gap: 15px;
    }

    .service-item:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    .service-title {
        font-size: 21px;
    }

    .service-arrow {
        width: 44px;
        height: 44px;
    }

    .project-card {
        min-height: 430px;
    }

    .project-card-small {
        min-height: 320px;
    }

    .project-content {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .project-content h3 {
        font-size: 29px;
    }

    .approach {
        min-height: 680px;
    }

    .approach-card {
        padding: 30px 24px;
    }

    .approach-values {
        gap: 10px;
    }

    .approach-value strong {
        font-size: 17px;
    }

    .approach-value small {
        font-size: 10px;
    }

    .news-image {
        height: 220px;
    }

    .contact-circle {
        min-width: 120px;
        height: 120px;
    }
}
