:root {
    --blue-dark: #0a2540;
    --blue-mid: #0d4f8b;
    --blue-light: #1a73e8;
    --blue-bright: #4da3ff;
    --ivory: #f5f0e8;
    --cream: #f2ede7;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html.has-scroll-smooth { overflow: hidden; }
html.has-scroll-smooth body { overflow: hidden; }

body {
    font-family: var(--font-body);
    background: var(--blue-dark);
    color: var(--ivory);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block;
}
a { color: inherit; text-decoration: none; }

/* GPU acceleration for animated elements */
.hero-video,
.work-card-bg,
.service-card,
.work-card,
.testimonial,
.modal-container {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--blue-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { width: 60px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease);
}
.nav.scrolled {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem 4rem;
}
.nav.hidden { transform: translateY(-100%); }
.nav-logo img { height: 36px; }
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }

.nav-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
}
.nav-mobile-btn span {
    width: 26px; height: 2px;
    background: var(--ivory);
    transition: all 0.4s var(--ease);
}
.nav-mobile-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-mobile-btn.active span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--blue-dark);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease);
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
}
.modal-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--blue-dark);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s var(--ease);
    border: 1px solid rgba(255,255,255,0.1);
}
.modal.active .modal-container { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-close svg { width: 24px; height: 24px; stroke: var(--ivory); }
.modal-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.modal-content { display: grid; grid-template-columns: 1.2fr 1fr; }
.modal-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
    overflow: hidden;
}
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.modal-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1rem;
}
.modal-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.modal-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 2rem;
}
.modal-stats {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-bright);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(ellipse at 50% 40%, var(--blue-mid) 0%, var(--blue-dark) 70%);
    overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 1; }
.hero-poster {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, #0d4f8b 0%, #0a2540 70%);
    z-index: 1;
    transition: opacity 1s ease;
}
.hero-poster.hidden {
    opacity: 0;
    pointer-events: none;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    position: relative;
    z-index: 0;
}
.hero-video.loaded {
    opacity: 0.4;
}
.hero-mobile-image {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, rgba(13, 79, 139, 0.4) 0%, rgba(10, 37, 64, 0.8) 70%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
}
.hero-logo {
    width: min(620px, 90vw);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) 0.5s forwards;
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.scroll-cue {
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.5s forwards;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--ivory), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.6); opacity: 1; }
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--ivory), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 0.2; transform: scaleY(0.5); }
}

/* Clients */
.clients {
    background: rgba(10, 37, 64, 0.95);
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 10;
}
.clients-track {
    display: flex;
    gap: 4rem;
    animation: marquee 35s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.4;
    white-space: nowrap;
    transition: opacity 0.3s;
}
.client-name:hover { opacity: 0.7; }

/* Story */
.story {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: linear-gradient(180deg, var(--blue-dark) 0%, #061829 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.story-content {
    padding: 6rem;
    padding-right: 4rem;
    position: relative;
    z-index: 2;
}
.story-label {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0;
    margin-bottom: 2rem;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.story-label.is-inview {
    opacity: 0.4;
    transform: translateY(0);
}
.story-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}
.story-headline .word { display: inline-block; margin-right: 0.25em; }
.story-headline em { font-style: italic; color: var(--blue-bright); }
.story-body {
    font-size: 1.25rem;
    line-height: 1.9;
    opacity: 0;
    max-width: 500px;
    transform: translateY(30px);
    transition: opacity 1s var(--ease) 0.3s, transform 1s var(--ease) 0.3s;
}
.story-body.is-inview {
    opacity: 0.65;
    transform: translateY(0);
}
.story-image {
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.story-image-placeholder,
.service-image-placeholder,
.work-card-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}
}

/* Manifesto */
/* Manifesto Section - Centered */
section.manifesto {
    padding: 0;
    background: #f2ede7 !important;
    background-color: #f2ede7 !important;
    position: relative;
    overflow: hidden;
}
.manifesto-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 4rem;
    min-height: 60vh;
    max-width: 900px;
    margin: 0 auto;
    background: #f2ede7;
}
.manifesto-quote {
    margin: 0 0 3rem 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.manifesto-quote.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.manifesto-quote p {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.35;
    color: #0a2540;
    letter-spacing: -0.01em;
}
.manifesto-quote em { 
    font-style: italic; 
    color: #1a73e8;
}
.manifesto-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1a73e8, #4da3ff);
    margin: 0 auto 2.5rem auto;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.8s var(--ease) 0.2s, transform 0.8s var(--ease) 0.2s;
}
.manifesto-divider.is-inview {
    opacity: 1;
    transform: scaleX(1);
}
.manifesto-body {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #0a2540;
    opacity: 0;
    max-width: 600px;
    transform: translateY(30px);
    transition: opacity 1s var(--ease) 0.3s, transform 1s var(--ease) 0.3s;
}
.manifesto-body.is-inview {
    opacity: 0.7;
    transform: translateY(0);
}
.manifesto-body em { 
    font-style: italic; 
    color: #1a73e8;
    font-weight: 500;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.is-inview {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.is-inview {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.is-inview {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Services */
.services {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--blue-dark) 0%, #0d4f8b 50%, #1a5a9e 100%);
}
.services-header {
    text-align: center;
    margin-bottom: 5rem;
}
.services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.services-header h2.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.services-header p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease) 0.15s, transform 1s var(--ease) 0.15s;
}
.services-header p.is-inview {
    opacity: 0.5;
    transform: translateY(0);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
}
.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s var(--ease), transform 1s var(--ease), background 0.4s ease, border-color 0.4s ease;
}
.service-card.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.service-image {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.service-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.3;
    margin-bottom: 1rem;
}
.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.6;
}

/* Work */
.work {
    padding: 10rem 2rem;
    background: var(--cream);
    color: var(--blue-dark);
}
.work-header {
    text-align: center;
    margin-bottom: 5rem;
}
.work-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.work-header h2.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.work-header p {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease) 0.15s, transform 1s var(--ease) 0.15s;
}
.work-header p.is-inview {
    opacity: 0.5;
    transform: translateY(0);
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}
.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.work-card.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.work-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease);
}
.work-card-bg img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.work-card:hover .work-card-bg { transform: scale(1.05); }
.work-card-content {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 37, 64, 0.95) 0%, rgba(10, 37, 64, 0.4) 50%, transparent 100%);
    color: var(--ivory);
}
.work-card-client {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}
.work-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.work-card-stats {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Testimonials */
.testimonials {
    padding: 10rem 2rem;
    background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.testimonials h2.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease), transform 1s var(--ease), background 0.4s ease;
}
.testimonial.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.testimonial:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.5;
}

/* Contact */
.contact {
    padding: 12rem 2rem;
    background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    text-align: center;
}
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact h2 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.contact h2.is-inview {
    opacity: 1;
    transform: translateY(0);
}
.contact h2 .word { display: inline-block; margin-right: 0.2em; }
.contact h2 em { font-style: italic; }
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: var(--ivory);
    color: var(--blue-dark);
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s var(--ease);
    opacity: 0;
    transform: translateY(30px);
}
.contact-btn.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s var(--ease), opacity 1s var(--ease) 0.2s, transform 1s var(--ease) 0.2s;
}
.contact-btn svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.contact-btn:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.contact-btn:hover svg { transform: translateX(5px); }

/* Shimmer animation for "unforgettable" */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--ivory) 0%,
        var(--ivory) 40%,
        var(--blue-bright) 50%,
        var(--ivory) 60%,
        var(--ivory) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerEffect 3s ease-in-out infinite;
    font-style: italic;
}

@keyframes shimmerEffect {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* Footer */
.footer {
    background: #050d17;
    padding: 4rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.footer-logo { display: inline-block; margin-bottom: 2rem; }
.footer-logo img { height: 40px; opacity: 0.4; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-links a {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 0.7; }
.footer-copy { font-size: 0.8rem; opacity: 0.25; }

/* Responsive */
@media (max-width: 1024px) {
    .nav { padding: 1.5rem 2rem; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: flex; }
    
    .story { grid-template-columns: 1fr; }
    .story-content { padding: 5rem 2rem; }
    .story-image { min-height: 400px; }
    
    .services-grid { grid-template-columns: 1fr; }
    .service-card { grid-template-columns: 1fr; }
    .service-image { aspect-ratio: 16/9; }
    
    .work-grid { grid-template-columns: 1fr; }
    
    .testimonials-slider { grid-template-columns: 1fr; }
    
    .modal-content { grid-template-columns: 1fr; }
    .modal-image { aspect-ratio: 16/9; }
    .modal-info { padding: 2.5rem; }
    .modal-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    
    .nav { padding: 1.25rem 1.5rem; }
    .nav-logo img { height: 28px; }
    
    .hero-logo { width: min(400px, 92vw); }
    .hero-tagline { font-size: 1rem; padding: 0 0.75rem; }
    
    /* Mobile: show image, hide video */
    .hero-video, .hero-poster { display: none !important; }
    .hero-mobile-image { display: block !important; }
    
    .story-content { padding: 4rem 1.5rem; }
    .story-headline { font-size: 2.2rem; }
    
    .manifesto-content { padding: 6rem 2rem; min-height: auto; }
    .manifesto-quote p { font-size: 1.8rem; line-height: 1.35; }
    .manifesto-body { font-size: 1rem; line-height: 1.7; }
    
    .services { padding: 5rem 1.5rem; }
    .service-info { padding: 2rem; }
    .service-info h3 { font-size: 1.5rem; }
    
    .work { padding: 5rem 1.5rem; }
    .work-card-content { padding: 1.5rem; }
    .work-card h3 { font-size: 1.2rem; }
    
    .testimonials { padding: 5rem 1.5rem; }
    .testimonial { padding: 2rem; }
    
    .contact { padding: 6rem 1.5rem; }
    .contact h2 { font-size: 2.2rem; }
    
    .footer { padding: 3rem 1.5rem; }
    .footer-links { gap: 1.5rem; flex-wrap: wrap; }
}
