@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --font-body: "Poppins", sans-serif;
    --font-heading: "Poppins", sans-serif;
    --font-display: "Marcellus", serif;
    --ink: #1b2630;
    --muted: #687584;
    --line: #d9e1e8;
    --paper: #ffffff;
    --soft: #f3f6f8;
    --navy: #28313a;
    --navy-2: #404852;
    --gold: #d00000;
    --gold-dark: #b00000;
    --red-soft: #fff0f0;
    --steel: #7f8d9a;
    --shadow: 0 18px 45px rgba(16, 25, 35, 0.12);
    --shadow-hover: 0 24px 58px rgba(16, 25, 35, 0.18);
    --radius: 8px;
    --container: 1180px;
    --header-container: 1620px;
    --motion: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body * {
    font-family: var(--font-body);
}

.icon,
.fa,
.fa-solid,
.fa-regular,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--motion), background-color var(--motion), border-color var(--motion), box-shadow var(--motion), transform var(--motion), opacity var(--motion);
}

img,
svg {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
textarea,
select {
    font-family: var(--font-heading);
}

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 840px;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 10;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--ink);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid rgba(25, 41, 41, 0.08);
}

.rr-header {
    background: #fff;
}

.rr-header__top {
    color: rgba(25, 41, 41, 0.7);
    background: #fff;
    border-bottom: 1px solid rgba(25, 41, 41, 0.1);
}

.rr-header__contact {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-left: max(28px, calc((100vw - var(--header-container)) / 2));
    padding-right: max(28px, calc((100vw - var(--header-container)) / 2));
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.rr-header__contact-left,
.rr-header__contact-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(22px, 3vw, 52px);
}

.rr-header__contact-left a,
.rr-header__contact-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rr-header__contact a:hover {
    color: var(--ink);
}

.rr-header-2__social {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 30px);
}

.rr-header-2__social a {
    min-width: 18px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.rr-header-2__social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.rr-header__connect {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-right: calc(max(28px, calc((100vw - var(--header-container)) / 2)) * -1);
    padding: 0 clamp(34px, 4vw, 54px);
    color: #fff;
    background: #28413b;
    font-size: 1rem;
    font-weight: 500;
}

.rr-header__connect span {
    display: inline-block;
    font-size: 1.25rem;
    transition: transform var(--motion);
}

.rr-header__connect .icon {
    font-size: 0.92rem;
    transition: transform var(--motion);
}

.rr-header__connect:hover {
    color: #fff;
    background: #213731;
}

.rr-header__connect:hover .icon {
    transform: translate(3px, -3px);
}

.rr-header__main {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2.4vw, 42px);
    padding-left: max(28px, calc((100vw - var(--header-container)) / 2));
    padding-right: max(28px, calc((100vw - var(--header-container)) / 2));
    background: #fff;
}

.rr-header__logo {
    margin-left: clamp(34px, 5vw, 96px);
    padding: 8px 0;
    border-right: 0;
}

.rr-header__menu {
    flex: 1 1 auto;
    justify-content: center;
}

.rr-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 28px;
}

.rr-header__hamburger {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.brand:hover {
    color: var(--gold-dark);
}

.brand img {
    display: block;
    width: clamp(72px, 6.2vw, 98px);
    height: auto;
    max-height: 74px;
    object-fit: contain;
    transition: transform var(--motion), filter var(--motion);
}

.brand:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(208, 0, 0, 0.18));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.35vw, 24px);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink);
}

.site-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--ink);
    line-height: 1.2;
    padding: 31px 0;
}

.site-nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 27px;
    height: 1px;
    background: var(--ink);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity var(--motion), transform var(--motion);
}

.site-nav > a:hover,
.site-nav > a.is-active {
    color: var(--ink);
    font-weight: 500;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.language-switch {
    display: inline-flex;
    border: 1px solid var(--line);
    transition: border-color var(--motion), box-shadow var(--motion);
}

.language-switch:hover {
    border-color: rgba(201, 155, 83, 0.72);
    box-shadow: 0 8px 18px rgba(16, 25, 35, 0.08);
}

.language-switch a {
    padding: 7px 9px;
    color: var(--muted);
    font-size: 0.78rem;
}

.language-switch a:hover {
    color: var(--ink);
    background: var(--red-soft);
}

.language-switch a.is-active {
    color: #fff;
    background: var(--navy);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    transition: color var(--motion), background-color var(--motion), border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.nav-cta,
.button-primary {
    background: var(--gold);
    color: #fff;
}

.button-primary:hover,
.nav-cta:hover {
    background: #e00000;
    box-shadow: 0 12px 24px rgba(208, 0, 0, 0.28);
    transform: translateY(-2px);
}

.button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 24px rgba(40, 49, 58, 0.18);
    transform: translateY(-2px);
}

.menu-toggle {
    width: auto;
    height: 44px;
    border: 0;
    background: #fff;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 400;
    cursor: pointer;
    transition: border-color var(--motion), box-shadow var(--motion), transform var(--motion);
}

.menu-toggle:hover {
    transform: translateY(-1px);
}

.rr-header__hamburger-text {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
}

.rr-header__hamburger-lines {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    width: 24px;
}

.rr-header__hamburger-lines span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 0;
    background: rgba(25, 41, 41, 0.22);
    transition: width var(--motion), background-color var(--motion);
}

.menu-toggle:hover .rr-header__hamburger-lines span {
    background: var(--ink);
}

.menu-toggle:hover .rr-header__hamburger-lines span:first-child,
.menu-toggle:hover .rr-header__hamburger-lines span:last-child {
    width: 14px;
}

body.drawer-open {
    overflow: hidden;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 88;
    visibility: hidden;
    background: rgba(15, 24, 31, 0.46);
    opacity: 0;
    transition: opacity var(--motion), visibility var(--motion);
}

.drawer-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 89;
    width: min(390px, calc(100vw - 22px));
    height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 24px 22px;
    overflow-y: auto;
    background:
        linear-gradient(180deg, rgba(208, 0, 0, 0.035), transparent 28%),
        #fbfcfc;
    border-left: 1px solid rgba(25, 41, 41, 0.08);
    box-shadow: -24px 0 70px rgba(16, 25, 35, 0.16);
    transform: translateX(105%);
    transition: transform var(--motion);
}

.side-drawer.is-open {
    transform: translateX(0);
}

.side-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(25, 41, 41, 0.08);
}

.side-drawer__head img {
    width: 126px;
    height: auto;
}

.side-drawer__close {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(25, 41, 41, 0.10);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16, 25, 35, 0.08);
    cursor: pointer;
    transition: color var(--motion), transform var(--motion), background-color var(--motion), box-shadow var(--motion);
}

.side-drawer__close:hover {
    color: #fff;
    background: var(--gold);
    box-shadow: 0 14px 28px rgba(208, 0, 0, 0.22);
    transform: rotate(90deg) scale(1.02);
}

.side-drawer__nav {
    display: grid;
    align-content: start;
    gap: 8px;
}

.side-drawer__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 0 15px;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: transparent;
    transition: color var(--motion), background var(--motion), border-color var(--motion), transform var(--motion), box-shadow var(--motion);
}

.side-drawer__nav a .icon {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #9aa3a8;
    background: #f0f3f4;
    font-size: 0.86rem;
    transition: color var(--motion), background var(--motion), transform var(--motion);
}

.side-drawer__nav a:hover,
.side-drawer__nav a.is-active {
    color: var(--gold-dark);
    border-color: rgba(208, 0, 0, 0.10);
    background: #fff;
    box-shadow: 0 12px 26px rgba(16, 25, 35, 0.06);
    transform: translateX(-3px);
}

.side-drawer__nav a:hover .icon,
.side-drawer__nav a.is-active .icon {
    color: #fff;
    background: var(--gold);
    transform: translateX(2px);
}

.side-drawer__contact {
    display: grid;
    gap: 8px;
    padding: 18px;
    color: #657079;
    background: #fff;
    border: 1px solid rgba(25, 41, 41, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(16, 25, 35, 0.08);
}

.side-drawer__contact span {
    font-size: 0.9rem;
    line-height: 1.6;
}

.side-drawer__contact a {
    color: var(--ink);
    font-size: 0.96rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.side-drawer__contact a:hover {
    color: var(--gold-dark);
}

.section,
.page-hero {
    padding: 92px 0;
}

.page-hero {
    padding: 30px 0 28px;
}

.page-hero {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.95), rgba(64, 72, 82, 0.88)),
        radial-gradient(circle at 85% 12%, rgba(208, 0, 0, 0.22), transparent 32%),
        var(--navy);
    color: #fff;
}

.page-hero h1,
.hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.28rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.page-hero p,
.hero p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.section-dark {
    padding: 74px 0 34px;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(40, 49, 58, 0.96), rgba(64, 72, 82, 0.88) 48%, rgba(208, 0, 0, 0.16)),
        linear-gradient(135deg, #28313a, #737b84 55%, #d00000);
}

.hero-grid,
.split,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 64px;
    align-items: center;
}

.hero-copy {
    padding: 58px 0 42px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-media {
    min-height: 470px;
}

.image-panel,
.project-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.18), rgba(208, 0, 0, 0.16)),
        url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.image-panel::before,
.project-image::before {
    content: "";
    position: absolute;
    inset: 18%;
    border: 2px solid rgba(255, 255, 255, 0.48);
    transform: skewX(-12deg);
    transition: inset 260ms ease, border-color 260ms ease;
}

.image-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    filter: saturate(1.05);
}

.image-panel:hover::before {
    inset: 15%;
    border-color: rgba(255, 255, 255, 0.68);
}

.image-panel span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(12, 34, 56, 0.82);
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-row div {
    padding: 26px 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color var(--motion), transform var(--motion);
}

.stat-row div:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

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

.stat-row strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.stat-row span {
    color: rgba(255, 255, 255, 0.72);
}

.muted {
    background: var(--soft);
}

.section-label {
    margin: 0 0 12px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

[data-reveal="fade-left"] {
    transform: translate3d(-34px, 0, 0);
}

[data-reveal="fade-right"] {
    transform: translate3d(34px, 0, 0);
}

[data-reveal="zoom"] {
    filter: saturate(0.82) contrast(0.96);
    transform: scale(0.96);
}

[data-reveal].is-visible {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
}

.count-up {
    font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

.section h2,
.section-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.85rem, 2.65vw, 2.85rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.split p {
    color: var(--muted);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(36px, 5vw, 78px);
    align-items: start;
}

.about-story__media {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.about-story__content {
    display: grid;
    gap: 18px;
}

.about-story__content h2 {
    margin-bottom: 4px;
}

.about-story__content p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.about-story__content .lead-text {
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 800;
}

.about-image-primary {
    min-height: 520px;
}

.about-image-secondary {
    min-height: 240px;
    margin-left: clamp(26px, 5vw, 72px);
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.26), rgba(208, 0, 0, 0.18)),
        url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    color: #344251;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    border: 3px solid var(--gold);
}

.section-head {
    margin-bottom: 34px;
}

.with-link {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.text-link {
    display: inline-flex;
    color: var(--gold-dark);
    font-weight: 900;
}

.text-link:hover {
    color: var(--navy);
    transform: translateX(4px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card,
.news-list article,
.contact-form,
.contact-details,
.service-list article {
    font-family: var(--font-body);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(16, 25, 35, 0.06);
    transition: transform var(--motion), border-color var(--motion), box-shadow var(--motion), background-color var(--motion);
}

.service-card:hover,
.news-list article:hover,
.contact-form:hover,
.contact-details:hover,
.service-list article:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 155, 83, 0.55);
    box-shadow: var(--shadow-hover);
}

.service-card {
    min-height: 240px;
    padding: 24px;
}

.service-card span,
.service-list article > span {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 34px;
    border: 7px solid var(--gold);
    border-left-color: var(--navy);
    transition: transform var(--motion), border-color var(--motion);
}

.service-card:hover span,
.service-list article:hover > span {
    transform: rotate(8deg) scale(1.06);
    border-color: var(--navy);
    border-left-color: var(--gold);
}

.service-card h3,
.project-card h3,
.project-card h2,
.news-list h2,
.service-list h2 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.16;
}

.service-card p,
.project-card p,
.news-list p,
.service-list p,
.legal p {
    margin: 0;
    color: var(--muted);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-grid.expanded {
    grid-template-columns: repeat(2, 1fr);
}

.project-card {
    display: grid;
    gap: 18px;
    padding: 16px;
    font-family: var(--font-body);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(16, 25, 35, 0.06);
    transition: transform var(--motion), border-color var(--motion), box-shadow var(--motion), background-color var(--motion);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 155, 83, 0.5);
    background: #fff;
    box-shadow: var(--shadow-hover);
}

.project-grid.expanded .project-card {
    grid-template-rows: auto 1fr;
}

.project-grid.expanded .project-card h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.18rem, 1.7vw, 1.55rem);
    line-height: 1.18;
}

.project-grid.expanded .project-card > div:last-child {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 4px 2px 2px;
}

.project-image {
    min-height: 260px;
    box-shadow: none;
}

.project-card:hover .project-image {
    transform: scale(1.015);
    filter: saturate(1.06) contrast(1.02);
}

.project-card:hover .project-image::before {
    inset: 14%;
    border-color: rgba(255, 255, 255, 0.72);
}

.project-commercial {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.14)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.project-renovation {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.22), rgba(208, 0, 0, 0.18)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.project-ongoing {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.3), rgba(208, 0, 0, 0.16)),
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.project-card span,
.news-list time {
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.project-card .text-link {
    margin-top: 10px;
    gap: 8px;
}

.project-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
    gap: 44px;
    align-items: end;
}

.project-detail-hero__meta {
    display: grid;
    gap: 12px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.project-detail-hero__meta span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.project-detail-hero__meta strong {
    color: #fff;
}

.project-detail__image {
    min-height: 520px;
    margin-bottom: 42px;
}

.project-detail__content {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 48px;
    align-items: start;
}

.project-detail__text {
    display: grid;
    gap: 18px;
}

.project-detail__text p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.76;
}

.contact-band {
    padding-top: 0;
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    border-radius: var(--radius);
    transition: transform var(--motion), box-shadow var(--motion);
}

.contact-band-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-band-inner h2 {
    margin: 0 0 10px;
}

.contact-band-inner p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.service-list,
.news-list {
    display: grid;
    gap: 18px;
}

.service-list--cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-list article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 28px;
}

.service-list--cards article {
    position: relative;
    min-height: 310px;
    grid-template-columns: 1fr;
    align-content: space-between;
    padding: 30px;
    overflow: hidden;
}

.service-list--cards article::before {
    content: "";
    position: absolute;
    inset: auto -32px -42px auto;
    width: 128px;
    height: 128px;
    border: 22px solid rgba(208, 0, 0, 0.08);
    border-radius: 50%;
    transition: transform var(--motion), border-color var(--motion);
}

.service-list--cards article:hover::before {
    transform: scale(1.18) rotate(16deg);
    border-color: rgba(208, 0, 0, 0.16);
}

.service-list--cards article > span {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 0;
    color: #fff;
    background: var(--gold);
    border: 0;
    border-radius: 50%;
    font-weight: 900;
}

.service-list--cards article:hover > span {
    color: #fff;
    background: var(--navy);
    transform: translateY(-3px);
    border: 0;
}

.activity-intro__grid,
.activity-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.activity-intro h2,
.activity-detail h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.95rem, 3.4vw, 3.75rem);
    font-weight: 400;
    line-height: 0.98;
}

.activity-intro p:not(.section-label),
.activity-detail__content p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.78;
}

.activity-intro__image,
.activity-detail__image {
    min-height: 430px;
}

.activity-grid,
.affiliate-grid,
.sustainability-grid {
    display: grid;
    gap: 24px;
}

.activity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.activity-card,
.affiliate-card,
.sustainability-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(16, 25, 35, 0.06);
    transition: transform var(--motion), border-color var(--motion), box-shadow var(--motion);
}

.activity-card:hover,
.affiliate-card:hover,
.sustainability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(208, 0, 0, 0.28);
    box-shadow: var(--shadow-hover);
}

.activity-card__image {
    min-height: 220px;
    background-position: center;
    background-size: cover;
    transition: transform var(--motion), filter var(--motion);
}

.activity-card:hover .activity-card__image {
    transform: scale(1.04);
    filter: saturate(1.06) contrast(1.03);
}

.activity-card__body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.activity-card__body > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.activity-card h2,
.affiliate-card h2,
.sustainability-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.15;
}

.activity-card p,
.affiliate-card p,
.sustainability-card p {
    margin: 0;
    color: var(--muted);
}

.activity-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--gold-dark);
    font-weight: 900;
}

.activity-card a:hover {
    color: var(--navy);
    transform: translateX(4px);
}

.affiliate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.affiliate-card,
.sustainability-card {
    padding: 30px;
}

.affiliate-card__image,
.sustainability-card__image {
    min-height: 190px;
    margin: -30px -30px 24px;
    background-position: center;
    background-size: cover;
    transition: transform var(--motion), filter var(--motion);
}

.affiliate-card:hover .affiliate-card__image,
.sustainability-card:hover .sustainability-card__image {
    transform: scale(1.035);
    filter: saturate(1.05) contrast(1.03);
}

.affiliate-card > span {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sustainability-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sustainability-list-wrap {
    max-width: 1120px;
}

.sustainability-list-intro {
    max-width: 820px;
    margin: 0 auto 22px;
    text-align: center;
}

.sustainability-list-intro span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 16px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    background: rgba(201, 155, 83, 0.1);
    border: 1px solid rgba(201, 155, 83, 0.22);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sustainability-list-intro h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--navy);
}

.sustainability-list {
    display: grid;
    gap: 18px;
}

.sustainability-entry {
    position: relative;
    padding: 34px 46px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(16, 25, 35, 0.055);
    transition: transform var(--motion), border-color var(--motion), box-shadow var(--motion);
}

.sustainability-entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 3px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width var(--motion), background-color var(--motion);
}

.sustainability-entry:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 155, 83, 0.32);
    box-shadow: var(--shadow-hover);
}

.sustainability-entry:hover::before {
    width: 118px;
    background: var(--red);
}

.sustainability-entry h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 500;
    line-height: 1.18;
    color: var(--navy);
}

.sustainability-entry p {
    max-width: 860px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.78;
}

.sustainability-entry .text-link {
    margin-top: 14px;
    justify-content: center;
}

.sustainability-card span {
    width: 36px;
    height: 36px;
    display: block;
    margin-bottom: 34px;
    border: 7px solid var(--gold);
    border-left-color: var(--navy);
    transition: transform var(--motion), border-color var(--motion);
}

.sustainability-card:hover span {
    transform: rotate(8deg) scale(1.06);
    border-color: var(--navy);
    border-left-color: var(--gold);
}

.project-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.project-filter-bar button {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--ink);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: color var(--motion), background var(--motion), border-color var(--motion), transform var(--motion), box-shadow var(--motion);
}

.project-filter-bar button:hover,
.project-filter-bar button.is-active {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 12px 24px rgba(208, 0, 0, 0.18);
    transform: translateY(-2px);
}

.project-detail-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 26px 0 44px;
}

.project-detail-specs article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(16, 25, 35, 0.06);
}

.project-detail-specs span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-detail-specs p {
    margin: 0;
    color: var(--muted);
}

.activity-consulting {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1400&q=80");
}

.activity-steel {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1400&q=80");
}

.activity-concrete {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1400&q=80");
}

.activity-prefab {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1400&q=80");
}

.service-detail-card h2 {
    font-size: clamp(1.25rem, 1.8vw, 1.62rem);
}

.service-detail-card a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 900;
}

.service-detail-card a:hover {
    color: var(--navy);
    transform: translateX(4px);
}

.news-list article {
    padding: 28px;
}

.blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    padding: 0 !important;
}

.blog-card__image {
    min-height: 220px;
    background-position: center;
    background-size: cover;
    transition: transform var(--motion), filter var(--motion);
}

.blog-card:hover .blog-card__image {
    transform: scale(1.04);
    filter: saturate(1.08) contrast(1.03);
}

.blog-card__body {
    display: grid;
    gap: 10px;
    padding: 24px;
}

.blog-card__body h2 {
    font-size: 1.28rem;
    line-height: 1.22;
}

.blog-card__body .text-link {
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.blog-planning {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.24), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80");
}

.blog-renovation {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.2), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=80");
}

.blog-quality {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.22), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1581094288338-2314dddb7ece?auto=format&fit=crop&w=1200&q=80");
}

.blog-material {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.22), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb38?auto=format&fit=crop&w=1200&q=80");
}

.blog-site {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.28), rgba(208, 0, 0, 0.18)), url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=80");
}

.blog-turnkey {
    background-image: linear-gradient(135deg, rgba(40, 49, 58, 0.22), rgba(208, 0, 0, 0.16)), url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1200&q=80");
}

.contact-grid {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 14px;
    padding: 30px;
    overflow: hidden;
}

.contact-details h2 {
    margin-bottom: 8px;
}

.contact-details p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.7;
}

.contact-details a,
.contact-details span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.contact-details .icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
}

.contact-details a:hover,
.site-footer a:hover {
    color: var(--gold-dark);
}

.contact-map {
    min-height: 280px;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    display: block;
    border: 0;
    filter: saturate(0.9) contrast(1.03);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #344251;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    font: inherit;
    transition: border-color var(--motion), box-shadow var(--motion), background-color var(--motion);
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(201, 155, 83, 0.72);
    box-shadow: 0 0 0 4px rgba(201, 155, 83, 0.14);
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.notice {
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
}

.notice p {
    margin: 0;
}

.notice.success {
    background: #e6f4ea;
    color: #1d6b3a;
}

.notice.error {
    background: #fff0ed;
    color: #9a321f;
}

.legal {
    max-width: 820px;
}

.site-footer {
    padding: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 85% 18%, rgba(208, 0, 0, 0.18), transparent 30%),
        #1c2833;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}

.footer-section-2__top {
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-section-2__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.footer-brand {
    color: #fff;
}

.footer-brand img {
    width: clamp(92px, 8vw, 126px);
    max-height: 104px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.footer-section-2__social {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
    font-weight: 800;
}

.footer-section-2__social a {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    aspect-ratio: 1;
    display: inline-grid;
    place-items: center;
    margin: 0;
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 1.2rem;
    line-height: 1;
    overflow: hidden;
}

.footer-section-2__social a .icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

.footer-section-2__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-section-2__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.7fr);
    gap: 56px;
    padding-top: 70px;
}

.footer-section-2__panel {
    display: grid;
    gap: 42px;
}

.footer-section-2__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-section-2__cta .button {
    width: auto;
    min-width: 126px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-section-2__cta .button span {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-section-2__cta h2 {
    max-width: 580px;
    margin: 0 0 10px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1;
}

.footer-section-2__cta p,
.footer-section-2__about > p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-section-2__menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.footer-section-2__widget h2 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-section-2__widget a,
.footer-section-2__widget span {
    display: block;
    margin-bottom: 10px;
}

.footer-section-2__widget a {
    color: rgba(255, 255, 255, 0.68);
}

.footer-section-2__widget a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-section-2__info {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    margin-top: 26px;
}

.footer-section-2__info > span {
    width: 36px;
    height: 36px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gold);
    border-radius: 999px;
    font-size: 1.2rem;
    line-height: 1;
    overflow: hidden;
}

.footer-section-2__info > span .icon {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

.footer-section-2__info strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.footer-section-2__info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1rem;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-bottom: 9px;
}

.site-footer a {
    width: fit-content;
}

.site-footer a:hover {
    transform: translateX(3px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(208, 0, 0, 0.45);
    outline-offset: 3px;
}

.button-animated {
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow: hidden;
}

.button-animated::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #28313a;
    transform: translateX(-102%);
    transition: transform 260ms ease;
}

.button-animated:hover::before {
    transform: translateX(0);
}

.button-animated span {
    position: relative;
    z-index: 1;
}

.button-dark-outline {
    color: var(--ink);
    background: #fff;
    border-color: rgba(16, 25, 35, 0.14);
}

.button-dark-outline:hover {
    color: #fff;
    border-color: #28313a;
    box-shadow: 0 14px 28px rgba(40, 49, 58, 0.18);
    transform: translateY(-2px);
}

.home-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 0;
    background:
        linear-gradient(120deg, #f7f7f7 0%, #ffffff 48%, #fff4f4 100%);
}

.home-hero__shape {
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(208, 0, 0, 0.18);
    transform: rotate(-18deg);
}

.home-hero__shape-one {
    width: 340px;
    height: 340px;
    right: -90px;
    top: 70px;
}

.home-hero__shape-two {
    width: 180px;
    height: 180px;
    left: -60px;
    top: 150px;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.02fr);
    gap: clamp(38px, 5vw, 64px);
    align-items: start;
}

.home-hero__content {
    padding: 24px 0 58px;
}

.home-hero__content h1 {
    max-width: 680px;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.9rem, 5.55vw, 5.35rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.home-hero__content p:not(.section-label) {
    max-width: 610px;
    margin: 24px 0 0;
    color: #4b5662;
    font-size: 1.08rem;
}

.home-hero__visual {
    position: relative;
    align-self: stretch;
    min-height: 560px;
    display: grid;
    align-items: start;
    transform: translateY(-22px);
}

.home-hero__image {
    min-height: 520px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.12), rgba(208, 0, 0, 0.2)),
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80");
    background-position: center;
    background-size: cover;
}

.home-hero__image span {
    top: 24px;
    right: 24px;
    bottom: auto;
    left: auto;
    max-width: min(360px, calc(100% - 48px));
    text-align: right;
}

.home-hero__image:hover {
    transform: translateY(-8px) scale(1.012);
}

.home-hero__counter {
    position: absolute;
    z-index: 3;
    left: -34px;
    bottom: 72px;
    width: min(230px, 52%);
    padding: 26px;
    color: #fff;
    background: #28313a;
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-hover);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.home-hero__counter:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(40, 49, 58, 0.24);
}

.home-hero__counter strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 3.1rem;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.home-hero__counter span {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.home-hero__counter > span {
    display: block;
    margin-top: 8px;
}

.home-hero__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #fff;
    background: #28313a;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-top: -18px;
}

.home-hero__stats div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 30px 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    transition: background-color var(--motion), transform var(--motion);
}

.home-hero__stats div:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.home-hero__stats strong {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

.home-hero__counter .smart-counter,
.home-hero__stats .smart-counter,
.home-hero__counter .counter-suffix,
.home-hero__stats .counter-suffix {
    display: inline-flex;
    align-items: baseline;
    color: inherit;
    line-height: 1;
}

.home-hero__counter .counter-suffix,
.home-hero__stats .counter-suffix {
    margin-left: 0;
}

.home-hero__stats span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.home-hero__stats div > span {
    display: block;
    max-width: 190px;
}

.home-about__grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.home-about__image {
    min-height: 520px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(208, 0, 0, 0.14), rgba(40, 49, 58, 0.22)),
        url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1500&q=80");
    background-position: center;
    background-size: cover;
}

.home-about__content h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    line-height: 0.95;
}

.home-about__content > p:not(.section-label) {
    margin: 24px 0 0;
    color: var(--muted);
}

.home-about__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-about__link {
    margin-top: 30px;
}

.home-services {
    overflow: hidden;
    padding-bottom: 92px;
    color: #fff;
    background: #28313a;
}

.home-services__top {
    padding: 92px 0 140px;
    background:
        radial-gradient(circle at 92% 12%, rgba(208, 0, 0, 0.22), transparent 28%),
        linear-gradient(135deg, #28313a, #48515b);
}

.home-services__top-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
    gap: 62px;
    align-items: center;
}

.home-services__media {
    min-height: 330px;
    border-radius: 0;
    background:
        linear-gradient(135deg, rgba(208, 0, 0, 0.24), rgba(40, 49, 58, 0.22)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.home-services h2 {
    margin: 0;
    max-width: 820px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 5.6rem);
    line-height: 0.96;
}

.home-services__top p:not(.section-label) {
    max-width: 720px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.68);
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(230px, 1fr));
    gap: 18px;
    margin-top: -80px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.home-service-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    font-family: var(--font-body);
    background: #343d46;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}

.home-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(208, 0, 0, 0.34), transparent 62%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.home-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(208, 0, 0, 0.72);
    background: #3e4852;
    box-shadow: 0 28px 70px rgba(40, 49, 58, 0.28);
}

.home-service-card:hover::before {
    opacity: 1;
}

.home-service-card__icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-weight: 900;
    transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.home-service-card:hover .home-service-card__icon {
    transform: rotate(-8deg) scale(1.06);
    border-color: var(--gold);
    background: var(--gold);
}

.home-service-card h3,
.home-service-card p,
.home-service-card a {
    position: relative;
    z-index: 1;
}

.home-service-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.35rem;
    line-height: 1.14;
}

.home-service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.home-service-card a {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}

.home-service-card:hover a {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateX(4px);
}

.home-projects {
    overflow: hidden;
}

.home-project-panels {
    display: grid;
    gap: 18px;
    width: min(100% - 40px, 1380px);
    margin: 0 auto;
}

.home-project-panel {
    position: relative;
    min-height: 370px;
    display: grid;
    align-content: space-between;
    overflow: hidden;
    padding: 34px;
    font-family: var(--font-body);
    color: #fff;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.7), rgba(40, 49, 58, 0.18)),
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80");
    background-position: center;
    background-size: cover;
    transition: min-height 260ms ease, transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.project-villa {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.2), rgba(208, 0, 0, 0.12)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80");
    background-position: center;
    background-size: cover;
}

.home-project-panel.project-villa {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.72), rgba(40, 49, 58, 0.18)),
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
}

.home-project-panel.project-commercial {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.72), rgba(40, 49, 58, 0.2)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
}

.home-project-panel.project-renovation {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.74), rgba(40, 49, 58, 0.2)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
}

.home-project-panel.project-ongoing {
    background:
        linear-gradient(135deg, rgba(40, 49, 58, 0.74), rgba(40, 49, 58, 0.18)),
        url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
}

.home-project-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(208, 0, 0, 0.58), transparent 58%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.home-project-panel:hover {
    min-height: 430px;
    transform: translateY(-6px);
    filter: saturate(1.08);
    box-shadow: var(--shadow-hover);
}

.home-project-panel:hover::before {
    opacity: 1;
}

.home-project-panel__tags,
.home-project-panel__content,
.home-project-panel__arrow {
    position: relative;
    z-index: 1;
}

.home-project-panel__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-project-panel__tags span {
    padding: 8px 12px;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 900;
}

.home-project-panel h3 {
    max-width: 760px;
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.3rem, 5vw, 5.2rem);
    line-height: 0.94;
}

.home-project-panel p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.home-project-panel__arrow {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--gold);
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
}

.home-project-panel:hover .home-project-panel__arrow {
    transform: rotate(-35deg) scale(1.08);
    background: #fff;
    color: var(--gold);
}

.home-cta {
    padding-top: 0;
}

.home-cta__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: hidden;
    padding: 56px;
    color: #fff;
    background:
        linear-gradient(135deg, #28313a, #48515b),
        var(--navy);
    border-radius: var(--radius);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.home-cta__inner::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -70px;
    top: -90px;
    border: 34px solid rgba(208, 0, 0, 0.42);
    transform: rotate(-18deg);
}

.home-cta__inner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.home-cta__inner > * {
    position: relative;
    z-index: 1;
}

.home-cta h2 {
    max-width: 760px;
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
}

.home-cta p:not(.section-label) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1020px) {
    .rr-header__top {
        display: none;
    }

    .rr-header__main {
        min-height: 78px;
        display: flex;
        justify-content: space-between;
        padding-left: 24px;
        padding-right: 24px;
    }

    .rr-header__logo {
        margin-left: 0;
        padding-right: 0;
        border-right: 0;
    }

    .brand img {
        width: 116px;
        max-height: 64px;
    }

    .footer-section-2__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-section-2__menus {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-grid,
    .project-grid,
    .project-grid.expanded,
    .service-list--cards,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .split,
    .contact-grid,
    .about-story,
    .project-detail__content,
    .project-detail-hero__grid {
        grid-template-columns: 1fr;
    }

    .about-story__media {
        position: static;
    }

    .hero-media {
        min-height: 340px;
    }

    .home-hero__grid,
    .home-about__grid,
    .home-services__top-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-hero__content {
        padding-bottom: 24px;
    }

    .home-hero__visual {
        min-height: 430px;
        transform: none;
    }

    .home-hero__image,
    .home-about__image {
        min-height: 380px;
    }

    .home-hero__counter {
        left: 24px;
        bottom: 34px;
    }

    .home-about__checks {
        grid-template-columns: 1fr;
    }

    .home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -60px;
        overflow-x: visible;
    }
}

@media (max-width: 820px) {
    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        background: #28413b;
        border: 0;
        box-shadow: var(--shadow);
    }

    .site-nav > a::after {
        display: none;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a {
        justify-content: space-between;
        padding: 13px 18px;
        color: #fff;
    }

    .site-nav > a:hover,
    .site-nav > a.is-active {
        color: #fff;
        background: rgba(255, 255, 255, 0.07);
    }

    .language-switch {
        width: max-content;
        margin: 10px 18px 4px;
        background: #fff;
    }

    .site-header {
        box-shadow: 0 10px 28px rgba(25, 41, 41, 0.08);
    }

    .rr-header__main {
        min-height: 72px;
    }

    .menu-toggle {
        min-width: 50px;
        height: 50px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(208, 0, 0, 0.18);
        border-radius: 16px;
        background: linear-gradient(180deg, #fff, #fff6f7);
        box-shadow: 0 10px 24px rgba(25, 41, 41, 0.08);
    }

    .rr-header__hamburger-text {
        display: none;
    }

    .rr-header__hamburger-lines {
        align-items: center;
        gap: 5px;
        width: 24px;
    }

    .rr-header__hamburger-lines span {
        width: 24px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
    }

    .rr-header__hamburger-lines span:nth-child(2) {
        width: 18px;
        background: var(--gold);
    }

    .menu-toggle:hover .rr-header__hamburger-lines span,
    .menu-toggle[aria-expanded="true"] .rr-header__hamburger-lines span {
        width: 24px;
        background: #fff;
    }

    .menu-toggle:hover,
    .menu-toggle[aria-expanded="true"] {
        background: var(--gold);
        border-color: var(--gold);
        box-shadow: 0 12px 28px rgba(208, 0, 0, 0.22);
    }

    .section,
    .page-hero {
        padding: 68px 0;
    }

    .page-hero,
    .hero-copy,
    .section-head,
    .about-story__content,
    .service-card,
    .service-list article,
    .service-list--cards article,
    .project-card,
    .blog-card__body,
    .news-list article,
    .contact-details,
    .contact-band-inner,
    .home-hero__content,
    .home-about__content,
    .home-services__top,
    .home-service-card,
    .home-cta__inner,
    .project-detail__text {
        text-align: center;
    }

    .page-hero p,
    .hero p,
    .section-head p,
    .about-story__content p,
    .home-hero__content h1,
    .home-hero__content p:not(.section-label),
    .home-about__content h2,
    .home-about__content > p:not(.section-label),
    .home-services h2,
    .home-services__top p:not(.section-label),
    .home-cta p:not(.section-label),
    .contact-band-inner p,
    .project-detail__text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .with-link,
    .home-about__link,
    .home-service-card a,
    .blog-card__body .text-link,
    .service-detail-card a,
    .text-link {
        justify-content: center;
    }

    .check-list {
        justify-items: center;
    }

    .check-list li {
        width: fit-content;
        max-width: 100%;
        padding-left: 24px;
        text-align: left;
    }

    .service-card span,
    .service-list article > span,
    .home-service-card__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details a,
    .contact-details span {
        justify-content: center;
    }

    .contact-details .icon {
        flex: 0 0 auto;
    }

    .page-hero {
        padding: 26px 0 24px;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .section-dark {
        padding-top: 48px;
    }

    .stat-row,
    .service-grid,
    .service-list--cards,
    .activity-grid,
    .affiliate-grid,
    .sustainability-grid,
    .project-detail-specs,
    .project-grid,
    .project-grid.expanded,
    .blog-grid,
    .project-detail-hero__grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-row div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .with-link,
    .contact-band-inner,
    .footer-bottom,
    .footer-section-2__top-inner,
    .footer-section-2__cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-section-2__menus {
        grid-template-columns: 1fr;
    }

    .footer-section-2__grid {
        padding-top: 48px;
    }

    .site-footer,
    .footer-section-2__top-inner,
    .footer-section-2__about,
    .footer-section-2__widget,
    .footer-section-2__cta,
    .footer-bottom {
        text-align: center;
    }

    .footer-section-2__top-inner,
    .footer-section-2__cta,
    .footer-bottom {
        align-items: center;
    }

    .footer-brand,
    .footer-section-2__social,
    .footer-section-2__cta .button,
    .site-footer a {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section-2__social {
        justify-content: center;
    }

    .footer-section-2__cta p,
    .footer-section-2__about > p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section-2__info {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .footer-section-2__info a,
    .footer-section-2__info p,
    .footer-section-2__widget a {
        margin-left: auto;
        margin-right: auto;
    }

    .service-list article {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding-top: 18px;
    }

    .home-hero__content h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
        line-height: 1.08;
    }

    .activity-intro__grid,
    .activity-detail__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .activity-intro p:not(.section-label),
    .activity-detail__content p {
        margin-left: auto;
        margin-right: auto;
    }

    .activity-card__body > span,
    .sustainability-card span {
        margin-left: auto;
        margin-right: auto;
    }

    .activity-card__body,
    .affiliate-card,
    .sustainability-card {
        text-align: center;
    }

    .activity-card a {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero__stats {
        grid-template-columns: 1fr;
    }

    .home-hero__stats div {
        justify-items: center;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        padding: 22px;
        text-align: center;
    }

    .home-services__top {
        padding: 68px 0 110px;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 260px;
    }

    .home-project-panel,
    .home-project-panel:hover {
        min-height: 330px;
    }

    .home-project-panel h3 {
        padding-right: 56px;
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .home-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 34px;
    }

    .home-cta__inner {
        align-items: center;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-actions {
        flex-direction: column;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .rr-header__main {
        min-height: 68px;
        gap: 14px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand img {
        width: 108px;
        max-height: 58px;
    }

    .rr-header__actions {
        gap: 8px;
    }

    .menu-toggle {
        min-width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .contact-band-inner,
    .contact-form,
    .contact-details,
    .service-list article,
    .news-list article {
        padding: 22px;
    }

    .home-hero__shape {
        display: none;
    }

    .home-hero__visual {
        min-height: 360px;
    }

    .home-hero__image,
    .home-about__image,
    .home-services__media {
        min-height: 300px;
    }

    .home-hero__counter {
        width: calc(100% - 48px);
        left: 24px;
        bottom: 24px;
        padding: 20px;
        text-align: center;
    }

    .home-hero__counter strong {
        font-size: 2.4rem;
    }

    .home-service-card,
    .home-project-panel {
        padding: 22px;
    }

    .home-project-panel__arrow {
        right: 20px;
        top: 20px;
        width: 46px;
        height: 46px;
    }

    .home-cta__inner {
        padding: 26px;
    }
}
