        /* ═══════════════════════════════════════════
           DIPLOCORP — Corporate Diplomacy Consultancy
           Aesthetic: Institutional Luxury / Quiet Power
           ═══════════════════════════════════════════ */

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

        :root {
            --ink: #0a0f1a;
            --ink-soft: #2a3148;
            --ink-muted: #5c6380;
            --gold: #b59a5e;
            --gold-light: #d4be8a;
            --gold-dark: #8c7540;
            --ivory: #f7f5f0;
            --ivory-warm: #eee9df;
            --white: #fdfcfa;
            --slate: #3a3f52;
            --sage: #7a8b6f;

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
            font-weight: 300;
        }

        /* ── Selection ── */
        ::selection { background: var(--gold-light); color: var(--ink); }

        /* ── Scrollbar ── */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--ivory); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

        /* ══════════════════
           NAVIGATION
           ══════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 4rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.5s var(--ease-out-expo);
        }

        .nav.scrolled {
            background: rgba(253, 252, 250, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 1rem 4rem;
            box-shadow: 0 1px 0 rgba(181, 154, 94, 0.15);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--ink);
        }

        .nav-logo img {
            height: 38px;
            width: auto;
            border-radius: 4px;
        }

        .nav-logo-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--ink-soft);
            font-size: 0.82rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 4px;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.4s var(--ease-out-expo);
        }

        .nav-links a:hover { color: var(--ink); }
        .nav-links a:hover::after { width: 100%; }

        .nav-lang {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-dark);
            text-decoration: none;
            border: 1px solid var(--gold);
            padding: 0.35rem 0.85rem;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav-lang:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* Mobile menu */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 1.5px;
            background: var(--ink);
            position: absolute;
            left: 0;
            transition: all 0.3s var(--ease-out-expo);
        }

        .nav-toggle span:nth-child(1) { top: 2px; }
        .nav-toggle span:nth-child(2) { top: 11px; }
        .nav-toggle span:nth-child(3) { top: 20px; }

        .nav-toggle.active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; }
        .nav-toggle.active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

        /* ══════════════════
           HERO
           ══════════════════ */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 8rem 6rem 6rem 6rem;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
        }

        .hero-badge::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 4.5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.15;
            color: var(--ink);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--gold-dark);
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--ink-muted);
            max-width: 480px;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.2rem;
            background: var(--ink);
            color: var(--ivory);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--ease-out-expo);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--gold-dark);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s var(--ease-out-expo);
        }

        .btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
        .btn-primary span { position: relative; z-index: 1; }
        .btn-primary svg { position: relative; z-index: 1; transition: transform 0.3s; }
        .btn-primary:hover svg { transform: translateX(4px); }

        .btn-ghost {
            text-decoration: none;
            color: var(--ink-soft);
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 400;
            position: relative;
            padding-bottom: 4px;
        }

        .btn-ghost::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0.4);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out-expo);
        }

        .btn-ghost:hover::after { transform: scaleX(1); }

        .hero-image {
            position: relative;
            overflow: hidden;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            scale: 1.08;
            animation: heroImgReveal 1.4s var(--ease-out-expo) 0.2s forwards;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(10, 15, 26, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-locations {
            position: absolute;
            bottom: 3rem;
            left: 6rem;
            display: flex;
            gap: 3rem;
            opacity: 0;
            animation: fadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
        }

        .hero-location {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--ink-muted);
            position: relative;
            padding-left: 1rem;
        }

        .hero-location::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--gold);
            transform: translateY(-50%);
        }

        /* ══════════════════
           MANIFESTO / INTRO
           ══════════════════ */
        .manifesto {
            padding: 10rem 6rem;
            background: var(--ink);
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }

        .manifesto::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('images/ChatGPT-Image-16-ene-2026-13_42_34-1024x683.png') center/cover no-repeat;
            opacity: 0.08;
            pointer-events: none;
        }

        .manifesto::after {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(181, 154, 94, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .manifesto-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .manifesto-label {
            font-size: 0.72rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 3rem;
        }

        .manifesto-text {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 2.8vw, 2.4rem);
            font-weight: 300;
            line-height: 1.6;
            color: var(--ivory-warm);
        }

        .manifesto-text strong {
            color: var(--gold-light);
            font-weight: 400;
        }

        .manifesto-divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 3rem auto;
            opacity: 0.5;
        }

        .manifesto-sub {
            font-size: 0.95rem;
            color: var(--ink-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ══════════════════
           SERVICES
           ══════════════════ */
        .services {
            padding: 8rem 6rem;
            background: var(--white);
        }

        .section-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 5rem;
            align-items: end;
        }

        .section-label {
            font-size: 0.72rem;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 300;
            line-height: 1.2;
        }

        .section-desc {
            font-size: 1rem;
            color: var(--ink-muted);
            line-height: 1.8;
            max-width: 480px;
        }

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

        .service-card {
            background: var(--ivory);
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            cursor: default;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s var(--ease-out-expo);
            z-index: 2;
        }

        .service-card:hover { background: var(--ivory-warm); }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover .service-img img { scale: 1.05; }

        .service-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: scale 0.6s var(--ease-out-expo);
            filter: saturate(0.8);
        }

        .service-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 50%, rgba(247, 245, 240, 0.4) 100%);
        }

        .service-body {
            padding: 2.5rem 3rem 3rem;
        }

        .service-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 300;
            color: var(--gold-light);
            opacity: 0.5;
            margin-bottom: 1.5rem;
            line-height: 1;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1.2rem;
            color: var(--ink);
        }

        .service-text {
            font-size: 0.9rem;
            color: var(--ink-muted);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .service-items {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-items li {
            font-size: 0.85rem;
            color: var(--ink-soft);
            padding: 0.5rem 0;
            padding-left: 1.2rem;
            position: relative;
            line-height: 1.6;
        }

        .service-items li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.9rem;
            width: 5px;
            height: 1px;
            background: var(--gold);
        }

        .service-link {
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold-dark);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s var(--ease-out-expo);
        }

        .service-link:hover { gap: 0.85rem; }

        /* ══════════════════
           AREAS / PILLARS
           ══════════════════ */
        .areas {
            padding: 8rem 6rem;
            background: var(--ivory);
        }

        .areas-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .area-block {
            padding: 3.5rem;
            background: var(--white);
            border: 1px solid rgba(181, 154, 94, 0.15);
            position: relative;
            transition: all 0.5s var(--ease-out-expo);
        }

        .area-block:hover {
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(10, 15, 26, 0.06);
        }

        .area-block:nth-child(2) {
            margin-top: 4rem;
        }

        .area-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 2rem;
            color: var(--gold);
        }

        .area-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
            margin-bottom: 2rem;
            position: relative;
        }

        .area-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: saturate(0.85);
            transition: scale 0.6s var(--ease-out-expo);
        }

        .area-block:hover .area-img img { scale: 1.04; }

        .area-title {
            font-family: var(--font-display);
            font-size: 1.7rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .area-text {
            font-size: 0.92rem;
            color: var(--ink-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .area-list {
            list-style: none;
        }

        .area-list li {
            font-size: 0.88rem;
            color: var(--ink-soft);
            padding: 0.65rem 0;
            border-bottom: 1px solid rgba(10, 15, 26, 0.05);
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.6;
        }

        .area-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.8rem;
        }

        .area-list li:last-child { border-bottom: none; }

        /* ══════════════════
           SCROLLING TEXT
           ══════════════════ */
        .ticker {
            padding: 2.5rem 0;
            background: var(--ink);
            overflow: hidden;
            white-space: nowrap;
        }

        .ticker-track {
            display: inline-flex;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-item {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 300;
            color: var(--ivory-warm);
            opacity: 0.4;
            padding: 0 2rem;
            display: inline-flex;
            align-items: center;
            gap: 2rem;
        }

        .ticker-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--gold);
            opacity: 0.6;
        }

        /* ══════════════════
           TEAM
           ══════════════════ */
        .team {
            padding: 8rem 6rem;
            background: var(--white);
        }

        .team-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .team-featured {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        .team-featured-photo {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            filter: grayscale(0.2);
            transition: all 0.5s var(--ease-out-expo);
        }

        .team-featured:hover .team-featured-photo {
            filter: grayscale(0);
        }

        .team-featured-role {
            font-size: 0.7rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.75rem;
        }

        .team-featured-name {
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 500;
            margin-bottom: 1.2rem;
            line-height: 1.2;
        }

        .team-featured-bio {
            font-size: 0.95rem;
            color: var(--ink-muted);
            line-height: 1.8;
        }

        .team-collab-label {
            font-size: 0.72rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 2rem;
            text-align: center;
        }

        .team-collab-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .team-collab-card {
            background: var(--ivory);
            padding: 2.5rem;
            text-align: center;
            border: 1px solid rgba(181, 154, 94, 0.1);
            transition: all 0.4s var(--ease-out-expo);
        }

        .team-collab-card:hover {
            border-color: var(--gold);
            box-shadow: 0 12px 40px rgba(10, 15, 26, 0.05);
        }

        .team-collab-initials {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--white);
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .team-collab-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .team-collab-bio {
            font-size: 0.82rem;
            color: var(--ink-muted);
            line-height: 1.7;
        }

        /* ══════════════════
           VALUES
           ══════════════════ */
        .values {
            padding: 8rem 6rem;
            background: var(--ivory);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .value-card {
            text-align: center;
            padding: 2.5rem 2rem;
        }

        .value-icon {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 300;
            font-style: italic;
            color: var(--gold);
            margin-bottom: 1.5rem;
            line-height: 1;
        }

        .value-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .value-text {
            font-size: 0.88rem;
            color: var(--ink-muted);
            line-height: 1.7;
        }

        /* ══════════════════
           CONTACT
           ══════════════════ */
        .contact {
            padding: 8rem 6rem;
            background: var(--ink);
            color: var(--ivory);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(181, 154, 94, 0.04) 0%, transparent 70%);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: start;
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 3vw, 2.8rem);
            font-weight: 300;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        .contact-subtitle {
            font-size: 1rem;
            color: var(--ink-muted);
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-item-icon {
            width: 20px;
            height: 20px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-item-label {
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.3rem;
        }

        .contact-item-value {
            font-size: 0.95rem;
            color: var(--ivory-warm);
            line-height: 1.6;
        }

        .contact-item-value a {
            color: var(--ivory-warm);
            text-decoration: none;
            border-bottom: 1px solid rgba(212, 190, 138, 0.3);
            transition: border-color 0.3s;
        }

        .contact-item-value a:hover {
            border-color: var(--gold);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
        }

        .form-group input,
        .form-group textarea {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 0.85rem 1rem;
            color: var(--ivory);
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 300;
            transition: border-color 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gold);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2.5rem;
            background: var(--gold);
            color: var(--ink);
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            align-self: flex-start;
        }

        .btn-submit:hover {
            background: var(--gold-light);
            transform: translateY(-1px);
        }

        /* ══════════════════
           FOOTER
           ══════════════════ */
        .footer {
            padding: 3rem 6rem;
            background: var(--ink);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--ink-muted);
            font-size: 0.78rem;
        }

        .footer a {
            color: var(--ink-muted);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover { color: var(--gold); }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            border-color: var(--gold);
            background: rgba(181, 154, 94, 0.1);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
        }

        /* ══════════════════
           ANIMATIONS
           ══════════════════ */
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes heroImgReveal {
            to { opacity: 1; scale: 1; }
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.9s var(--ease-out-expo);
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.35s; }

        /* ══════════════════
           RESPONSIVE
           ══════════════════ */
        @media (max-width: 1024px) {
            .nav { padding: 1.2rem 3rem; }
            .nav.scrolled { padding: 0.8rem 3rem; }
            .hero { grid-template-columns: 1fr; min-height: auto; }
            .hero-content { padding: 10rem 3rem 4rem; }
            .hero-image { height: 50vh; }
            .hero-locations { left: 3rem; bottom: 2rem; }
            .services, .areas, .team, .values, .contact, .manifesto { padding: 5rem 3rem; }
            .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
            .services-grid { grid-template-columns: 1fr; }
            .areas-grid { grid-template-columns: 1fr; gap: 2rem; }
            .area-block:nth-child(2) { margin-top: 0; }
            .team-featured { grid-template-columns: 1fr; gap: 2rem; }
            .team-collab-grid { grid-template-columns: repeat(2, 1fr); }
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
            .footer { flex-direction: column; gap: 1.5rem; text-align: center; }
            .footer-links { justify-content: center; }
            .footer-social { justify-content: center; }
        }

        @media (max-width: 640px) {
            .nav { padding: 1rem 1.5rem; }
            .nav.scrolled { padding: 0.8rem 1.5rem; }
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                inset: 0;
                background: var(--white);
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 1000;
            }
            .nav-links.active a {
                font-size: 1.1rem;
                letter-spacing: 0.2em;
            }
            .nav-toggle { display: block; }
            .hero-content { padding: 8rem 1.5rem 3rem; }
            .hero-image { height: 40vh; }
            .hero-locations { left: 1.5rem; flex-wrap: wrap; gap: 1.5rem; }
            .hero-cta { flex-direction: column; align-items: flex-start; }
            .services, .areas, .team, .values, .contact, .manifesto { padding: 4rem 1.5rem; }
            .team-collab-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
            .values-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer { padding: 2rem 1.5rem; }
        }
