:root {
    --black: #131517;
    --dark: #1a1c1f;
    --card: #232529;
    --red: #cc1a1a;
    --red-dark: #a81515;
    --red-glow: rgba(204, 26, 26, 0.12);
    --amber: #d4874d;
    --amber-glow: rgba(212, 135, 77, 0.12);
    --grey: #9a9da3;
    --light: #d8dae0;
    --white: #ffffff;
    --warm-border: rgba(255, 255, 255, 0.08);
    --surface: #1e2126;
    --surface-light: #252830;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;

    --topbar-height: 36px;
    --nav-height: 68px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--light);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(204, 26, 26, 0.3);
    color: var(--white);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(204, 26, 26, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.weld-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--amber));
    border-radius: 1px;
    margin: 4px auto 0;
    animation: weldGlow 3s ease-in-out infinite;
}

.weld-line--left {
    background: linear-gradient(90deg, var(--red), var(--amber));
}

@keyframes weldGlow {
    0%, 100% { box-shadow: 0 0 8px var(--red-glow), 0 0 2px var(--amber-glow); }
    50% { box-shadow: 0 0 20px rgba(212, 135, 77, 0.25), 0 0 8px rgba(204, 26, 26, 0.2); }
}

.weld-line--left {
    margin: 4px 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(204, 26, 26, 0.4), 0 0 0 1px rgba(204, 26, 26, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 0.95rem;
}

.topbar {
    background: linear-gradient(90deg, var(--red), #b5371a, var(--red));
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.topbar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.topbar a:hover {
    opacity: 0.8;
}

.topbar__sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
}

.nav {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.nav--scrolled {
    top: 0;
    background: rgba(19, 21, 23, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav__logo img {
    height: 36px;
    width: auto;
}

.nav__links {
    display: flex;
    gap: 16px;
}

.nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav__link:hover,
.nav__link--active {
    color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: var(--white);
    transition: color 0.2s;
}

.nav__phone svg {
    color: var(--red);
}

.nav__phone:hover {
    color: var(--red);
}

.nav__cta {
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__hamburger--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(19, 21, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    padding: 80px 24px 40px;
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--red);
}

.mobile-menu__phone {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--red);
    margin-top: 12px;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(204, 26, 26, 0.08) 0%, transparent 60%),
        linear-gradient(
            to bottom,
            rgba(19, 21, 23, 0.3) 0%,
            rgba(19, 21, 23, 0.5) 50%,
            rgba(19, 21, 23, 0.94) 100%
        );
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 60%, rgba(212, 135, 77, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 40%, rgba(204, 26, 26, 0.08) 0%, transparent 50%);
    animation: heroAmber 10s ease-in-out infinite alternate;
}

@keyframes heroAmber {
    0% { opacity: 0.4; transform: scale(1) translate(0, 0); }
    100% { opacity: 1; transform: scale(1.15) translate(3%, -2%); }
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero__heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.hero__word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealWord 0.7s var(--ease) forwards;
}

.hero__word:nth-child(1) { animation-delay: 0.2s; }
.hero__word:nth-child(2) { animation-delay: 0.35s; }
.hero__word:nth-child(3) { animation-delay: 0.5s; }

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--amber));
    margin: 20px auto 24px;
    opacity: 0;
    animation: revealWord 0.6s var(--ease) 0.7s forwards;
    box-shadow: 0 0 20px rgba(212, 135, 77, 0.3);
    border-radius: 1px;
}

.hero__sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 400;
    color: var(--light);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: revealWord 0.7s var(--ease) 0.85s forwards;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: revealWord 0.7s var(--ease) 1s forwards;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: revealWord 0.6s var(--ease) 1.5s forwards;
}

.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.2; }
}

.services {
    padding: 80px 0;
    background: var(--surface);
    background-image:
        radial-gradient(ellipse at 30% 0%, rgba(212, 135, 77, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(204, 26, 26, 0.04) 0%, transparent 50%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--red), transparent);
    opacity: 0.3;
    border-radius: 1px;
}

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

.service-card {
    display: block;
    background: var(--card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--warm-border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 24px rgba(212, 135, 77, 0.06);
    border-color: rgba(212, 135, 77, 0.15);
}

.service-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__img-wrap img {
    transform: scale(1.04);
}

.service-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(35, 37, 41, 0.95));
}

.service-card__body {
    padding: 28px 24px;
}

.service-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-card__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    transition: letter-spacing 0.3s var(--ease), text-shadow 0.3s;
}

.service-card:hover .service-card__link {
    letter-spacing: 0.14em;
    text-shadow: 0 0 12px rgba(204, 26, 26, 0.3);
}

.about {
    padding: 80px 0;
    background: var(--dark);
    background-image: radial-gradient(ellipse at 80% 50%, rgba(204, 26, 26, 0.05) 0%, transparent 50%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--light);
    margin-top: 20px;
    max-width: 540px;
}

.about__desc strong {
    color: var(--white);
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding: 28px 24px;
    border-top: none;
    background: var(--card);
    border-radius: 8px;
    border: 1px solid var(--warm-border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    color: var(--amber);
    line-height: 1;
}

.stat__label {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-top: 8px;
    opacity: 0.7;
}

.about__image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--warm-border);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery {
    padding: 80px 0;
    background: var(--surface);
    background-image:
        radial-gradient(ellipse at 70% 20%, rgba(212, 135, 77, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(204, 26, 26, 0.04) 0%, transparent 50%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), var(--amber), transparent);
    opacity: 0.25;
    border-radius: 1px;
}

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

.gallery__item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--warm-border);
    transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.gallery__item:hover {
    border-color: rgba(204, 26, 26, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.gallery__item:hover img {
    transform: scale(1.03);
}

.gallery__category {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    background: var(--red);
    padding: 5px 12px;
    border-radius: 2px;
}

.cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 80%, rgba(212, 135, 77, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(19, 21, 23, 0.88) 0%, rgba(19, 21, 23, 0.7) 50%, rgba(204, 26, 26, 0.08) 100%);
}

.cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta__heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.cta__sub {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 44px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 44px;
}

.cta__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.cta__info-item svg {
    color: var(--red);
    flex-shrink: 0;
}

.cta__info-item a {
    transition: color 0.2s;
}

.cta__info-item a:hover {
    color: var(--red);
}

.footer {
    background: #0f1012;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__link {
    display: block;
    font-size: 0.9rem;
    color: var(--grey);
    padding: 4px 0;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--white);
}

.footer__address {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.6;
    margin-top: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.85rem;
    color: var(--grey);
}

.footer__social {
    color: var(--grey);
    transition: color 0.2s;
    display: inline-flex;
}

.footer__social:hover {
    color: var(--white);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox--open {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    cursor: default;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    background: none;
    border: none;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    background: none;
    border: none;
    font-size: 1.5rem;
}

.lightbox__nav:hover {
    opacity: 1;
}

.lightbox__nav--prev {
    left: 16px;
}

.lightbox__nav--next {
    right: 16px;
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.page-hero {
    position: relative;
    padding: 200px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(204, 26, 26, 0.06) 0%, transparent 50%),
        linear-gradient(
            to bottom,
            rgba(19, 21, 23, 0.5) 0%,
            rgba(19, 21, 23, 0.88) 100%
        );
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero .section-label {
    margin-bottom: 16px;
}

.page-hero .section-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero__sub {
    font-size: 1.15rem;
    color: var(--light);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

.page-section {
    padding: 100px 0;
    position: relative;
}

.page-section--alt {
    background: var(--surface);
}

.page-section--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 26, 26, 0.2), transparent);
}

.page-section--alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 26, 26, 0.2), transparent);
}

.page-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.page-section__text h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.05;
}

.page-section__text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-top: 36px;
    margin-bottom: 14px;
}

.page-section__text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 18px;
}

.page-section__text strong {
    color: var(--white);
}

.page-section__text a {
    color: var(--red);
    font-weight: 500;
    transition: opacity 0.2s;
}

.page-section__text a:hover {
    opacity: 0.8;
}

.page-section__text ul {
    list-style: none;
    margin: 20px 0 28px;
}

.page-section__text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--light);
    font-size: 1.05rem;
    line-height: 1.65;
}

.page-section__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 2px;
    background: var(--red);
}

.page-section__image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--warm-border);
}

.page-section__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.highlight-box {
    background: var(--card);
    border-left: 3px solid var(--red);
    padding: 28px 32px;
    border-radius: 0 8px 8px 0;
    margin: 32px 0;
    box-shadow: inset 0 0 24px rgba(204, 26, 26, 0.04), 0 4px 24px rgba(0, 0, 0, 0.2);
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 1.05rem;
    color: var(--light);
    line-height: 1.75;
}

.page-stats {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    justify-content: center;
}

.page-stats .stat {
    text-align: center;
}

.page-stats .stat__number {
    font-size: 3.5rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 64px;
    }

    .page-section {
        padding: 64px 0;
    }

    .page-section__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    
    .page-stats {
        gap: 0;
        padding: 32px 0;
    }

    .page-stats .stat {
        flex: 1;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding: 8px 0;
    }

    .page-stats .stat:last-child {
        border-right: none;
    }

    .page-stats .stat__number {
        font-size: 1.8rem;
    }

    .page-stats .stat__label {
        font-size: 0.65rem;
    }

    
    .page-section__grid > .page-section__image {
        order: 2;
    }

    .page-section__grid > .page-section__text {
        order: 1;
    }

    .highlight-box {
        padding: 20px 24px;
    }
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

.page-section--compact {
    padding: 0;
}

.contact-map iframe {
    border-radius: 8px;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.contact-form {
    margin-top: 28px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
    outline: none;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--grey);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--red);
}

.contact-form__field select {
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form__field select option {
    background: var(--dark);
    color: var(--white);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: 8px;
    width: 100%;
}

.contact-form-card {
    background: var(--card);
    border-radius: 8px;
    padding: 36px 32px;
    border: 1px solid var(--warm-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-top: 24px;
    position: relative;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    opacity: 0.6;
}

.contact-form-card #contact-form {
    margin-top: 0;
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 24px 20px;
    }
}

.contact-info-card {
    background: var(--card);
    border-radius: 8px;
    padding: 36px 32px;
    border: 1px solid var(--warm-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-info-card__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-info-card__item:last-child {
    margin-bottom: 0;
}

.contact-info-card__item svg {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-card__label {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grey);
    margin-bottom: 2px;
}

.contact-info-card__item a {
    color: var(--white);
    transition: color 0.2s;
}

.contact-info-card__item a:hover {
    color: var(--red);
}

.contact-map {
    margin-top: 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

@media (hover: none) {
    .btn:active { transform: scale(0.97); }
    .service-card:active { transform: scale(0.98); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
    }
    .hero__word, .hero__divider, .hero__sub, .hero__ctas, .hero__scroll-indicator,
    .reveal-up {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .nav__phone {
        display: none;
    }

    .nav__links {
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .about__grid {
        gap: 40px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
        --topbar-height: 32px;
    }

    .topbar {
        gap: 16px;
        font-size: 0.7rem;
    }

    .topbar__address {
        display: none;
    }

    .nav__links,
    .nav__right {
        display: none;
    }

    .nav__hamburger {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 8px;
    }

    .hero__heading {
        font-size: clamp(2.2rem, 11vw, 3.5rem);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn--lg {
        padding: 14px 32px;
        width: 100%;
        max-width: 280px;
    }

    .services {
        padding: 56px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about {
        padding: 56px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__stats {
        gap: 24px;
    }

    .stat__number {
        font-size: 2.2rem;
    }

    .gallery {
        padding: 56px 0;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery__item {
        aspect-ratio: 16/10;
    }

    .cta {
        padding: 56px 0;
    }

    .cta__info {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .mobile-menu__nav {
        gap: 12px;
    }

    .mobile-menu__link {
        font-size: 1.35rem;
    }

    .mobile-menu__phone {
        font-size: 1rem;
    }

    .mobile-menu {
        padding: 70px 20px 32px;
    }
}

@media (max-height: 600px) {
    .mobile-menu__nav {
        gap: 8px;
    }

    .mobile-menu__link {
        font-size: 1.15rem;
    }

    .mobile-menu__phone {
        font-size: 0.9rem;
        margin-top: 8px;
    }

    .mobile-menu {
        padding: 60px 20px 24px;
    }
}

.map-section {
    padding: 72px 0;
    background: var(--dark);
    background-image: radial-gradient(ellipse at 50% 100%, rgba(204, 26, 26, 0.04) 0%, transparent 60%);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.map-section__map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-section__map {
    height: 480px;
}

#officeMap .leaflet-div-icon.map-pin-wrapper {
    background: none;
    border: none;
}

.map-pin {
    width: 14px;
    height: 14px;
    background: #cc1a1a;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(204, 26, 26, 0.6);
    position: relative;
}

.map-pin::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #cc1a1a;
    animation: mapPulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes mapPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}

#officeMap .leaflet-popup-content-wrapper {
    background: #222;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

#officeMap .leaflet-popup-tip {
    background: #222;
}

#officeMap .leaflet-popup-content {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    margin: 8px 12px;
}

#officeMap .leaflet-popup-close-button {
    color: #999;
}

#officeMap .leaflet-popup-close-button:hover {
    color: #fff;
}

.map-popup__country {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #cc1a1a;
    display: block;
    margin-bottom: 2px;
}

.map-popup__hq {
    color: #cc1a1a;
    font-size: 0.65rem;
}

.map-popup__projects {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.map-popup__project {
    font-family: 'Barlow', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #bbb;
    letter-spacing: 0.02em;
}

.map-popup__project::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #cc1a1a;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

#officeMap .leaflet-control-attribution {
    background: rgba(17, 17, 17, 0.8);
    color: #555;
    font-size: 0.6rem;
}

#officeMap .leaflet-control-attribution a {
    color: #777;
}

#officeMap .leaflet-control-zoom a {
    background: #222;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

#officeMap .leaflet-control-zoom a:hover {
    background: #333;
}

@media (max-width: 768px) {
    .map-section {
        padding: 56px 0;
    }

    .map-section__map {
        height: 360px;
    }
}

@media (max-width: 480px) {
    .map-section__map {
        height: 300px;
    }
}
