:root {
    --primary-red: #9D001D;
    --deep-black: #0A0A0A;
    --warm-gray: #F5F5F5;
    --light-gray: #FAFAFA;
    --text-gray: #666666;
    --glass: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.15);
    --container: min(1200px, 92vw);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    background: var(--deep-black);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
}

body.admin-bar .navbar {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .navbar {
        top: 46px;
    }
}

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.top-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.2;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: 0.35s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 3px solid var(--primary-red);
}

.navbar.navbar-solid {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.3px;
}

.logo span {
    color: var(--primary-red);
}

.logo-image {
    line-height: 0;
}

.site-logo {
    max-height: 64px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links .sub-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    display: grid;
    gap: 0;
    padding: 10px;
    margin: 0;
    list-style: none;
    background: rgba(14, 14, 14, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 120;
}

.nav-links .sub-menu li {
    margin: 0;
}

.nav-links .sub-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
}

.nav-links .sub-menu a::after {
    display: none;
}

.nav-links > li:hover > .sub-menu,
.nav-links > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn,
.btn,
.btn-outline,
.btn-white {
    text-decoration: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-weight: 700;
}

.cta-btn {
    color: #fff;
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    padding: 11px 22px;
    font-size: 0.9rem;
}

.cta-btn:hover {
    background: transparent;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    padding: 140px 0 40px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(10, 10, 10, 0.88) 30%, rgba(10, 10, 10, 0.56) 65%, rgba(10, 10, 10, 0.8) 100%),
        var(--hero-image, url("https://images.unsplash.com/photo-1517581177682-a085bb7ffb15?auto=format&fit=crop&w=2100&q=80")) center/cover no-repeat;
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    width: 56vw;
    aspect-ratio: 1;
    right: -18vw;
    top: -18vw;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(157, 0, 29, 0.45) 0, rgba(157, 0, 29, 0) 70%);
    z-index: -1;
    animation: pulse 7s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-grid {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: end;
}

.hero-badge {
    display: inline-block;
    border: 1px solid rgba(157, 0, 29, 0.75);
    background: rgba(157, 0, 29, 0.14);
    color: #ffd2d5;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
}

.hero h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.6rem, 7vw, 5.8rem);
    line-height: 0.98;
    margin-bottom: 22px;
    max-width: 14ch;
}

.hero h1 span {
    color: var(--primary-red);
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.02rem, 2vw, 1.3rem);
    max-width: 52ch;
    margin-bottom: 32px;
}

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

.btn {
    background: var(--primary-red);
    color: #fff;
    border: 2px solid var(--primary-red);
    padding: 14px 26px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(157, 0, 29, 0.35);
}

.btn-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 14px 26px;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.hero-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 24px;
    transform: rotate(-2deg);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.hero-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.hero-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.stats {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat {
    text-align: center;
    padding: 12px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.stat strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-red);
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.stat span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.76);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section {
    padding: 110px 0;
    position: relative;
    z-index: 1;
}

.section-light {
    background: var(--warm-gray);
    color: var(--deep-black);
}

.section-dark {
    background: #0c0c0c;
    color: #fff;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
}

.tag {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 12px;
}

.section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4.7vw, 3.8rem);
    line-height: 1.1;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 55ch;
}

.section-intro-dark {
    color: rgba(255, 255, 255, 0.72) !important;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    border-radius: 24px;
    height: 640px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    text-align: center;
}

.experience strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 2.3rem;
    line-height: 1;
}

.about-copy h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 16px;
}

.about-copy p {
    color: var(--text-gray);
    margin-bottom: 18px;
    font-size: 1.05rem;
}

.checks {
    list-style: none;
    margin: 20px 0 28px;
}

.checks li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.checks li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff 8%, var(--primary-red) 9% 100%);
    box-shadow: 0 0 0 3px rgba(157, 0, 29, 0.15);
}

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

.service-card {
    padding: 24px;
    border-radius: 18px;
    
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
    min-height: 280px;
    position: relative;
    overflow: hidden;
    transition: 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card.reveal.active {
    background-image:
    linear-gradient(to top, rgba(6, 6, 6, 0.88) 0%, rgba(6, 6, 6, 0.58) 38%, rgba(6, 6, 6, 0.20) 100%),
    var(--service-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(130deg, rgba(157, 0, 29, 0.4), rgba(157, 0, 29, 0));
    opacity: 0;
    transition: 0.28s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(157, 0, 29, 0.58);
}

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

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

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
    transition: margin-bottom 0.28s ease;
}

.service-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.service-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 3px;
}

.service-card.reveal.active h3 {
    color: white;
    margin-bottom: 0;
}

.service-card.reveal.active p,
.service-card.reveal.active .service-link {
    opacity: 0;
    max-height: 0;
    transform: translateY(10px);
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
}

.service-card.reveal.active:hover h3,
.service-card.reveal.active:focus-within h3 {
    margin-bottom: 10px;
}

.service-card.reveal.active:hover p,
.service-card.reveal.active:hover .service-link,
.service-card.reveal.active:focus-within p,
.service-card.reveal.active:focus-within .service-link {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
    pointer-events: auto;
}

.projects-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
}

.project-stack,
.project-column {
    display: grid;
    gap: 16px;
}

.project-card {
    position: relative;
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

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

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.06));
    z-index: 1;
}

.project-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.project-copy span {
    display: inline-block;
    color: #ffd0d4;
    font-size: 0.78rem;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.project-copy h3 {
    font-family: "Montserrat", sans-serif;
    margin-top: 5px;
    font-size: 1.35rem;
}

.projects-btn-wrap {
    margin-top: 26px;
    text-align: center;
}

.cta {
    position: relative;
    background: linear-gradient(160deg, rgba(157, 0, 29, 1), rgba(122, 0, 22, 1));
    text-align: center;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta::before {
    left: -130px;
    top: -120px;
}

.cta::after {
    right: -120px;
    bottom: -130px;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 14px;
}

.cta p {
    max-width: 60ch;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.btn-white {
    color: var(--primary-red);
    background: #fff;
    padding: 14px 26px;
    border: 2px solid #fff;
}

.btn-white:hover {
    transform: translateY(-2px);
    background: transparent;
    color: #fff;
}

footer {
    background: #090909;
    padding: 80px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 24px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand .site-logo {
    max-height: 72px;
}

.footer-brand p,
.footer-column li,
.footer-column a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.footer-brand p {
    margin-bottom: 16px;
    max-width: 46ch;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.footer-column h4 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 18px;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.9rem;
}

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

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

.archive-title,
.content-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.content-shell {
    background: #fff;
    border-radius: 20px;
    padding: clamp(20px, 3vw, 34px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
}

.cb-breadcrumbs {
    margin-bottom: 16px;
}

.cb-breadcrumbs ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.cb-breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.cb-breadcrumbs li + li::before {
    content: ">";
    margin-right: 6px;
    color: #9c9c9c;
}

.cb-breadcrumbs a {
    color: var(--primary-red);
    text-decoration: none;
}

.cb-breadcrumbs [aria-current="page"] {
    color: #323232;
    font-weight: 600;
}

.content-lead {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 60ch;
}

.content-featured-image {
    margin: 22px 0;
}

.content-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.content-body {
    color: #1d1d1d;
}

.content-body p,
.content-body ul,
.content-body ol {
    margin-bottom: 14px;
}

.content-actions {
    margin-top: 20px;
}

.projects-archive-grid {
    grid-template-columns: 1fr 1fr;
}

.service-detail-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.pagination-wrap {
    margin-top: 24px;
}

.pagination-wrap .nav-links,
.pagination-wrap .page-numbers {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    width: auto;
    background: transparent;
    gap: 8px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrap .page-numbers a,
.pagination-wrap .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #d9d9d9;
    color: #222;
    text-decoration: none;
}

.pagination-wrap .page-numbers .current {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d8d8d8;
    font: inherit;
    background: #fff;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0;
}

.project-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

.service-quickfacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0 24px;
}

.service-quickfacts div {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 14px;
}

.service-quickfacts strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: var(--deep-black);
    margin-bottom: 6px;
}

.service-quickfacts span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-single-shell {
    border-radius: 24px;
}

.service-page .section {
    padding: clamp(30px, 5vw, 60px) 0;
}

.service-hero-section {
    padding-top: clamp(136px, 14vw, 180px) !important;
    padding-bottom: clamp(14px, 2.2vw, 24px) !important;
}

.service-richtext-section {
    padding-top: 0;
    padding-bottom: clamp(18px, 3vw, 30px);
}

.service-process-section {
    padding-bottom: clamp(20px, 3vw, 32px) !important;
}

.service-faq-section {
    padding-top: clamp(20px, 3vw, 32px) !important;
}

.service-content-shell {
    border-radius: 20px;
}

.service-included-section .detail-title {
    color: #fff;
}

.service-included-section .service-section-tag {
    color: #ffd2d5;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 14px;
}

.service-hero-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline.btn-outline-dark {
    color: #1d1d1d;
    border-color: #d8d8d8;
}

.btn-outline.btn-outline-dark:hover {
    color: var(--primary-red);
    border-color: var(--primary-red);
    background: #fff;
}

.service-hero-media img {
    width: 100%;
    height: clamp(260px, 34vw, 380px);
    object-fit: cover;
    border-radius: 18px;
}

.service-hero-media {
    position: relative;
}

.service-hero-stats {
    position: absolute;
    inset: auto 14px 14px 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-hero-stats div {
    background: rgba(10, 10, 10, 0.78);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(8px);
}

.service-hero-stats strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
    color: #fff;
}

.service-hero-stats span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: rgba(255, 255, 255, 0.88);
}

.service-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 24px;
}

.service-value-card {
    border: 1px solid #ececec;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
}

.service-value-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.02rem;
    margin-bottom: 7px;
    color: var(--deep-black);
}

.service-value-card p {
    margin: 0;
    color: var(--text-gray);
}

.service-single-shell .content-body {
    border-top: 1px solid #ececec;
    padding-top: 20px;
    margin-top: 8px;
}

.detail-block {
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #ececec;
}

.detail-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2.3vw, 1.8rem);
    margin-bottom: 14px;
}

.service-section-header {
    margin-bottom: 10px;
}

.service-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    color: var(--primary-red);
    margin-bottom: 6px;
}

.service-included-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-included-item {
    border: 1px solid #e8e8e8;
    border-left: 4px solid var(--primary-red);
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.service-included-item span {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    color: var(--primary-red);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.service-included-item p {
    margin: 0;
    color: #1d1d1d;
}

.service-process-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    display: grid;
    gap: 10px;
}

.service-process-timeline::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: #e1e1e1;
}

.service-process-timeline li {
    position: relative;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    padding: 14px 14px 14px 44px;
}

.service-process-timeline li span {
    position: absolute;
    left: 0;
    top: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--primary-red);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-process-timeline li p {
    margin: 0;
}

.detail-checklist,
.detail-process {
    display: grid;
    gap: 10px;
    margin-left: 18px;
}

.detail-faq {
    display: grid;
    gap: 10px;
}

.detail-faq details {
    border: 1px solid #e4e4e4;
    border-radius: 14px;
    background: #fff;
    padding: 14px;
}

.detail-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.detail-faq p {
    margin-top: 10px;
    color: var(--text-gray);
}

.detail-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-related-card {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    min-height: 210px;
    position: relative;
}

.detail-related-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.45s ease;
}

.detail-related-card:hover img {
    transform: scale(1.07);
}

.detail-related-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 16px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.88), rgba(10, 10, 10, 0.1));
}

.detail-related-overlay span {
    display: inline-block;
    color: #ffd2d5;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.detail-related-overlay strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0;
}

.detail-cta {
    margin-top: 28px;
    border-radius: 18px;
    padding: clamp(18px, 3vw, 28px);
    background: linear-gradient(160deg, rgba(157, 0, 29, 1), rgba(122, 0, 22, 1));
    color: #fff;
}

.detail-cta h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.detail-cta p {
    max-width: 62ch;
    margin-bottom: 14px;
}

.detail-cta .btn {
    background: #fff;
    color: var(--primary-red);
    border-color: #fff;
}

.service-cta-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.service-cta-inner h2 {
    margin-bottom: 12px;
}

.service-cta-inner p {
    margin: 0 auto 22px;
    max-width: 62ch;
}

.project-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 16px 0 20px;
}

.project-facts-grid div {
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
}

.project-facts-grid strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 4px;
}

.project-facts-grid span {
    color: var(--text-gray);
}

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

.project-story-grid div {
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}

.project-story-grid strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 6px;
}

.project-story-grid p {
    margin: 0;
    color: var(--text-gray);
}

.project-testimonial {
    margin-top: 24px;
    padding: 18px 20px;
    border-left: 4px solid var(--primary-red);
    background: #fff;
    border-radius: 12px;
}

.project-testimonial p {
    margin: 0;
    font-size: 1.05rem;
}

.project-testimonial cite {
    display: block;
    margin-top: 8px;
    color: var(--text-gray);
    font-style: normal;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-list a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-column .menu,
.footer-column .menu li {
    list-style: none;
}

.footer-column .menu {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
}

@media (max-width: 1100px) {
    .hero-grid,
    .section-header,
    .about-layout,
    .projects-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        transform: none;
        max-width: 560px;
    }

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

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

    .projects-archive-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .project-gallery,
    .service-quickfacts,
    .service-value-grid,
    .service-included-grid,
    .detail-related-grid,
    .project-facts-grid,
    .project-story-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(340px, 86vw);
        background: #101010;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 90;
    }

    .nav-links .sub-menu {
        position: static;
        min-width: 0;
        width: 100%;
        margin-top: 8px;
        padding: 8px 0 8px 14px;
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links .sub-menu a {
        padding: 8px 0;
        white-space: normal;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 95;
    }

    .cta-btn {
        display: none;
    }

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

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

    .about-media img {
        height: 420px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-head {
        flex-direction: column;
    }

    .service-hero-stats {
        position: static;
        margin-top: 10px;
    }
}