
.hero-section {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--hero-overlay), var(--hero-overlay)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='2'%3E%3Cpath d='M20 40c25 10 40 25 60 60s35 45 70 55'/%3E%3Cpath d='M0 120c20-18 54-22 82-8s55 20 98 6'/%3E%3Ccircle cx='52' cy='56' r='12'/%3E%3Ccircle cx='110' cy='108' r='8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover, 280px 280px;
    mix-blend-mode: screen;
    z-index: 1;
}

.hero-section__content {
    position: relative;
    z-index: 2;
    padding-top: 6.5rem;
    padding-bottom: 6rem;
}

.hero-copy {
    max-width: 620px;
    color: #fff;
}

.hero-copy__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-copy__text {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.8rem;
}

.hero-copy__actions {
    display: flex !important;
    flex-direction: row !important;
    width: fit-content;
    gap: 1rem !important;
}

.services-grid-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
} 

.section-block--about {
    background: linear-gradient(90deg, rgba(176, 0, 54, 1) 0%, rgba(255, 10, 84, 1) 100%);
}

.section-block--value {
    background-color: #ffffff;
}

.section-block--projects {
    background-color: var(--surface-soft);
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-heading__eyebrow {
    color: #8c8c8c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.section-heading__eyebrow--light {
    color: rgba(255, 255, 255, 0.72);
}

.section-heading__title {
    font-size: clamp(1.75rem, 3.6vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.section-heading__title--light {
    color: #fff;
}

.section-heading__title--left {
    text-align: left;
}

.services-shell {
    position: relative;
    padding-inline: 2rem;
}

/*
CARD
.service-card {
    height: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}


.service-card:hover {
    box-shadow: 0 18px 35px rgba(39, 28, 32, 0.08);
}


.service-card__media {
    overflow: hidden;
}

.service-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__media img {
    transform: scale(1.05);
}

.service-card__title,
.service-card__text {
    padding-inline: 20px;
}

.service-card__title {
    font-size: 1rem;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 0.55rem;
}

.service-card__text {
    color: var(--muted-text);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}*/

.services-link {
    position: relative;
    color: var(--ink-color);
    font-weight: 700;
}

.services-link:hover,
.services-link:focus {
    color: var(--primary-color);
}


.about-copy {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 1rem;
    margin-bottom: 1.6rem;
}

.about-btn {
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 0;
    padding: 0.8rem 1.3rem;
    font-size: 0.86rem;
    font-weight: 800;
}

.about-btn:hover,
.about-btn:focus {
    background-color: #f5f5f5;
    color: var(--primary-dark);
}

.section-block--about img,
.about-index-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.section-block--about img:hover,
.about-index-img:hover {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .about-index-img {
        max-height: 340px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .about-index-img {
        max-height: 240px;
    }
}

/* --- DECORATIVE LINES --- */
.about-line {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.line-white {
    width: 40px;
    height: 3px;
    background-color: var(--surface-soft);
}

.line-grey {
    width: 20px;
    height: 3px;
    background-color: #ffd2df2d; /* light grey */
}

.value-copy {
    color: var(--muted-text);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.section-block--value img {
    transition: transform 0.4s ease;
}

.section-block--value img:hover {
    transform: scale(1.05);
}

.project-card {
    height: 100%;
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 1.2rem 1rem;
    background-color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(230, 0, 92, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(39, 28, 32, 0.08);
}

/* .project-card__logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffcf40 0%, #ff8c2a 100%);
    color: #1f1f1f;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
} */

.project-logo {
    width: 70px;   /* control size */
    height: auto;
    object-fit: contain;
}

.project-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.project-card__text {
    color: var(--muted-text);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.projects-link {
    color: var(--ink-color);
    font-weight: 700;
}

.projects-link:hover,
.projects-link:focus {
    color: var(--primary-color);
}

/* --- SERVICES SLIDER --- */
.services-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.services-slider__item {
    flex: 0 0 calc(25% - 1rem);
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 991.98px) {
    .services-slider__item {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .services-slider__item {
        flex: 0 0 78%;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 460px;
    }

    .hero-section__content {
        padding-top: 4.5rem;
        padding-bottom: 4rem;
    }

    .placeholder-tile--photo {
        min-height: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-copy__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .service-card__title,
    .project-card__title {
        font-size: 0.96rem;
    }
}