
        :root {
            --primary: #df111a;
            --primary-dark: #af0710;
            --primary-soft: #fff0f1;
            --dark: #111827;
            --black: #050505;
            --muted: #6b7280;
            --white: #ffffff;
            --light: #f7f7f8;
            --border: #e5e7eb;
            --shadow: 0 24px 70px rgba(15, 23, 42, .14);
            --shadow-soft: 0 12px 35px rgba(15, 23, 42, .10);
            --radius: 24px;
            --container: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", Arial, sans-serif;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: min(100% - 32px, var(--container));
            margin: 0 auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 0;
            border-radius: 999px;
            padding: 14px 24px;
            font-weight: 800;
            cursor: pointer;
            transition: .25s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 15px 35px rgba(223, 17, 26, .30);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 45px rgba(223, 17, 26, .38);
        }

        .btn-light {
            background: var(--white);
            color: var(--primary);
            border: 1px solid rgba(255, 255, 255, .6);
        }

        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 1px solid var(--border);
        }

        .btn-outline:hover {
            background: var(--dark);
            color: var(--white);
        }

        .topbar {
            background: var(--black);
            color: rgba(255,255,255,.85);
            font-size: 13px;
        }

        .topbar .container {
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            flex-wrap: wrap;
        }

        .topbar-left,
        .topbar-right {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .topbar i {
            color: var(--primary);
        }

        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,.93);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(229, 231, 235, .7);
        }

        .navbar {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            letter-spacing: -.6px;
            font-size: 23px;
            color: var(--dark);
        }

        .brand-mark {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            color: var(--white);
            background: linear-gradient(135deg, var(--primary), var(--dark));
            box-shadow: 0 14px 28px rgba(223, 17, 26, .25);
        }

        .brand small {
            display: block;
            font-size: 11px;
            color: var(--muted);
            font-weight: 700;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            margin-top: 2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 26px;
            font-weight: 800;
            font-size: 14px;
        }

        .nav-links a {
            position: relative;
            color: #1f2937;
        }

        .nav-links a:after {
            content: "";
            width: 0;
            height: 3px;
            border-radius: 999px;
            background: var(--primary);
            position: absolute;
            left: 0;
            bottom: -9px;
            transition: .25s ease;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: var(--white);
            font-size: 18px;
        }

        .hero {
            position: relative;
            min-height: 760px;
            display: grid;
            align-items: center;
            overflow: hidden;
            background: #090909;
        }

        .slider {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .8s ease;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide:before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62), rgba(0,0,0,.20)),
                radial-gradient(circle at 78% 24%, rgba(223,17,26,.48), transparent 32%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            width: min(100%, 760px);
            padding: 120px 0 85px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.22);
            border-radius: 999px;
            padding: 8px 14px;
            color: rgba(255,255,255,.92);
            font-size: 13px;
            font-weight: 800;
            backdrop-filter: blur(10px);
            margin-bottom: 24px;
        }

        .eyebrow span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 7px rgba(223,17,26,.24);
        }

        .hero h1 {
            font-size: clamp(42px, 7vw, 82px);
            line-height: .96;
            letter-spacing: -3px;
            font-weight: 900;
            margin-bottom: 22px;
        }

        .hero h1 strong {
            color: #ff3842;
        }

        .hero p {
            font-size: clamp(16px, 2vw, 20px);
            line-height: 1.75;
            color: rgba(255,255,255,.84);
            max-width: 660px;
            margin-bottom: 30px;
        }

        .hero-content .eyebrow em {
            font-style: normal;
        }

        #slideEyebrow,
        #slideTitle,
        #slideHighlight,
        #slideDescription {
            transition: opacity .25s ease, transform .25s ease;
        }

        .hero-content.text-changing #slideEyebrow,
        .hero-content.text-changing #slideTitle,
        .hero-content.text-changing #slideHighlight,
        .hero-content.text-changing #slideDescription {
            opacity: 0;
            transform: translateY(8px);
        }

        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 34px;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(120px, 1fr));
            gap: 14px;
            width: min(100%, 600px);
        }

        .stat-card {
            padding: 18px;
            border-radius: 20px;
            background: rgba(255,255,255,.10);
            border: 1px solid rgba(255,255,255,.16);
            backdrop-filter: blur(14px);
        }

        .stat-card h3 {
            font-size: 28px;
            color: var(--white);
        }

        .stat-card p {
            margin: 3px 0 0;
            font-size: 12px;
            line-height: 1.4;
            color: rgba(255,255,255,.70);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .7px;
        }

        .slider-controls {
            position: absolute;
            z-index: 4;
            right: max(24px, calc((100vw - var(--container)) / 2));
            bottom: 48px;
            display: flex;
            gap: 12px;
        }

        .slider-controls button {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.25);
            background: rgba(255,255,255,.12);
            color: var(--white);
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: .25s ease;
        }

        .slider-controls button:hover {
            background: var(--primary);
        }

        .quick-panel {
            position: relative;
            z-index: 10;
            margin-top: -58px;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .quick-item {
            padding: 28px;
            border-right: 1px solid var(--border);
            transition: .25s ease;
        }

        .quick-item:last-child {
            border-right: 0;
        }

        .quick-item i {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            border-radius: 18px;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 22px;
            margin-bottom: 18px;
        }

        .quick-item h3 {
            font-size: 18px;
            margin-bottom: 9px;
        }

        .quick-item p {
            color: var(--muted);
            line-height: 1.6;
            font-size: 14px;
        }

        .quick-item:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-8px);
        }

        .quick-item:hover p,
        .quick-item:hover i {
            color: var(--white);
        }

        .quick-item:hover i {
            background: rgba(255,255,255,.16);
        }

        section {
            padding: 12px 0;
        }

        .section-head {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 52px;
        }

        .section-kicker {
            color: var(--primary);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1.6px;
            font-size: 40px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(32px, 5vw, 52px);
            line-height: 1.05;
            letter-spacing: -1.8px;
            font-weight: 900;
            margin-bottom: 16px;
        }

        .section-desc {
            color: var(--muted);
            line-height: 1.8;
            font-size: 16px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 54px;
            align-items: center;
        }

        .about-images {
            position: relative;
            min-height: 540px;
        }

        .about-img-main,
        .about-img-small {
            position: absolute;
            overflow: hidden;
            border-radius: 34px;
            box-shadow: var(--shadow);
        }

        .about-img-main {
            inset: 0 70px 80px 0;
        }

        .about-img-small {
            width: 330px;
            right: 0;
            bottom: 0;
            border: 10px solid var(--white);
        }

        .about-img-main img,
        .about-img-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .experience-badge {
            position: absolute;
            left: 26px;
            bottom: 34px;
            width: 165px;
            height: 165px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: grid;
            place-items: center;
            text-align: center;
            box-shadow: 0 20px 50px rgba(223,17,26,.35);
            border: 8px solid var(--white);
        }

        .experience-badge strong {
            font-size: 48px;
            display: block;
            line-height: 1;
        }

        .experience-badge span {
            font-weight: 800;
            font-size: 13px;
        }

        .about-content h2 {
            font-size: clamp(32px, 5vw, 50px);
            line-height: 1.08;
            letter-spacing: -1.7px;
            margin-bottom: 18px;
        }

        .about-content p {
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 22px;
        }

        .check-list {
            display: grid;
            gap: 14px;
            margin: 26px 0 30px;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #374151;
            font-weight: 700;
        }

        .check-list i {
            color: var(--primary);
            margin-top: 3px;
        }

        .services {
            background: linear-gradient(180deg, #fff, #fafafa);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            position: relative;
            padding: 34px;
            border: 1px solid var(--border);
            border-radius: 28px;
            background: var(--white);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            transition: .28s ease;
        }

        .service-card:before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(223,17,26,.12), transparent 48%);
            opacity: 0;
            transition: .28s ease;
        }

        .service-card:hover {
            transform: translateY(-9px);
            border-color: rgba(223,17,26,.35);
            box-shadow: var(--shadow);
        }

        .service-card:hover:before {
            opacity: 1;
        }

        .service-icon {
            position: relative;
            width: 68px;
            height: 68px;
            border-radius: 22px;
            display: grid;
            place-items: center;
            background: var(--primary-soft);
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 22px;
            overflow: hidden;
        }

        .service-icon img {
            width: 48px;
            height: 48px;
            object-fit: contain;
        }

        .service-card h3 {
            position: relative;
            font-size: 21px;
            margin-bottom: 12px;
        }

        .service-card p {
            position: relative;
            color: var(--muted);
            line-height: 1.75;
            font-size: 15px;
            margin-bottom: 18px;
        }

        .service-card a {
            position: relative;
            color: var(--primary);
            font-weight: 900;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .process {
            background: #101010;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .process:before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: rgba(223,17,26,.22);
            filter: blur(20px);
            right: -210px;
            top: -150px;
        }

        .process .section-desc {
            color: rgba(255,255,255,.72);
        }

        .process-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .process-card {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 26px;
            padding: 30px;
            backdrop-filter: blur(12px);
        }

        .process-number {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--primary);
            display: grid;
            place-items: center;
            font-weight: 900;
            margin-bottom: 18px;
            box-shadow: 0 12px 28px rgba(223,17,26,.35);
        }

        .process-card h3 {
            font-size: 19px;
            margin-bottom: 10px;
        }

        .process-card p {
            color: rgba(255,255,255,.72);
            line-height: 1.7;
            font-size: 14px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .price-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: .28s ease;
        }

        .price-card.featured {
            border-color: var(--primary);
            transform: scale(1.03);
            box-shadow: 0 28px 80px rgba(223,17,26,.18);
        }

        .price-top {
            padding: 34px;
            background: #fafafa;
        }

        .price-card.featured .price-top {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
        }

        .price-top h3 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .price-top p {
            color: var(--muted);
            line-height: 1.6;
        }

        .price-card.featured .price-top p {
            color: rgba(255,255,255,.82);
        }

        .price {
            font-size: 42px;
            font-weight: 900;
            letter-spacing: -1.2px;
            margin-top: 18px;
        }

        .price small {
            font-size: 14px;
            font-weight: 700;
            opacity: .75;
        }

        .price-body {
            padding: 34px;
        }

        .price-body li {
            display: flex;
            gap: 11px;
            margin-bottom: 16px;
            color: #374151;
            font-weight: 700;
        }

        .price-body i {
            color: var(--primary);
            margin-top: 2px;
        }

        .gallery {
            background: var(--light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr .85fr;
            grid-auto-rows: 230px;
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            box-shadow: var(--shadow-soft);
        }

        .gallery-item.large {
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .45s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-item:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,.70));
        }

        .gallery-caption {
            position: absolute;
            left: 24px;
            right: 24px;
            bottom: 22px;
            color: var(--white);
            z-index: 2;
        }

        .gallery-caption h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .gallery-caption p {
            color: rgba(255,255,255,.78);
            font-size: 14px;
        }

        .testimonials {
            background: var(--white);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 30px;
            box-shadow: var(--shadow-soft);
        }

        .stars {
            color: #f59e0b;
            margin-bottom: 16px;
        }

        .testimonial-card p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .client {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .official-logo-img {
            max-width: 185px;
            height: auto;
        }

        .client img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client h4 {
            font-size: 15px;
        }

        .client span {
            color: var(--muted);
            font-size: 13px;
        }

        .cta {
            padding: 0;
            background: var(--white);
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            border-radius: 36px;
            background:
                linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.70)),
                url("https://www.sparklingdigitizing.com/assets/img/banner2.jpg") center/cover;
            color: var(--white);
            padding: 62px;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 32px;
            box-shadow: var(--shadow);
        }

        .cta-box h2 {
            font-size: clamp(30px, 5vw, 48px);
            letter-spacing: -1.4px;
            line-height: 1.08;
            margin-bottom: 14px;
        }

        .cta-box p {
            color: rgba(255,255,255,.78);
            max-width: 680px;
            line-height: 1.8;
        }

        .contact {
            background: linear-gradient(180deg, #fff, #fafafa);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 30px;
            align-items: stretch;
        }

        .contact-info {
            background: var(--dark);
            color: var(--white);
            border-radius: 30px;
            padding: 36px;
            box-shadow: var(--shadow);
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 18px;
        }

        .contact-info p {
            color: rgba(255,255,255,.72);
            line-height: 1.75;
            margin-bottom: 26px;
        }

        .contact-line {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .contact-line i {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(223,17,26,.18);
            color: #ff4c55;
            display: grid;
            place-items: center;
            flex: none;
        }

        .contact-line strong {
            display: block;
            margin-bottom: 4px;
        }

        .contact-line span {
            color: rgba(255,255,255,.74);
            line-height: 1.5;
        }

        .contact-form {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 30px;
            padding: 36px;
            box-shadow: var(--shadow-soft);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: grid;
            gap: 8px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            font-weight: 800;
            font-size: 14px;
        }

        input,
        textarea,
        select {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 15px 16px;
            font: inherit;
            outline: none;
            transition: .22s ease;
            background: #fbfbfb;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(223,17,26,.10);
            background: var(--white);
        }

        textarea {
            min-height: 130px;
            resize: vertical;
        }

        .footer {
            background: #080808;
            color: var(--white);
            padding-top: 74px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.25fr .75fr .75fr 1fr;
            gap: 36px;
            padding-bottom: 46px;
        }

        .footer h3 {
            font-size: 18px;
            margin-bottom: 18px;
        }

        .footer p,
        .footer li {
            color: rgba(255,255,255,.68);
            line-height: 1.8;
            margin-bottom: 9px;
        }

        .footer a:hover {
            color: var(--primary);
        }

        .socials {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .socials a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255,255,255,.08);
            display: grid;
            place-items: center;
            color: var(--white);
            transition: .22s ease;
        }

        .socials a:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,.10);
            padding: 22px 0;
            color: rgba(255,255,255,.58);
            font-size: 14px;
            text-align: center;
        }



        .gallery-item {
            cursor: zoom-in;
        }

        .gallery-preview {
            position: fixed;
            inset: 0;
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(0, 0, 0, .86);
            backdrop-filter: blur(12px);
        }

        .gallery-preview.active {
            display: flex;
        }

        .gallery-preview-box {
            position: relative;
            width: min(100%, 1080px);
            background: #0f0f0f;
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 32px 100px rgba(0,0,0,.55);
        }

        .gallery-preview-img-wrap {
            position: relative;
            height: min(72vh, 660px);
            background: #050505;
        }

        .gallery-preview-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .gallery-preview-info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 18px 22px;
            color: var(--white);
            background: linear-gradient(90deg, #111, #1a1a1a);
        }

        .gallery-preview-info h3 {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .gallery-preview-info p {
            color: rgba(255,255,255,.65);
            font-size: 14px;
        }

        .gallery-preview-count {
            flex: none;
            color: rgba(255,255,255,.72);
            font-weight: 800;
            background: rgba(255,255,255,.09);
            padding: 8px 14px;
            border-radius: 999px;
        }

        .gallery-preview-close,
        .gallery-preview-nav {
            position: absolute;
            z-index: 3;
            border: 1px solid rgba(255,255,255,.18);
            background: rgba(255,255,255,.12);
            color: var(--white);
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: .22s ease;
            backdrop-filter: blur(10px);
        }

        .gallery-preview-close:hover,
        .gallery-preview-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .gallery-preview-close {
            top: 18px;
            right: 18px;
            width: 46px;
            height: 46px;
            border-radius: 50%;
        }

        .gallery-preview-nav {
            top: 50%;
            transform: translateY(-50%);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            font-size: 18px;
        }

        .gallery-preview-nav.prev {
            left: 18px;
        }

        .gallery-preview-nav.next {
            right: 18px;
        }



        /* Official logo + one-line professional header refinements */
        .brand-logo-wrap {
            width: 176px;
            max-width: 176px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex: 0 0 auto;
        }

        .brand-logo-img {
            width: auto;
            max-width: 176px;
            max-height: 58px;
            object-fit: contain;
            display: block;
        }

        .brand-text-fallback {
            display: none;
            font-size: 20px;
            font-weight: 900;
            line-height: 1.05;
            color: var(--dark);
            letter-spacing: -.7px;
            white-space: nowrap;
        }

        .brand.logo-error .brand-logo-img {
            display: none;
        }

        .brand.logo-error .brand-text-fallback {
            display: block;
        }

        .navbar {
            min-height: 78px;
            gap: 14px;
            flex-wrap: nowrap;
        }

        .brand {
            min-width: 0;
            flex: 0 0 auto;
            gap: 10px;
        }

        .nav-links {
            flex: 1 1 auto;
            min-width: 0;
            justify-content: center;
            /* gap: clamp(9px, 1vw, 18px); */
            white-space: nowrap;
        }

        .nav-links > a,
        .nav-links > .nav-dropdown > a {
            font-size: clamp(11.5px, .86vw, 13.5px);
            line-height: 1;
            white-space: nowrap;
        }

        .nav-actions {
            flex: 0 0 auto;
        }

        .nav-actions .btn {
            padding: 12px 18px;
            font-size: 13px;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            position: relative;
            color: #1f2937;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 18px);
            left: 50%;
            transform: translateX(-50%) translateY(8px);
            min-width: 270px;
            padding: 12px;
            border: 1px solid var(--border);
            background: var(--white);
            border-radius: 18px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: .22s ease;
            z-index: 1200;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 11px 13px;
            border-radius: 12px;
            color: #374151;
            font-weight: 800;
            font-size: 13px;
            line-height: 1.2;
            white-space: nowrap;
        }

        .nav-dropdown-menu a:hover {
            background: var(--primary-soft);
            color: var(--primary);
        }



        .brand-logo-wrap {
            /* background: #fff; */
            border-radius: 12px;
            padding: 4px 6px;
            overflow: hidden;
        }

        .footer .brand-logo-wrap {
            /* background: rgba(255,255,255,.96); */
        }

        .brand-logo-img {
            image-rendering: auto;
        }

        @media (max-width: 1180px) {
            .brand-logo-wrap {
                width: 156px;
                max-width: 156px;
            }

            .brand-logo-img {
                max-width: 156px;
            }

            .nav-links {
                gap: 12px;
            }

            .nav-actions .btn-outline {
                display: none;
            }
        }

        @media (max-width: 1024px) {
            .brand-logo-wrap {
                width: 168px;
                max-width: 168px;
            }

            .brand-logo-img {
                max-width: 168px;
            }

            .nav-links.mobile-open {
                display: grid;
                white-space: normal;
            }

            .nav-links.mobile-open > a,
            .nav-links.mobile-open > .nav-dropdown > a {
                font-size: 14px;
                line-height: 1.25;
            }

            .nav-dropdown-menu {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                border-radius: 14px;
                margin-top: 10px;
                min-width: 0;
                display: none;
            }

            .nav-dropdown:hover .nav-dropdown-menu,
            .nav-dropdown:focus-within .nav-dropdown-menu,
            .nav-links.mobile-open .nav-dropdown-menu {
                display: grid;
                transform: none;
            }
        }

        @media (max-width: 520px) {
            .brand-logo-wrap {
                width: 138px;
                max-width: 138px;
                height: 48px;
            }

            .brand-logo-img {
                max-width: 138px;
                max-height: 48px;
            }

            .nav-actions .btn-primary {
                display: none;
            }
        }

        @media (max-width: 700px) {
            .gallery-preview {
                padding: 12px;
            }

            .gallery-preview-box {
                border-radius: 20px;
            }

            .gallery-preview-img-wrap {
                height: 62vh;
            }

            .gallery-preview-info {
                align-items: flex-start;
                flex-direction: column;
                padding: 16px;
            }

            .gallery-preview-nav {
                width: 44px;
                height: 44px;
            }
        }

        @media (max-width: 1024px) {
            .nav-links,
            .nav-actions .btn-outline {
                display: none;
            }

            .menu-toggle {
                display: inline-grid;
                place-items: center;
            }

            .nav-links.mobile-open {
                display: grid;
                position: absolute;
                top: 82px;
                left: 16px;
                right: 16px;
                background: var(--white);
                border: 1px solid var(--border);
                border-radius: 22px;
                padding: 22px;
                box-shadow: var(--shadow);
                gap: 18px;
            }

            .quick-grid,
            .process-grid,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-grid,
            .pricing-grid,
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .contact-grid,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .cta-box {
                padding: 42px;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
            }

            .gallery-item.large {
                grid-column: span 2;
            }
        }

        @media (max-width: 700px) {
            .topbar .container {
                justify-content: center;
                text-align: center;
            }

            .brand {
                font-size: 19px;
            }

            .brand-mark {
                width: 42px;
                height: 42px;
            }

            .hero {
                min-height: 780px;
            }

            .hero h1 {
                letter-spacing: -1.8px;
            }

            .hero-stats,
            .quick-grid,
            .service-grid,
            .process-grid,
            .pricing-grid,
            .testimonial-grid,
            .footer-grid,
            .form-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .quick-panel {
                margin-top: 28px;
            }

            .quick-grid {
                box-shadow: var(--shadow-soft);
            }

            .quick-item {
                border-right: 0;
                border-bottom: 1px solid var(--border);
            }

            .about-images {
                min-height: 430px;
            }

            .about-img-main {
                inset: 0 0 95px 0;
            }

            .about-img-small {
                width: 250px;
            }

            .experience-badge {
                width: 135px;
                height: 135px;
            }

            .experience-badge strong {
                font-size: 38px;
            }

            .price-card.featured {
                transform: none;
            }

            section {
                padding: 72px 0;
            }

            .gallery-item.large {
                grid-column: auto;
                grid-row: auto;
            }

            .slider-controls {
                left: 24px;
                right: auto;
                bottom: 28px;
            }

            .cta-box {
                padding: 32px 24px;
                border-radius: 28px;
            }
        }
    

        /* Final header/logo/menu refinements: same logo, one line, no overflow */
        .header .container.navbar {
            width: min(100% - 22px, 1240px);
        }

        .brand-logo-wrap {
            width: 205px !important;
            max-width: 205px !important;
            height: 62px !important;
            overflow: hidden;
        }

        .brand-logo-img {
            width: auto !important;
            max-width: 205px !important;
            max-height: 168px !important;
            object-fit: contain !important;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            /* gap: clamp(8px, .78vw, 14px) !important; */
            white-space: nowrap;
            overflow: visible;
        }

        .nav-links > a,
        .nav-links > .nav-dropdown > a {
            font-size: clamp(11px, .78vw, 13px) !important;
            letter-spacing: 0 !important;
            line-height: 1 !important;
            padding: 31px 0;
        }

        .nav-actions .btn {
            padding: 11px 15px !important;
            font-size: 12.5px !important;
        }

        .nav-actions {
            gap: 8px !important;
        }

        .gallery-item img,
        .service-icon img,
        .about-images img {
            background: #f8f8f8;
        }

        @media (max-width: 1180px) {
            .nav-links,
            .nav-actions .btn-outline {
                display: none !important;
            }
            .menu-toggle {
                display: inline-grid !important;
                place-items: center;
            }
            .nav-links.mobile-open {
                display: grid !important;
                position: absolute;
                top: 82px;
                left: 16px;
                right: 16px;
                background: var(--white);
                border: 1px solid var(--border);
                border-radius: 22px;
                padding: 18px;
                box-shadow: var(--shadow);
                gap: 0 !important;
                white-space: normal;
            }
            .nav-links.mobile-open > a,
            .nav-links.mobile-open > .nav-dropdown > a {
                padding: 14px 10px !important;
                font-size: 14px !important;
                border-bottom: 1px solid var(--border);
            }
        }

        @media (max-width: 576px) {
            .brand-logo-wrap {
                width: 170px !important;
                max-width: 170px !important;
                height: 54px !important;
            }
            .brand-logo-img {
                max-width: 170px !important;
                max-height: 130px !important;
            }
            .nav-actions .btn-primary {
                display: none;
            }
        }

    

        .hero-shell {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
            gap: 18px;
            align-items: center;
            min-height: 100%;
        }

        .hero-art {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 96px 0 28px;
            min-height: 100%;
        }

        .hero-art::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            right: 5%;
            top: 48%;
            transform: translateY(-50%);
            background: radial-gradient(circle, rgba(223,17,26,.32), rgba(223,17,26,0) 68%);
            filter: blur(18px);
            z-index: -1;
            pointer-events: none;
        }

        .hero-art img {
            width: min(100%, 680px);
            max-width: 100%;
            max-height: 680px;
            object-fit: contain;
            object-position: right center;
            filter: drop-shadow(0 28px 46px rgba(0, 0, 0, .42));
            animation: heroFloat 6s ease-in-out infinite;
            transition: opacity .35s ease, transform .35s ease;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        @media (max-width: 991px) {
            .hero-shell {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .hero-content {
                width: 100%;
                padding-bottom: 6px;
            }

            .hero-art {
                justify-content: center;
                padding: 0 0 38px;
            }

            .hero-art::before {
                width: 300px;
                height: 300px;
                right: 50%;
                transform: translate(50%, -50%);
            }

            .hero-art img {
                width: min(100%, 540px);
                max-height: 460px;
                object-position: center;
            }
        }

        @media (max-width: 575px) {
            .hero-art img {
                width: min(100%, 360px);
                max-height: 340px;
            }
        }

  