@font-face {
            font-family: "Manrope";
            src: url("fonts/manrope-latin-variable.woff2") format("woff2");
            font-style: normal;
            font-weight: 300 800;
            font-display: swap;
        }

:root {
            --primary-blue: #1e3a8a;
            --primary-blue-dark: #162d6b;
            --accent-red: #dc2626;
            --accent-red-dark: #b91c1c;
            --light-blue: #3b82f6;
            --navy-900: #0c1a3a;
            --navy-800: #112044;
            --gray-50: #f8f9fb;
            --gray-100: #f1f3f7;
            --gray-200: #e2e5eb;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --white: #ffffff;
            --section-padding: 7rem 2rem;
            --max-width: 1200px;
            --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

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

        html { scroll-behavior: smooth; scroll-padding-top: 80px; }

        body {
            font-family: var(--font-sans);
            color: var(--gray-800);
            line-height: 1.7;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* ===================== NAVIGATION ===================== */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--navy-900);
            z-index: 1000;
            transition: box-shadow 0.3s;
        }
        .nav-wrapper.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }
        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-logo {
            display: block;
        }
        .nav-logo img {
            height: 38px;
            width: auto;
            display: block;
        }
        .nav-logo-mobile { display: none !important; }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 120px;
        }
        .nav-cobrand {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            text-decoration: none;
            color: rgba(255,255,255,0.85);
        }
        .nav-cobrand img {
            height: 10px;
            width: auto;
            display: block;
            margin-bottom: 3px;
        }
        .nav-cobrand-text {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            font-family: var(--font-sans);
            line-height: 1.1;
        }
        .nav-cobrand-text span {
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }
        .nav-logo-secondary {
            font-size: 10px;
            color: rgba(255,255,255,0.6);
            margin-top: 2px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 1.4rem;
            list-style: none;
            align-items: center;
        }
        .nav-left {
            gap: 1.5rem;
        }
        .nav-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            transition: color 0.3s;
            letter-spacing: 0.01em;
            white-space: nowrap;
        }
        .nav-links a:hover,
        .nav-links a.active { color: var(--white); }
        .nav-links > li > a.active::after {
            content: '';
            display: block;
            height: 2px;
            margin-top: 0.28rem;
            background: var(--accent-red);
        }

        .nav-dropdown-toggle {
            appearance: none;
            border: 0;
            background: transparent;
            color: rgba(255,255,255,0.8);
            font: inherit;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            white-space: nowrap;
            cursor: pointer;
            padding: 0;
        }
        .nav-dropdown-toggle:hover,
        .nav-dropdown-toggle[aria-expanded="true"] { color: var(--white); }
        .nav-dropdown-toggle span { display: inline-block; transition: transform 0.2s ease; }
        .nav-dropdown-toggle[aria-expanded="true"] span { transform: rotate(180deg); }

        .nav-links .has-dropdown {
            position: relative;
        }
        .nav-links .has-dropdown .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background: var(--navy-900);
            min-width: 240px;
            padding: 0.75rem 0;
            border-radius: 0 0 4px 4px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            z-index: 1000;
        }
        .nav-links .has-dropdown::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 10px;
        }
        .nav-links .has-dropdown:hover .dropdown,
        .nav-links .has-dropdown:focus-within .dropdown,
        .nav-links .has-dropdown.dropdown-open .dropdown { display: block; }
        .dropdown a {
            display: block;
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
            white-space: nowrap;
        }
        .dropdown a:hover { background: rgba(255,255,255,0.05); }
        .dropdown-separator {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin: 0.5rem 1.5rem;
        }
        .dropdown-group-label {
            padding: 0.35rem 1.5rem 0.2rem;
            font-size: 0.68rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.45);
            white-space: nowrap;
        }

        .nav-cta {
            padding: 0.55rem 1.25rem;
            background: var(--accent-red);
            color: white !important;
            border: none;
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.01em;
        }
        .nav-cta:hover {
            background: var(--accent-red-dark);
            transform: translateY(-1px);
        }

        .lang-toggle {
            font-size: 0.8rem;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            letter-spacing: 0.05em;
        }
        .lang-toggle a {
            color: rgba(255,255,255,0.5) !important;
            text-decoration: none;
            transition: color 0.3s;
        }
        .lang-toggle a:hover,
        .lang-toggle a.lang-active {
            color: white !important;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
        }
        .mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
        .mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .skip-link {
            position: fixed;
            top: 0.5rem;
            left: 0.5rem;
            z-index: 2000;
            transform: translateY(-150%);
            padding: 0.7rem 1rem;
            background: white;
            color: var(--navy-900);
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 18px rgba(0,0,0,0.2);
        }
        .skip-link:focus { transform: translateY(0); }
        :focus-visible {
            outline: 3px solid var(--light-blue);
            outline-offset: 3px;
        }

        /* ===================== HERO ===================== */
        .hero {
            margin-top: 72px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 72px);
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 2rem 4rem 0;
            max-width: calc(var(--max-width) / 2);
            margin-left: auto;
            padding-left: 2rem;
        }
        .hero-label {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-red);
            margin-bottom: 1.25rem;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }
        .hero .tagline {
            font-size: 1.15rem;
            color: var(--gray-600);
            margin-bottom: 1rem;
            line-height: 1.7;
            max-width: 520px;
        }
        .hero .sub-tagline {
            font-size: 0.95rem;
            color: var(--gray-500);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 480px;
        }
        .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

        .hero-image {
            background-image: url('images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 15%);
        }

        /* ===================== BUTTONS ===================== */
        .btn-primary {
            padding: 0.9rem 2rem;
            background: var(--primary-blue);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-block;
            letter-spacing: 0.02em;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background: var(--accent-red);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
        }
        .btn-secondary {
            padding: 0.9rem 2rem;
            background: transparent;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            border: 2px solid var(--primary-blue);
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
        }
        .btn-white {
            padding: 0.9rem 2rem;
            background: white;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-white:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        /* ===================== SECTION UTILITIES ===================== */
        .section { padding: var(--section-padding); }
        .section-inner { max-width: var(--max-width); margin: 0 auto; }
        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent-red);
            margin-bottom: 0.75rem;
        }
        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 680px;
            line-height: 1.7;
        }
        .bg-light { background: var(--gray-50); }
        .bg-white { background: white; }
        .bg-dark { background: var(--navy-900); color: white; }

        /* ===================== SERVICES OVERVIEW ===================== */
        .services-intro {
            text-align: center;
            margin-bottom: 4rem;
        }
        .services-intro .section-subtitle { margin: 0 auto; }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 1.5rem;
        }
        .service-card {
            background: white;
            padding: 2.25rem;
            border-left: 4px solid var(--primary-blue);
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
            position: relative;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.08);
            border-left-color: var(--accent-red);
        }
        .service-card .card-number {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }
        .service-card h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .service-card p {
            color: var(--gray-600);
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
        }
        .service-link {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
            transition: color 0.3s;
        }
        .service-link:hover { color: var(--accent-red); }

        /* Service card hierarchy */
        .services-grid--hierarchy {
            grid-template-columns: repeat(2, 1fr);
        }
        .services-supporting-label {
            grid-column: 1 / -1;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-top: 1.5rem;
            margin-bottom: -0.5rem;
        }
        .service-card--supporting {
            border-left-width: 3px;
            border-left-color: var(--gray-300);
            padding: 1.75rem;
        }
        .service-card--supporting h3 {
            font-size: 1.15rem;
        }
        .service-card--supporting:hover {
            border-left-color: var(--primary-blue);
        }

        /* ===================== STRATEGIC CULTURE SHIFT (FEATURED) ===================== */
        .featured-service {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .featured-content { }
        .featured-content h2 {
            font-size: clamp(1.8rem, 3vw, 2.4rem);
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
        .featured-content p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        .featured-content .highlight {
            color: var(--gray-900);
            font-weight: 600;
        }
        .featured-elements {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin: 2rem 0;
        }
        .element-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        .element-num {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: var(--primary-blue);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.85rem;
            margin-top: 2px;
        }
        .element-text h4 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }
        .element-text p {
            font-size: 0.88rem;
            color: var(--gray-600);
            margin-bottom: 0;
        }
        .featured-image {
            height: 520px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        /* ===================== ABOUT / TEAM ===================== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .about-image {
            height: 480px;
            background-size: cover;
            background-position: center top;
        }
        .about-text p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        /* ===================== CORNERSTONE INTERNATIONAL ===================== */
        .international-section {
            text-align: center;
        }
        .international-section .section-subtitle {
            margin: 0 auto 3rem;
            color: rgba(255,255,255,0.85);
        }
        .international-section .section-title { color: white; }
        .international-section .section-label { color: rgba(255,255,255,0.5); }
        .rhodes-photo {
            max-width: 960px;
            margin: 0 auto;
            overflow: hidden;
        }
        .rhodes-photo img {
            width: 100%;
            display: block;
            opacity: 0.9;
        }
        .global-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }
        .stat-item {
            text-align: center;
        }
        .stat-item .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.02em;
        }
        .stat-item .stat-desc {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
            margin-top: 0.25rem;
            font-weight: 500;
        }

        /* ===================== CTA BANNER ===================== */
        .cta-banner {
            background: var(--primary-blue);
            padding: 4rem 2rem;
            text-align: center;
        }
        .cta-banner h2 {
            color: white;
            font-size: clamp(1.6rem, 2.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }
        .cta-banner p {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: var(--navy-900);
            color: white;
            padding: 4rem 2rem 2rem;
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-grid > * { min-width: 0; }
        .footer-brand p {
            color: rgba(255,255,255,0.55);
            font-size: 0.88rem;
            line-height: 1.7;
            margin-top: 1rem;
        }
        .footer-brand img { height: 48px; width: auto; max-width: 100%; object-fit: contain; object-position: left center; margin-bottom: 0.5rem; }
        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1.25rem;
            color: rgba(255,255,255,0.4);
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            overflow-wrap: anywhere;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.35);
            font-size: 0.8rem;
        }
        .footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
        .footer-bottom a:hover { color: rgba(255,255,255,0.7); }

        /* ===================== SERVICE DETAIL PAGES (shown inline) ===================== */
        .detail-section {
            scroll-margin-top: 0;
            border-top: 1px solid rgba(12, 26, 58, 0.08);
        }
        .detail-hero {
            margin-top: 0;
            background: var(--navy-900);
            color: white;
            padding: 5rem 2rem;
        }
        .detail-hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .detail-hero h1,
        .detail-hero h2 {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 1rem;
            line-height: 1.1;
            overflow-wrap: anywhere;
            hyphens: auto;
        }
        .detail-hero .detail-sub {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            max-width: 600px;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .detail-body { padding: 5rem 2rem; }
        .detail-inner {
            max-width: 780px;
            margin: 0 auto;
        }
        .detail-inner h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gray-900);
            margin: 2.5rem 0 1rem;
            letter-spacing: -0.01em;
            overflow-wrap: anywhere;
            hyphens: auto;
        }
        .detail-inner h2:first-child { margin-top: 0; }
        .detail-inner p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.85;
            margin-bottom: 1rem;
        }
        .detail-inner > p:first-of-type {
            font-size: 1.02rem;
            color: var(--gray-700);
        }

        .floating-booking {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            z-index: 950;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.85rem 1.1rem;
            background: var(--accent-red);
            color: white;
            text-decoration: none;
            font-size: 0.86rem;
            font-weight: 750;
            letter-spacing: 0.01em;
            box-shadow: 0 10px 30px rgba(12, 26, 58, 0.28);
            transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }
        .floating-booking:hover {
            background: var(--accent-red-dark);
            transform: translateY(-2px);
            box-shadow: 0 14px 34px rgba(12, 26, 58, 0.34);
        }

        .legal-page { padding-top: 72px; }
        .legal-hero { padding-block: 4rem; }
        .section-label--inverse { color: rgba(255,255,255,0.55); }
        .legal-content ul {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.85;
            margin: 0 0 1rem;
            padding-left: 1.5rem;
        }
        .legal-content a:not(.btn-secondary) { color: var(--primary-blue); }
        .legal-back { margin-top: 1.5rem; }
        .footer-compact { padding-top: 2rem; }
        .footer-compact .footer-bottom { padding-top: 0; border-top: 0; }
        .detail-inner .callout {
            background: var(--gray-50);
            border-left: 4px solid var(--primary-blue);
            padding: 1.5rem 2rem;
            margin: 2rem 0;
        }
        .detail-inner .callout p {
            font-weight: 600;
            color: var(--gray-800);
            font-size: 1.05rem;
            margin-bottom: 0;
            overflow-wrap: anywhere;
        }
        .detail-cta {
            text-align: center;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--gray-200);
        }

        /* ===================== OUR APPROACH — CONNECTED THREAD ===================== */
        .approach-thread {
            max-width: 760px;
            margin: 2rem 0 2.5rem;
        }
        .approach-band {
            background: var(--navy-900);
            color: white;
            padding: 1.15rem 1.6rem;
            border-left: 4px solid var(--light-blue);
            margin-bottom: 4px;
        }
        .approach-band:last-child { margin-bottom: 0; }
        .approach-band-title {
            font-weight: 700;
            font-size: 1.02rem;
            margin-bottom: 0.3rem;
        }
        .approach-band-text {
            color: rgba(255,255,255,0.72);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===================== CASES ===================== */
        .case-item {
            margin-bottom: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid var(--gray-200);
        }
        .case-item:last-of-type { border-bottom: none; }
        .case-label {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            margin-bottom: 1.5rem;
        }
        .case-sector {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--gray-400);
            font-weight: 600;
        }
        .case-outcome {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .case-item h2 { margin-bottom: 2rem; }
        .case-item h3 {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--gray-500);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        .case-result {
            margin-top: 2rem;
            padding: 1.25rem 1.75rem;
            background: var(--gray-50);
            border-left: 4px solid var(--primary-blue);
            border-radius: 4px;
            font-weight: 600;
            color: var(--gray-700);
        }

        /* ===================== ANIMATIONS ===================== */
        .js .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .js .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1024px) {
            .hero { grid-template-columns: 1fr; max-height: none; }
            .hero-image { height: 400px; }
            .hero-image::after { background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%); }
            .hero-content { max-width: 100%; padding: 3rem 2rem; }
            .featured-service { grid-template-columns: 1fr; gap: 3rem; }
            .featured-image { height: 350px; }
            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .about-image { height: 350px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .global-stats { gap: 2.5rem; flex-wrap: wrap; }
        }
        @media (max-width: 960px) {
            nav { padding: 0 1.25rem; }
            .nav-left { flex: 1; min-width: 0; }
            .nav-logo-desktop { display: none !important; }
            .nav-logo-mobile { display: block !important; height: 42px !important; max-width: min(65vw, 290px); object-fit: contain; object-position: left center; }
            .nav-cobrand { display: none; }
            .nav-right { min-width: auto; }
            .mobile-toggle { display: block; }
            .nav-links { display: none; }
            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                max-height: calc(100vh - 72px);
                overflow-y: auto;
                background: var(--navy-900);
                padding: 1.1rem 1.5rem 1.5rem;
                gap: 0;
                border-top: 1px solid rgba(255,255,255,0.1);
                box-shadow: 0 12px 26px rgba(0,0,0,0.32);
            }
            .nav-links.mobile-open > li { width: 100%; }
            .nav-links.mobile-open > li > a,
            .nav-links.mobile-open .nav-dropdown-toggle {
                display: flex;
                width: 100%;
                justify-content: space-between;
                align-items: center;
                padding: 0.75rem 0;
                font-size: 0.95rem;
            }
            .nav-links.mobile-open .lang-toggle {
                display: flex;
                align-items: center;
                gap: 0.6rem;
                padding: 0.75rem 0;
            }
            .nav-links.mobile-open .lang-toggle a {
                display: inline;
                width: auto;
                padding: 0;
            }
            .nav-links > li > a.active::after { display: none; }
            .nav-links.mobile-open .dropdown {
                position: static;
                min-width: 0;
                box-shadow: none;
                border-radius: 0;
                padding: 0 0 0.65rem 0.75rem;
                background: rgba(255,255,255,0.035);
            }
            .nav-links.mobile-open .has-dropdown:hover .dropdown,
            .nav-links.mobile-open .has-dropdown:focus-within .dropdown { display: none; }
            .nav-links.mobile-open .has-dropdown.dropdown-open .dropdown { display: block; }
            .dropdown a { white-space: normal; padding: 0.62rem 0.75rem; }
            .dropdown-group-label { white-space: normal; padding-inline: 0.75rem; }
            .dropdown-separator { margin-inline: 0.75rem; }
            .legal-nav-links.mobile-open { padding-bottom: 1.25rem; }
            .nav-open .floating-booking { opacity: 0; pointer-events: none; }
        }
        @media (max-width: 768px) {
            .services-grid { grid-template-columns: 1fr; }
            .services-grid--hierarchy { grid-template-columns: 1fr; }
            .hero h1 { font-size: 2rem; }
            .section { padding: 4rem 1.5rem; }
            .detail-hero { padding: 3.5rem 1.5rem; }
            .detail-body { padding: 3.75rem 1.5rem 4.5rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
            .global-stats { gap: 1.5rem; }
            .stat-item .stat-num { font-size: 1.8rem; }
            .floating-booking {
                right: 0.75rem;
                bottom: 0.75rem;
                max-width: calc(100vw - 1.5rem);
                padding: 0.78rem 0.95rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 420px) {
            .nav-logo-mobile { height: 38px !important; max-width: 245px; }
            .hero-content { padding-inline: 1.25rem; }
            .hero h1 { font-size: 1.85rem; }
            .section { padding-inline: 1.25rem; }
            .detail-hero,
            .detail-body { padding-inline: 1.25rem; }
            .services-grid { grid-template-columns: minmax(0, 1fr); }
            .service-card { padding: 1.65rem; }
            .floating-booking span:first-child { max-width: 210px; }
        }

        @media (max-height: 520px) and (max-width: 960px) {
            .nav-links.mobile-open { padding-block: 0.5rem 1rem; }
            .nav-links.mobile-open > li > a,
            .nav-links.mobile-open .nav-dropdown-toggle { padding-block: 0.5rem; }
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
            .fade-up { opacity: 1; transform: none; }
        }

        /* ===================== TEAM PAGE ===================== */
        .team-grid {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .team-member {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 3rem;
            align-items: start;
        }
        .member-photo {
            width: 280px;
            height: 373px;
            overflow: hidden;
            background: var(--gray-100);
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .member-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            filter: saturate(0.9) contrast(1.02);
        }
        .member-info h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--gray-900);
            letter-spacing: -0.01em;
            margin-bottom: 0.25rem;
        }
        .member-role {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent-red);
            margin-bottom: 1.25rem;
        }
        .member-role--with-company {
            margin-bottom: 0.15rem;
        }
        .member-company {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gray-800);
            margin-bottom: 1.25rem;
        }
        .member-bio {
            color: var(--gray-600);
            font-size: 0.92rem;
            line-height: 1.8;
            margin-bottom: 0.75rem;
        }
        @media (max-width: 768px) {
            .team-member {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .member-photo {
                width: 200px;
                height: 250px;
            }
        }


        /* ===================== LOGO ROLL ===================== */
        .logo-roll {
            padding: 3.5rem 2rem;
            background: white;
            border-bottom: 1px solid var(--gray-200);
        }
        .logo-roll-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            text-align: center;
        }
        .logo-roll-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--gray-400);
            margin-bottom: 2rem;
        }
        .logo-roll-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.75rem;
        }
        .logo-roll-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2.5rem 3.5rem;
            width: 100%;
        }
        .logo-roll-row--bottom {
            justify-content: center;
        }
        .logo-roll-grid .client-logo {
            height: 32px;
            opacity: 0.45;
            filter: grayscale(100%);
            transition: opacity 0.3s, filter 0.3s;
            object-fit: contain;
            max-width: 180px;
        }
        .logo-roll-grid .client-logo:hover {
            opacity: 0.8;
            filter: grayscale(0%);
        }
        .logo-placeholder {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 32px;
            padding: 0 1.5rem;
            background: var(--gray-100);
            border: 1px dashed var(--gray-200);
            color: var(--gray-400);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        @media (max-width: 768px) {
            .logo-roll-grid {
                gap: 1.5rem 2rem;
            }
            .logo-roll-grid .client-logo,
            .logo-placeholder {
                height: 24px;
            }
        }
