.reveal {
            opacity: 0;
            transform: translateY(28px);
            transition:
                opacity 1.05s cubic-bezier(0.22, 0.8, 0.22, 1),
                transform 1.05s cubic-bezier(0.22, 0.8, 0.22, 1),
                box-shadow 0.5s ease;
            will-change: opacity, transform;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-word.hero-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            margin-bottom: 1.6rem;
        }

        .hero-brand-name {
            color: #765536;
            font-family: "Bodoni Moda", "Times New Roman", serif;
            font-size: clamp(4.2rem, 10vw, 8.5rem);
            font-weight: 500;
            line-height: 0.9;
            letter-spacing: 0.055em;
            text-shadow: 0 12px 34px rgba(120, 88, 54, 0.14);
        }

        @supports ((-webkit-background-clip: text) or (background-clip: text)) {
            .hero-brand-name {
                color: transparent;
                background: linear-gradient(105deg, #4f4a31 8%, #765536 48%, #a57c52 82%);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .hero-brand-discipline {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            margin-top: 1rem;
            color: #6c584a;
            font-family: "Poppins", sans-serif;
            font-size: clamp(0.68rem, 1.4vw, 0.82rem);
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0.42em;
            text-transform: uppercase;
        }

        .hero-brand-discipline::before,
        .hero-brand-discipline::after {
            width: clamp(2rem, 5vw, 4rem);
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, rgba(120, 88, 54, 0.65));
        }

        .hero-brand-discipline::after {
            background: linear-gradient(90deg, rgba(120, 88, 54, 0.65), transparent);
        }

        @media (max-width: 480px) {
            .hero-brand-name {
                letter-spacing: 0.025em;
            }

            .hero-brand-discipline {
                letter-spacing: 0.28em;
            }
        }

        .navbar-inner {
            position: relative;
            z-index: 3;
        }

        .mobile-menu-lock {
            overflow: hidden;
        }

        @media (max-width: 767px) {
            .mobile-menu-toggle {
                position: relative;
                z-index: 4;
                display: grid;
                width: 2.75rem;
                height: 2.75rem;
                place-items: center;
                border: 1px solid transparent;
                border-radius: 50%;
            }

            .mobile-menu-toggle .material-symbols-outlined {
                transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            }

            .mobile-menu-open .mobile-menu-toggle {
                border-color: rgba(120, 88, 54, 0.22);
                background: rgba(254, 249, 242, 0.72);
            }

            .mobile-menu-open .mobile-menu-toggle .material-symbols-outlined {
                transform: rotate(90deg);
            }

            .mobile-menu {
                position: fixed;
                inset: 0;
                z-index: 49;
                display: flex;
                padding: 7.5rem 1.5rem 2rem;
                overflow-y: auto;
                visibility: hidden;
                opacity: 0;
                pointer-events: none;
                background:
                    radial-gradient(circle at 85% 12%, rgba(233, 191, 150, 0.25), transparent 30%),
                    linear-gradient(145deg, #fef9f2 0%, #f2ede7 100%);
                transform: translateY(-1.25rem);
                transition:
                    opacity 0.4s ease,
                    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
                    visibility 0.4s;
            }

            .mobile-menu::after {
                position: absolute;
                right: -4rem;
                bottom: -3rem;
                width: 18rem;
                height: 18rem;
                border: 1px solid rgba(120, 88, 54, 0.1);
                border-radius: 50%;
                content: "";
                box-shadow: 0 0 0 3rem rgba(120, 88, 54, 0.035), 0 0 0 6rem rgba(120, 88, 54, 0.02);
                pointer-events: none;
            }

            .mobile-menu.is-open {
                visibility: visible;
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
            }

            .mobile-menu-open {
                height: 5rem;
                background: rgba(254, 249, 242, 0.94);
                backdrop-filter: blur(14px);
            }

            .mobile-menu-content {
                position: relative;
                z-index: 1;
                display: flex;
                width: 100%;
                max-width: 32rem;
                min-height: calc(100dvh - 9.5rem);
                margin: 0 auto;
                flex-direction: column;
            }

            .mobile-menu-links {
                display: grid;
                border-top: 1px solid rgba(120, 88, 54, 0.2);
            }

            .mobile-menu-links a {
                display: flex;
                align-items: center;
                min-height: 5.25rem;
                padding: 0.5rem 0;
                border-bottom: 1px solid rgba(120, 88, 54, 0.2);
                color: #625d3e;
                font-family: "Merriweather", serif;
                font-size: clamp(1.25rem, 6vw, 1.7rem);
                font-weight: 300;
                line-height: 1.3;
            }

            .mobile-menu-cta {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.75rem;
                min-height: 3.5rem;
                margin-top: 2rem;
                padding: 0.8rem 1.25rem;
                color: #ffffff;
                background: #785836;
                font-family: "Poppins", sans-serif;
                font-size: 0.72rem;
                font-weight: 600;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                box-shadow: 0 14px 32px rgba(120, 88, 54, 0.18);
            }

            .mobile-menu-cta .material-symbols-outlined {
                font-size: 1.05rem;
            }

            .mobile-menu-content > p {
                margin-top: auto;
                padding-top: 2rem;
                color: #7a776c;
                font-family: "Merriweather", serif;
                font-size: 0.75rem;
                font-style: italic;
                text-align: center;
            }
        }
        
        /* Subtle Underline Hover */
        .nav-link-hover {
            position: relative;
            padding-bottom: 0.35rem;
        }
        .nav-link-hover::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(
                90deg,
                transparent,
                #e9bf96 12%,
                #785836 50%,
                #625d3e 88%,
                transparent
            );
            border-radius: 999px;
            box-shadow: 0 4px 12px rgba(120, 88, 54, 0.18);
            opacity: 0;
            transition:
                width 0.65s cubic-bezier(0.22, 0.8, 0.22, 1),
                opacity 0.45s ease;
        }
        .nav-link-hover:hover::after {
            width: 112%;
            opacity: 1;
        }

        /* Magnetic Button Base */
        .btn-magnetic {
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.4s ease, color 0.4s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            body {
                cursor: none;
            }

            a,
            button,
            input,
            label,
            .btn-magnetic {
                cursor: none;
            }

            .custom-cursor {
                position: fixed;
                top: 0;
                left: 0;
                width: 14px;
                height: 14px;
                border: 1px solid rgba(98, 93, 62, 0.72);
                border-radius: 50%;
                pointer-events: none;
                z-index: 9999;
                opacity: 0;
                transform: translate3d(-50%, -50%, 0) scale(1);
                transition:
                    width 0.35s cubic-bezier(0.22, 0.8, 0.22, 1),
                    height 0.35s cubic-bezier(0.22, 0.8, 0.22, 1),
                    border-color 0.35s ease,
                    background-color 0.35s ease,
                    opacity 0.25s ease,
                    box-shadow 0.35s ease;
                mix-blend-mode: multiply;
            }

            .custom-cursor::after {
                content: '';
                position: absolute;
                width: 4px;
                height: 4px;
                top: 50%;
                left: 50%;
                border-radius: 50%;
                background: #785836;
                transform: translate(-50%, -50%);
                transition:
                    width 0.35s cubic-bezier(0.22, 0.8, 0.22, 1),
                    height 0.35s cubic-bezier(0.22, 0.8, 0.22, 1),
                    background-color 0.35s ease;
            }

            .custom-cursor.visible {
                opacity: 1;
            }

            .custom-cursor.is-hovering {
                width: 34px;
                height: 34px;
                border-color: rgba(120, 88, 54, 0.58);
                background: rgba(233, 191, 150, 0.16);
                box-shadow: 0 8px 24px rgba(120, 88, 54, 0.16);
            }

            .custom-cursor.is-hovering::after {
                width: 6px;
                height: 6px;
                background: #625d3e;
            }

            .custom-cursor.is-cta {
                width: 46px;
                height: 46px;
                border-color: rgba(120, 88, 54, 0.72);
                background: rgba(254, 210, 168, 0.22);
                box-shadow: 0 10px 30px rgba(120, 88, 54, 0.2);
            }
        }

        @media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
            .custom-cursor {
                display: none;
            }
        }

        .approach-card {
            border: 1px solid rgba(203, 198, 185, 0.36);
            border-radius: 2.4rem 0.55rem 2.9rem 1.15rem;
            background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(254, 249, 242, 0));
        }

        .approach-card:nth-child(2) {
            border-radius: 0.7rem 2.15rem 1rem 2.65rem;
        }

        .approach-card:nth-child(3) {
            border-radius: 2.6rem 1rem 2.1rem 0.7rem;
        }

        .approach-card::before {
            content: '';
            position: absolute;
            inset: 1rem;
            border: 1px solid rgba(120, 88, 54, 0.08);
            border-radius: inherit;
            pointer-events: none;
            transition: inset 0.5s cubic-bezier(0.22, 0.8, 0.22, 1), border-color 0.5s ease;
        }

        .approach-card:hover::before {
            inset: 0.75rem;
            border-color: rgba(120, 88, 54, 0.16);
        }

        .approach-logo-mark {
            width: 4rem;
            height: 4rem;
            object-fit: contain;
            opacity: 0.72;
            filter: sepia(0.16) saturate(1.08) contrast(1.08);
            padding: 0.45rem;
            border-radius: 1.35rem 0.35rem 1.15rem 0.55rem;
            background: linear-gradient(145deg, rgba(233, 191, 150, 0.34), rgba(123, 117, 84, 0.18));
            box-shadow:
                0 12px 28px rgba(120, 88, 54, 0.16),
                inset 0 0 0 1px rgba(98, 93, 62, 0.18);
            transition:
                opacity 0.5s ease,
                transform 0.5s cubic-bezier(0.22, 0.8, 0.22, 1),
                box-shadow 0.5s ease;
        }

        .approach-card:hover .approach-logo-mark {
            opacity: 0.9;
            transform: scale(1.06);
            box-shadow:
                0 16px 34px rgba(120, 88, 54, 0.22),
                inset 0 0 0 1px rgba(98, 93, 62, 0.28);
        }

        .domus-needs {
            margin-top: clamp(4rem, 8vw, 7rem);
        }

        .domus-needs-intro {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            max-width: 43rem;
            margin-bottom: 2rem;
            color: #6c584a;
            font-family: "Merriweather", serif;
            font-size: clamp(1.05rem, 2vw, 1.3rem);
            font-style: italic;
            line-height: 1.65;
        }

        .domus-needs-line {
            width: 3rem;
            height: 1px;
            flex: 0 0 auto;
            background: #785836;
            opacity: 0.65;
        }

        .domus-needs-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1px;
            overflow: hidden;
            border: 1px solid rgba(122, 119, 108, 0.2);
            border-radius: 0.5rem;
            background: rgba(122, 119, 108, 0.2);
            box-shadow: 0 18px 50px rgba(98, 93, 62, 0.07);
        }

        .domus-need-card {
            position: relative;
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            min-height: 11.5rem;
            padding: clamp(1.6rem, 4vw, 2.5rem);
            background: rgba(254, 249, 242, 0.88);
            transition: background-color 0.45s ease;
        }

        .domus-need-card::after {
            position: absolute;
            right: 0;
            bottom: 0;
            left: 0;
            height: 2px;
            content: "";
            background: #785836;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .domus-need-card:hover {
            background: #ffffff;
        }

        .domus-need-card:hover::after {
            transform: scaleX(1);
        }

        .domus-need-icon {
            flex: 0 0 auto;
            color: #785836;
            font-size: 1.65rem;
            font-variation-settings: "wght" 300;
        }

        .domus-need-card h3 {
            margin-bottom: 0.65rem;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 400;
            line-height: 1.4;
        }

        .domus-need-card p {
            max-width: 31rem;
            color: #49473d;
            font-family: "Poppins", sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.75;
        }

        @media (max-width: 767px) {
            .domus-needs-grid {
                grid-template-columns: 1fr;
            }

            .domus-need-card {
                min-height: auto;
            }

            .domus-needs-intro {
                align-items: flex-start;
            }

            .domus-needs-line {
                width: 2rem;
                margin-top: 0.8rem;
            }
        }

        .delivery-layout {
            display: grid;
            grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.35fr);
            gap: clamp(3rem, 8vw, 7rem);
            align-items: start;
        }

        .delivery-heading {
            position: sticky;
            top: 7rem;
            padding-top: 0.4rem;
        }

        .delivery-heading h2 {
            max-width: 28rem;
            margin: 1.25rem 0 1.5rem;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(2rem, 4vw, 3.25rem);
            font-weight: 300;
            line-height: 1.22;
            letter-spacing: -0.025em;
        }

        .delivery-heading > p {
            max-width: 25rem;
            color: #49473d;
            font-family: "Poppins", sans-serif;
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .delivery-compass {
            display: grid;
            width: 4.5rem;
            height: 4.5rem;
            margin-top: 2.5rem;
            place-items: center;
            border: 1px solid rgba(120, 88, 54, 0.3);
            border-radius: 50%;
            color: #785836;
        }

        .delivery-compass .material-symbols-outlined {
            font-size: 2rem;
            font-variation-settings: "wght" 200;
        }

        .delivery-journey {
            position: relative;
            border-top: 1px solid rgba(122, 119, 108, 0.28);
        }

        .delivery-journey::before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0.25rem;
            width: 1px;
            content: "";
            background: linear-gradient(to bottom, #785836 0%, rgba(120, 88, 54, 0.08) 88%);
        }

        .delivery-item {
            position: relative;
            display: grid;
            grid-template-columns: 4.5rem minmax(0, 1fr);
            gap: clamp(1.5rem, 4vw, 3rem);
            padding: clamp(2rem, 5vw, 3.2rem) 0;
            border-bottom: 1px solid rgba(122, 119, 108, 0.28);
        }

        .delivery-item::before {
            position: absolute;
            top: 50%;
            left: 0;
            z-index: 1;
            width: 0.55rem;
            height: 0.55rem;
            border: 2px solid #fef9f2;
            border-radius: 50%;
            background: #785836;
            box-shadow: 0 0 0 1px rgba(120, 88, 54, 0.4);
            content: "";
            transform: translateY(-50%);
            transition: transform 0.4s ease, background-color 0.4s ease;
        }

        .delivery-item:hover::before {
            background: #625d3e;
            transform: translateY(-50%) scale(1.45);
        }

        .delivery-number {
            position: relative;
            z-index: 2;
            align-self: center;
            color: #785836;
            font-family: "Merriweather", serif;
            font-size: 0.72rem;
            letter-spacing: 0.12em;
            padding-right: 0.35rem;
            text-align: right;
        }

        .delivery-item h3 {
            margin-bottom: 0.65rem;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(1.15rem, 2.3vw, 1.5rem);
            font-weight: 400;
            line-height: 1.4;
        }

        .delivery-item p {
            max-width: 36rem;
            color: #49473d;
            font-family: "Poppins", sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.75;
        }

        .delivery-manifesto {
            position: relative;
            margin-top: clamp(3rem, 7vw, 5rem);
            padding: clamp(2rem, 5vw, 3.5rem);
            overflow: hidden;
            border-left: 3px solid #785836;
            background: linear-gradient(135deg, rgba(123, 117, 84, 0.14), rgba(254, 249, 242, 0.72));
        }

        .delivery-manifesto > span {
            position: absolute;
            top: -1.8rem;
            right: 1rem;
            color: rgba(120, 88, 54, 0.1);
            font-family: "Merriweather", serif;
            font-size: 10rem;
            line-height: 1;
        }

        .delivery-manifesto p {
            position: relative;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(1.25rem, 3vw, 1.8rem);
            font-style: italic;
            font-weight: 300;
            line-height: 1.6;
        }

        @media (max-width: 900px) {
            .delivery-layout {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }

            .delivery-heading {
                position: static;
            }

            .delivery-heading h2,
            .delivery-heading > p {
                max-width: 42rem;
            }

            .delivery-compass {
                display: none;
            }
        }

        @media (max-width: 520px) {
            .delivery-item {
                grid-template-columns: 2.5rem minmax(0, 1fr);
                gap: 1rem;
            }
        }

        .testimonials-section {
            position: relative;
            padding: clamp(6rem, 11vw, 9rem) 1.5rem;
            overflow: hidden;
            background: #f2ede7;
        }

        .testimonials-atmosphere {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .testimonials-atmosphere img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.12;
            filter: sepia(0.35) saturate(0.55) contrast(0.9);
        }

        .testimonials-atmosphere::after {
            position: absolute;
            inset: 0;
            content: "";
            background:
                linear-gradient(to bottom, #fef9f2 0%, rgba(242, 237, 231, 0.8) 16%, rgba(242, 237, 231, 0.92) 82%, #ece7e1 100%),
                radial-gradient(circle at 15% 25%, rgba(233, 191, 150, 0.2), transparent 35%);
        }

        .testimonials-inner {
            position: relative;
            z-index: 1;
        }

        .testimonials-heading {
            display: grid;
            grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1.4fr);
            gap: 2rem;
            align-items: start;
            margin-bottom: clamp(3.5rem, 8vw, 6rem);
        }

        .testimonials-heading h2 {
            max-width: 49rem;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 300;
            line-height: 1.22;
            letter-spacing: -0.025em;
        }

        .testimonials-voices {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 1.5rem;
            align-items: start;
        }

        .testimonial-voice {
            position: relative;
            min-height: 23rem;
            padding: clamp(2rem, 4vw, 3rem);
            border: 1px solid rgba(122, 119, 108, 0.2);
            background: rgba(254, 249, 242, 0.83);
            box-shadow: 0 22px 60px rgba(98, 93, 62, 0.07);
            backdrop-filter: blur(5px);
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
        }

        .testimonial-voice:hover {
            transform: translateY(-0.45rem);
            box-shadow: 0 28px 70px rgba(98, 93, 62, 0.12);
        }

        .testimonial-voice-one {
            grid-column: 1 / span 5;
        }

        .testimonial-voice-two {
            grid-column: 6 / span 4;
            margin-top: 4.5rem;
        }

        .testimonial-voice-three {
            grid-column: 10 / span 3;
            margin-top: 1.5rem;
        }

        .testimonial-quote {
            display: block;
            height: 3.7rem;
            color: rgba(120, 88, 54, 0.3);
            font-family: "Merriweather", serif;
            font-size: 5rem;
            font-style: italic;
            line-height: 1;
        }

        .testimonial-voice blockquote {
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(1.05rem, 1.8vw, 1.32rem);
            font-style: italic;
            font-weight: 300;
            line-height: 1.75;
        }

        .testimonial-voice figcaption {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 2rem;
            color: #785836;
            font-family: "Poppins", sans-serif;
            font-size: 0.72rem;
            font-weight: 500;
            line-height: 1.5;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .testimonial-voice figcaption span {
            width: 1.8rem;
            height: 1px;
            flex: 0 0 auto;
            background: #785836;
        }

        .testimonials-cta {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.65fr);
            gap: clamp(2rem, 6vw, 5rem);
            align-items: end;
            margin-top: clamp(5rem, 10vw, 8rem);
            padding: clamp(2.5rem, 6vw, 5rem);
            overflow: hidden;
            background: #625d3e;
            box-shadow: 0 28px 70px rgba(50, 48, 44, 0.18);
        }

        .testimonials-cta-mark {
            position: absolute;
            top: 50%;
            right: 4%;
            width: min(32rem, 50%);
            opacity: 0.055;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .testimonials-cta-mark img {
            width: 100%;
            filter: grayscale(1) brightness(3);
        }

        .testimonials-cta-copy,
        .testimonials-cta-action {
            position: relative;
            z-index: 1;
        }

        .testimonials-cta-copy > span {
            display: block;
            margin-bottom: 1.25rem;
            color: #e9bf96;
            font-family: "Poppins", sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .testimonials-cta-copy h3 {
            max-width: 42rem;
            color: #fef9f2;
            font-family: "Merriweather", serif;
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 300;
            line-height: 1.3;
        }

        .testimonials-cta-copy p {
            max-width: 38rem;
            margin-top: 1.25rem;
            color: rgba(254, 249, 242, 0.74);
            font-family: "Poppins", sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.75;
        }

        .testimonials-cta-action a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            padding: 1rem 1.25rem;
            border: 1px solid rgba(254, 249, 242, 0.65);
            color: #fef9f2;
            font-family: "Poppins", sans-serif;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-align: center;
            text-transform: uppercase;
            transition: color 0.4s ease, background-color 0.4s ease;
        }

        .testimonials-cta-action a:hover {
            color: #625d3e;
            background: #fef9f2;
        }

        .testimonials-cta-action a .material-symbols-outlined {
            font-size: 1.1rem;
        }

        .testimonials-cta-action > p {
            margin-top: 1rem;
            color: rgba(254, 249, 242, 0.58);
            font-family: "Merriweather", serif;
            font-size: 0.78rem;
            font-style: italic;
            line-height: 1.6;
            text-align: center;
        }

        @media (max-width: 900px) {
            .testimonials-heading {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .testimonials-voices {
                grid-template-columns: 1fr 1fr;
            }

            .testimonial-voice-one,
            .testimonial-voice-two,
            .testimonial-voice-three {
                grid-column: auto;
                margin-top: 0;
            }

            .testimonial-voice-three {
                grid-column: 1 / -1;
                min-height: auto;
            }

            .testimonials-cta {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .testimonials-cta-action {
                max-width: 26rem;
            }
        }

        @media (max-width: 640px) {
            .testimonials-voices {
                grid-template-columns: 1fr;
            }

            .testimonial-voice,
            .testimonial-voice-three {
                grid-column: auto;
                min-height: auto;
            }

            .testimonials-cta-action,
            .testimonials-cta-action a {
                width: 100%;
            }
        }

        .closing-offer {
            position: relative;
            padding: clamp(6rem, 11vw, 9rem) 1.5rem 3rem;
            overflow: hidden;
            color: #fef9f2;
            background: #32302c;
        }

        .closing-offer-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .closing-offer-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            filter: grayscale(0.5) sepia(0.35) contrast(1.1);
        }

        .closing-offer-bg::after {
            position: absolute;
            inset: 0;
            content: "";
            background:
                linear-gradient(115deg, rgba(50, 48, 44, 0.98) 10%, rgba(50, 48, 44, 0.9) 56%, rgba(98, 93, 62, 0.82) 100%),
                radial-gradient(circle at 85% 15%, rgba(233, 191, 150, 0.18), transparent 35%);
        }

        .closing-offer-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.78fr);
            gap: clamp(3rem, 8vw, 7rem);
            align-items: center;
        }

        .closing-offer-eyebrow {
            display: block;
            margin-bottom: 1.25rem;
            color: #e9bf96;
            font-family: "Poppins", sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .closing-offer-copy > h2 {
            max-width: 40rem;
            color: #fef9f2;
            font-family: "Merriweather", serif;
            font-size: clamp(2.3rem, 5vw, 4rem);
            font-weight: 300;
            line-height: 1.16;
            letter-spacing: -0.03em;
        }

        .closing-offer-lead {
            max-width: 38rem;
            margin-top: 1.5rem;
            color: rgba(254, 249, 242, 0.72);
            font-family: "Poppins", sans-serif;
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .closing-price {
            display: grid;
            grid-template-columns: auto 1fr;
            width: fit-content;
            margin: clamp(2rem, 5vw, 3rem) 0 2rem;
            padding: 1.4rem 1.7rem;
            border-top: 1px solid rgba(233, 191, 150, 0.4);
            border-bottom: 1px solid rgba(233, 191, 150, 0.4);
        }

        .closing-price > span,
        .closing-price > p {
            grid-column: 1 / -1;
            color: rgba(254, 249, 242, 0.62);
            font-family: "Poppins", sans-serif;
            font-size: 0.68rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .closing-price strong {
            margin: 0.35rem 0;
            color: #f9ddcb;
            font-family: "Merriweather", serif;
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 300;
            line-height: 1.1;
        }

        .closing-price strong small {
            font-size: 0.4em;
            font-weight: 400;
            vertical-align: 0.75em;
        }

        .closing-social-rate {
            display: flex;
            gap: 1rem;
            max-width: 39rem;
            padding: 1.4rem;
            border: 1px solid rgba(233, 191, 150, 0.24);
            background: rgba(233, 191, 150, 0.08);
        }

        .closing-social-rate > .material-symbols-outlined {
            flex: 0 0 auto;
            color: #e9bf96;
            font-size: 1.35rem;
            font-variation-settings: "FILL" 1, "wght" 300;
        }

        .closing-social-rate h3 {
            margin-bottom: 0.4rem;
            color: #f9ddcb;
            font-family: "Merriweather", serif;
            font-size: 1rem;
            font-weight: 400;
        }

        .closing-social-rate p {
            color: rgba(254, 249, 242, 0.68);
            font-family: "Poppins", sans-serif;
            font-size: 0.78rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .closing-benefits {
            display: grid;
            gap: 0.7rem;
            margin-top: 2rem;
        }

        .closing-benefits li {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            color: rgba(254, 249, 242, 0.75);
            font-family: "Poppins", sans-serif;
            font-size: 0.82rem;
            font-weight: 300;
        }

        .closing-benefits .material-symbols-outlined {
            display: grid;
            width: 1.3rem;
            height: 1.3rem;
            place-items: center;
            border: 1px solid rgba(233, 191, 150, 0.45);
            border-radius: 50%;
            color: #e9bf96;
            font-size: 0.75rem;
        }

        .closing-form-wrap {
            padding: clamp(2rem, 5vw, 3.5rem);
            color: #1d1b18;
            background: rgba(254, 249, 242, 0.97);
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
        }

        .closing-form-header {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .closing-form-header > .material-symbols-outlined {
            display: grid;
            width: 2.8rem;
            height: 2.8rem;
            flex: 0 0 auto;
            place-items: center;
            border-radius: 50%;
            color: #785836;
            background: #fed2a8;
            font-size: 1.35rem;
        }

        .closing-form-header span:not(.material-symbols-outlined) {
            color: #785836;
            font-family: "Poppins", sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .closing-form-header h3 {
            margin-top: 0.25rem;
            color: #625d3e;
            font-family: "Merriweather", serif;
            font-size: clamp(1.35rem, 2.5vw, 1.8rem);
            font-weight: 400;
            line-height: 1.35;
        }

        .closing-form-wrap > p {
            margin: 1.25rem 0 2rem;
            color: #49473d;
            font-family: "Poppins", sans-serif;
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .closing-form {
            display: grid;
            gap: 1.35rem;
        }

        .closing-field label {
            display: block;
            margin-bottom: 0.55rem;
            color: #49473d;
            font-family: "Poppins", sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .closing-field input,
        .closing-field select,
        .closing-field textarea {
            width: 100%;
            padding: 0.75rem 0;
            border: 0;
            border-bottom: 1px solid #cbc6b9;
            border-radius: 0;
            color: #1d1b18;
            background: transparent;
            font-family: "Poppins", sans-serif;
            font-size: 0.92rem;
            box-shadow: none;
            transition: border-color 0.35s ease;
        }

        .closing-field textarea {
            min-height: 7.5rem;
            line-height: 1.65;
            resize: vertical;
        }

        .closing-field input:focus,
        .closing-field select:focus,
        .closing-field textarea:focus {
            border-color: #785836;
            outline: none;
            box-shadow: none;
            --tw-ring-color: transparent;
        }

        .closing-field input::placeholder,
        .closing-field textarea::placeholder {
            color: #7a776c;
            opacity: 0.65;
        }

        .closing-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            margin-top: 0.5rem;
            padding: 1rem 1.25rem;
            border: 0;
            color: #ffffff;
            background: #785836;
            font-family: "Poppins", sans-serif;
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            box-shadow: 0 14px 34px rgba(120, 88, 54, 0.2);
            transition: background-color 0.4s ease, box-shadow 0.4s ease;
        }

        .closing-submit:hover {
            background: #625d3e;
            box-shadow: 0 18px 40px rgba(98, 93, 62, 0.28);
        }

        .closing-submit .material-symbols-outlined {
            font-size: 1.1rem;
        }

        .closing-privacy {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            color: #7a776c;
            font-family: "Poppins", sans-serif;
            font-size: 0.66rem;
            line-height: 1.5;
            text-align: center;
        }

        .closing-privacy .material-symbols-outlined {
            font-size: 0.85rem;
        }

        .closing-signature {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            max-width: 75rem;
            margin: clamp(4rem, 8vw, 6rem) auto 0;
            color: rgba(254, 249, 242, 0.55);
            font-family: "Merriweather", serif;
            font-size: 0.78rem;
            font-style: italic;
            text-align: center;
        }

        .closing-signature span {
            width: 2rem;
            height: 1px;
            background: rgba(233, 191, 150, 0.45);
        }

        @media (max-width: 900px) {
            .closing-offer-inner {
                grid-template-columns: 1fr;
            }

            .closing-offer-copy > h2,
            .closing-offer-lead {
                max-width: 45rem;
            }

            .closing-form-wrap {
                max-width: 40rem;
            }
        }

        @media (max-width: 520px) {
            .closing-price {
                width: 100%;
            }

            .closing-social-rate {
                align-items: flex-start;
            }

            .closing-signature {
                flex-direction: column;
                gap: 0.7rem;
            }
        }

        .home-section-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
            background: #f2ede7;
        }

        .home-section-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0.78;
            filter: saturate(0.9) sepia(0.06) contrast(0.96);
            transform: none;
        }

        .home-section-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(254, 249, 242, 0.58), rgba(254, 249, 242, 0.34), rgba(254, 249, 242, 0.56)),
                linear-gradient(180deg, rgba(254, 249, 242, 0.18), rgba(242, 237, 231, 0.44));
        }

        .section-blend {
            position: absolute;
            left: 0;
            right: 0;
            height: 11rem;
            z-index: 1;
            pointer-events: none;
        }

        .section-blend-top {
            top: 0;
            background: linear-gradient(180deg, rgba(254, 249, 242, 0.96) 0%, rgba(254, 249, 242, 0.72) 36%, rgba(254, 249, 242, 0.28) 70%, rgba(254, 249, 242, 0) 100%);
        }

        .section-blend-bottom {
            bottom: 0;
            background: linear-gradient(0deg, rgba(254, 249, 242, 0.94) 0%, rgba(254, 249, 242, 0.68) 36%, rgba(254, 249, 242, 0.26) 70%, rgba(254, 249, 242, 0) 100%);
        }

        .section-blend-surface-bottom {
            bottom: 0;
            background: linear-gradient(0deg, rgba(242, 237, 231, 0.94) 0%, rgba(242, 237, 231, 0.68) 36%, rgba(242, 237, 231, 0.26) 70%, rgba(242, 237, 231, 0) 100%);
        }

        .section-blend-surface-top {
            top: 0;
            background: linear-gradient(180deg, rgba(242, 237, 231, 0.94) 0%, rgba(242, 237, 231, 0.68) 36%, rgba(242, 237, 231, 0.26) 70%, rgba(242, 237, 231, 0) 100%);
        }

        .home-section-bg-soft img {
            opacity: 0.76;
            object-position: center 58%;
        }

        .home-section-bg-warm img {
            opacity: 0.78;
            object-position: center 45%;
        }

        .home-section-bg-full img {
            width: 100%;
            min-width: 100%;
            height: 100%;
        }

        .home-section-bg-deep::after {
            background:
                linear-gradient(90deg, rgba(236, 231, 225, 0.56), rgba(254, 249, 242, 0.34), rgba(236, 231, 225, 0.54)),
                linear-gradient(180deg, rgba(254, 249, 242, 0.16), rgba(230, 226, 220, 0.44));
        }

        .site-footer {
            position: relative;
            padding: clamp(4.5rem, 8vw, 7rem) 1.5rem 1.75rem;
            overflow: hidden;
            color: #f5f0ea;
            background:
                radial-gradient(circle at 8% 0%, rgba(155, 119, 83, 0.16), transparent 30%),
                #26251f;
            border-top: 1px solid rgba(233, 191, 150, 0.28);
        }

        .site-footer::before {
            position: absolute;
            top: 0;
            left: 50%;
            width: min(75rem, calc(100% - 3rem));
            height: 1px;
            content: "";
            background: linear-gradient(90deg, transparent, #e9bf96, transparent);
            transform: translateX(-50%);
        }

        .site-footer-inner {
            position: relative;
            z-index: 1;
        }

        .site-footer-main {
            display: grid;
            grid-template-columns: minmax(16rem, 1.15fr) minmax(11rem, 0.65fr) minmax(18rem, 1fr);
            gap: clamp(2.5rem, 6vw, 5.5rem);
            align-items: start;
        }

        .footer-brand-lockup {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            color: #f5f0ea;
        }

        .footer-brand-lockup img {
            width: 4.2rem;
            height: 4.2rem;
            object-fit: contain;
            filter: sepia(0.2) brightness(1.35);
        }

        .footer-brand-lockup span {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-lockup strong {
            font-family: "Bodoni Moda", serif;
            font-size: 2rem;
            font-weight: 500;
            line-height: 1;
            letter-spacing: 0.07em;
        }

        .footer-brand-lockup small {
            margin-top: 0.5rem;
            color: #e9bf96;
            font-family: "Poppins", sans-serif;
            font-size: 0.58rem;
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
        }

        .footer-brand > p {
            max-width: 23rem;
            margin-top: 1.5rem;
            color: rgba(245, 240, 234, 0.64);
            font-family: "Poppins", sans-serif;
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.75;
        }

        .footer-primary-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            margin-top: 1.5rem;
            color: #f9ddcb;
            font-family: "Poppins", sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-primary-cta .material-symbols-outlined {
            font-size: 1rem;
            transition: transform 0.35s ease;
        }

        .footer-primary-cta:hover .material-symbols-outlined {
            transform: translateX(0.3rem);
        }

        .footer-column-title {
            display: block;
            margin-bottom: 1.25rem;
            color: #e9bf96;
            font-family: "Poppins", sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .footer-navigation {
            display: grid;
            align-content: start;
        }

        .footer-navigation a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            min-height: 2.75rem;
            border-bottom: 1px solid rgba(245, 240, 234, 0.1);
            color: rgba(245, 240, 234, 0.7);
            font-family: "Poppins", sans-serif;
            font-size: 0.78rem;
            font-weight: 300;
            transition: color 0.35s ease, border-color 0.35s ease;
        }

        .footer-navigation a:hover {
            color: #f9ddcb;
            border-color: rgba(233, 191, 150, 0.45);
        }

        .footer-navigation .material-symbols-outlined {
            color: #9b7753;
            font-size: 0.95rem;
        }

        .footer-contact {
            display: grid;
            align-content: start;
            gap: 0.75rem;
        }

        .footer-contact .footer-column-title {
            margin-bottom: 0.5rem;
        }

        .footer-contact-link {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            min-width: 0;
            padding: 0.7rem;
            border: 1px solid transparent;
            color: #f5f0ea;
            transition: border-color 0.35s ease, background-color 0.35s ease;
        }

        .footer-contact-link:hover {
            border-color: rgba(233, 191, 150, 0.22);
            background: rgba(233, 191, 150, 0.06);
        }

        .footer-link-icon {
            display: grid;
            width: 2.65rem;
            height: 2.65rem;
            flex: 0 0 auto;
            place-items: center;
            border: 1px solid rgba(233, 191, 150, 0.3);
            border-radius: 50%;
            color: #e9bf96;
            font-size: 1.15rem;
        }

        .footer-instagram-icon svg {
            width: 1.15rem;
            height: 1.15rem;
        }

        .footer-contact-link > span:last-child {
            display: flex;
            min-width: 0;
            flex-direction: column;
        }

        .footer-contact-link small {
            margin-bottom: 0.2rem;
            color: rgba(245, 240, 234, 0.45);
            font-family: "Poppins", sans-serif;
            font-size: 0.58rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .footer-contact-link strong {
            overflow-wrap: anywhere;
            font-family: "Poppins", sans-serif;
            font-size: 0.76rem;
            font-weight: 400;
        }

        .footer-technical {
            display: grid;
            grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1.45fr);
            gap: clamp(2rem, 5vw, 4rem);
            align-items: center;
            margin-top: clamp(3rem, 6vw, 5rem);
            padding: clamp(1.5rem, 4vw, 2.4rem);
            border-top: 1px solid rgba(233, 191, 150, 0.2);
            border-bottom: 1px solid rgba(233, 191, 150, 0.2);
            background: rgba(245, 240, 234, 0.035);
        }

        .footer-technical-heading {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-technical-heading > .material-symbols-outlined {
            color: #e9bf96;
            font-size: 1.5rem;
            font-variation-settings: "wght" 300;
        }

        .footer-technical-heading > span:last-child {
            display: flex;
            flex-direction: column;
        }

        .footer-technical-heading small {
            color: rgba(245, 240, 234, 0.48);
            font-family: "Poppins", sans-serif;
            font-size: 0.58rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .footer-technical-heading strong {
            margin-top: 0.3rem;
            color: #f9ddcb;
            font-family: "Merriweather", serif;
            font-size: 1.15rem;
            font-weight: 400;
        }

        .footer-professionals {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 2rem;
        }

        .footer-professionals .footer-column-title {
            grid-column: 1 / -1;
            margin-bottom: 0.7rem;
        }

        .footer-professionals p {
            color: rgba(245, 240, 234, 0.8);
            font-family: "Poppins", sans-serif;
            font-size: 0.74rem;
            font-weight: 400;
            line-height: 1.6;
        }

        .footer-professionals p span {
            display: block;
            color: rgba(245, 240, 234, 0.46);
            font-size: 0.65rem;
            font-weight: 300;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            padding-top: 1.75rem;
            color: rgba(245, 240, 234, 0.38);
            font-family: "Poppins", sans-serif;
            font-size: 0.62rem;
            line-height: 1.6;
        }

        .footer-bottom p:last-child {
            font-family: "Merriweather", serif;
            font-style: italic;
        }

        @media (max-width: 900px) {
            .site-footer-main {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 640px) {
            .site-footer {
                padding-right: 1.25rem;
                padding-left: 1.25rem;
            }

            .site-footer-main,
            .footer-technical,
            .footer-professionals {
                grid-template-columns: 1fr;
            }

            .footer-brand {
                grid-column: auto;
            }

            .footer-navigation,
            .footer-contact {
                padding-top: 0.75rem;
            }

            .footer-navigation a,
            .footer-contact-link {
                min-height: 3.25rem;
            }

            .footer-professionals .footer-column-title {
                grid-column: auto;
            }

            .footer-professionals p + p {
                margin-top: 0.75rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.65rem;
                text-align: center;
            }
        }

        /* Light institutional footer */
        .site-footer {
            padding-top: clamp(3rem, 5vw, 4rem);
            padding-bottom: 1.25rem;
            color: #1d1b18;
            background:
                radial-gradient(circle at 85% 0%, rgba(233, 191, 150, 0.18), transparent 28%),
                #f2ede7;
            border-top-color: rgba(120, 88, 54, 0.22);
        }

        .site-footer::before {
            background: linear-gradient(90deg, transparent, rgba(120, 88, 54, 0.55), transparent);
        }

        .site-footer-main {
            grid-template-columns: 1fr;
        }

        .footer-column-title {
            color: #785836;
        }

        .footer-contact {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
        }

        .footer-contact .footer-column-title {
            grid-column: 1 / -1;
        }

        .footer-contact-link {
            padding: 0.8rem;
            border-color: rgba(122, 119, 108, 0.18);
            color: #1d1b18;
            background: rgba(255, 255, 255, 0.38);
        }

        .footer-contact-link:hover {
            border-color: rgba(120, 88, 54, 0.42);
            background: rgba(255, 255, 255, 0.72);
        }

        .footer-link-icon {
            border-color: rgba(120, 88, 54, 0.3);
            color: #785836;
            background: rgba(233, 191, 150, 0.14);
        }

        .footer-contact-link small {
            color: #7a776c;
        }

        .footer-contact-link strong {
            color: #49473d;
        }

        .footer-technical {
            gap: clamp(1.25rem, 3vw, 2.5rem);
            margin-top: clamp(2rem, 3.5vw, 2.75rem);
            padding: clamp(1.2rem, 2.5vw, 1.65rem);
            border-color: rgba(120, 88, 54, 0.2);
            background: rgba(255, 255, 255, 0.3);
        }

        .footer-technical-heading > .material-symbols-outlined {
            color: #785836;
        }

        .footer-technical-heading small {
            color: #7a776c;
        }

        .footer-technical-heading strong {
            color: #625d3e;
        }

        .footer-professionals p {
            color: #49473d;
        }

        .footer-professionals p span {
            color: #7a776c;
        }

        .footer-bottom {
            padding-top: 1.15rem;
            color: #7a776c;
        }

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

            .footer-contact .footer-column-title {
                grid-column: auto;
            }
        }

        .whatsapp-float {
            position: fixed;
            right: 1.5rem;
            bottom: 1.5rem;
            z-index: 60;
            width: 3.6rem;
            height: 3.6rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fef9f2;
            background:
                linear-gradient(145deg, #785836, #625d3e);
            border: 1px solid rgba(254, 249, 242, 0.28);
            border-radius: 1.25rem 0.35rem 1.25rem 0.55rem;
            box-shadow:
                0 16px 34px rgba(98, 93, 62, 0.22),
                inset 0 0 0 1px rgba(255, 255, 255, 0.08);
            transition:
                transform 0.45s cubic-bezier(0.22, 0.8, 0.22, 1),
                background 0.45s ease,
                box-shadow 0.45s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-4px) scale(1.03);
            background:
                linear-gradient(145deg, #9b7753, #785836);
            box-shadow:
                0 20px 42px rgba(120, 88, 54, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.12);
        }

        .whatsapp-float svg {
            width: 1.55rem;
            height: 1.55rem;
        }

        @media (max-width: 767px) {
            .home-section-bg img {
                width: 100%;
                min-width: 100%;
                height: 100%;
                opacity: 0.5;
            }

            .whatsapp-float {
                right: 1rem;
                bottom: 1rem;
                width: 3.25rem;
                height: 3.25rem;
            }

            .section-blend {
                height: 7rem;
            }

            .home-section-bg::after {
                background:
                    linear-gradient(180deg, rgba(254, 249, 242, 0.74), rgba(254, 249, 242, 0.58)),
                    linear-gradient(90deg, rgba(254, 249, 242, 0.66), rgba(242, 237, 231, 0.56));
            }
        }

        /* Staggered Text Reveal */
        .stagger-word {
            display: inline-block;
            opacity: 0;
            transform: translateY(18px);
            transition:
                opacity 0.95s cubic-bezier(0.22, 0.8, 0.22, 1),
                transform 0.95s cubic-bezier(0.22, 0.8, 0.22, 1);
            will-change: opacity, transform;
        }
        .reveal.active .stagger-word {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal.active .stagger-word:nth-child(1) { transition-delay: 0.08s; }
        .reveal.active .stagger-word:nth-child(2) { transition-delay: 0.16s; }
        .reveal.active .stagger-word:nth-child(4) { transition-delay: 0.24s; }
        .reveal.active .stagger-word:nth-child(5) { transition-delay: 0.32s; }
        .reveal.active .stagger-word:nth-child(6) { transition-delay: 0.4s; }
        .reveal.active .stagger-word:nth-child(7) { transition-delay: 0.48s; }

        .reveal:not(.active) .stagger-word {
            transition-delay: 0s;
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .stagger-word {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        .section-watermark {
            position: absolute;
            inset: 0;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 0;
        }

        .section-watermark img {
            max-width: 42%;
            opacity: 0.06;
            filter: grayscale(1) brightness(1.05);
            object-fit: contain;
        }

        @media (max-width: 767px) {
            .section-watermark img {
                max-width: 60%;
                opacity: 0.04;
            }
        }
