:root {
    /* Premium Cream Identity */
    --bg-color: #FDFCF9;
    --text-color: #1A1A1A;
    --text-muted: #666460;
    --accent-color: #E2DCD3;
    --card-bg: #FFFFFF;
    --card-border: #EFECE6;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing & Layout */
    --max-width: 1200px;
    --section-padding: 8rem 2rem;
    --border-radius: 4px;
    /* Sharp agency feel */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Basic Typography --------------------------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 i,
h2 i {
    font-family: var(--font-accent);
    font-weight: 400;
    font-style: italic;
    letter-spacing: normal;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header.align-left {
    text-align: left;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons --------------------------------- */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--text-color);
    color: var(--bg-color) !important;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Navigation --------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: rgba(253, 252, 249, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    border-bottom: 1px solid var(--card-border);
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.navbar-separator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1A1A1A;
    z-index: 99;
    margin-top: 97px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links:not(.btn-primary) a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-muted);
}

/* Hero Section --------------------------------- */
.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-padding);
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 4rem;
    background-image: url('hero-office-bg.png');
    background-size: cover;
    background-position: center;
}

.hero-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    padding: 5rem 4rem;
    min-height: 450px;
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-banner-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    max-width: 800px;
    line-height: 1.05;
    color: #FFFFFF;
}

.hero-title i {
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta .btn-primary-large {
    background-color: #FFFFFF;
    color: var(--text-color) !important;
}

.hero-cta .btn-primary-large:hover {
    background-color: #f0f0f0;
}

/* Our Work / Portfolio --------------------------------- */
.work {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.work-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 3rem;
}

.work-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    cursor: pointer;
}



.work-content,
.work-visual {
    flex: 1;
}

.work-content {
    text-align: center;
}

.work-visual .work-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-img span {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.5;
}

.work-row:hover .work-img {
    transform: scale(0.98);
}

.work-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.work-content p:not(.work-desc) {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.work-desc {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.8;
}

.section-footer {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* What We Do / Services --------------------------------- */
.services {
    padding: var(--section-padding);
    background-color: var(--text-color);
    color: var(--bg-color);
}

.services .section-header h2 {
    color: var(--bg-color);
}

.services-list {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-title h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--bg-color);
    margin: 0;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card strong {
    color: var(--text-color);
    font-weight: 500;
}

/* Clients Marquee --------------------------------- */
.clients {
    padding: 4rem 0 0 0;
    background-color: var(--bg-color);
    overflow: hidden;
}

.clients .section-header {
    max-width: var(--max-width);
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.clients .section-header h2 {
    font-size: 1.75rem;
    letter-spacing: 0.02em;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    display: flex;
    background-color: transparent;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 2.5rem 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 150s linear infinite;
    gap: 4rem;
    padding-right: 4rem;
    flex-shrink: 0;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0) opacity(1);
}

.client-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.5;
    letter-spacing: 0.05em;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

.client-logo:hover .client-text {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Creative Intelligence --------------------------------- */
.creative-intelligence {
    padding: 8rem 2rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    overflow: hidden;
}

.ci-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    min-height: 350px;
}

.ci-zone {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

.ci-left {
    text-align: left;
}

.ci-right {
    text-align: right;
}

.ci-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(253, 252, 249, 0.5);
    min-height: 1.5rem;
}

.ci-typewriter {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(253, 252, 249, 0.85);
    min-height: 120px;
    font-family: var(--font-body);
}

.ci-typewriter .cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--bg-color);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.ci-center {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.ci-anchor {
    border: 1px solid rgba(253, 252, 249, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-width: 320px;
    text-align: center;
}

.ci-anchor-text {
    font-family: var(--font-accent);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--bg-color) !important;
    line-height: 1.4;
}

/* Sound Familiar --------------------------------- */
.sound-familiar {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.familiar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.familiar-card {
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background-color: var(--card-bg);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.familiar-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pain-point {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    transform-origin: top left;
    transition: transform 0.4s ease;
}

.solution {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    transform-origin: bottom left;
    transition: transform 0.4s ease, color 0.4s ease;
}

.familiar-card:hover .pain-point {
    transform: scale(0.85);
}

.familiar-card:hover .solution {
    transform: scale(1.15);
    color: var(--text-color);
}

/* Let's Talk --------------------------------- */
.lets-talk {
    padding: var(--section-padding);
    background-color: #D8D8D8;
    border-top: 1px solid #C0C0C0;
}

.lets-talk .section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.lets-talk-grid {
    max-width: var(--max-width);
    margin: 3rem auto 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.lt-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.lt-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.lt-card p {
    margin-bottom: 2rem;
    flex: 1;
}

.lt-card-schedule {
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.lt-card-schedule p {
    flex: none;
    margin-bottom: 0;
}

.lt-card-schedule h3 {
    margin-bottom: 1.5rem;
}

.lt-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    gap: 1rem;
}

.lt-stripe {
    width: 2px;
    flex: 1;
    background-color: var(--text-color);
    opacity: 0.2;
}

.lt-divider span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--text-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
}

/* Footer --------------------------------- */
.site-footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 6rem 2rem 2rem 2rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: rgba(253, 252, 249, 0.6);
    margin-top: 1rem;
}

.footer-brand .logo img {
    filter: invert(1);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-contact .btn-primary {
    background-color: var(--bg-color);
    color: var(--text-color) !important;
}

.footer-contact .btn-primary:hover {
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(253, 252, 249, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bg-color);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(253, 252, 249, 0.4);
}

/* Animations --------------------------------- */

/* Mobile Responsiveness --------------------------------- */
@media (max-width: 900px) {
    .work-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .work-row.reverse {
        flex-direction: column-reverse;
    }

    .work-content,
    .work-visual {
        width: 100%;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-banner {
        padding: 3rem 2rem;
        min-height: 350px;
    }

    .hero-content {
        text-align: center;
    }

    .ci-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ci-right {
        text-align: left;
    }

    .ci-center {
        order: -1;
    }

    .familiar-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lets-talk-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lt-divider {
        flex-direction: row;
        padding: 0;
    }

    .lt-stripe {
        width: auto;
        height: 2px;
        flex: 1;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-banner {
        padding: 2rem 1.5rem;
        min-height: 280px;
        border-radius: 14px;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .marquee-content span {
        font-size: 1rem;
    }

    .familiar-grid {
        grid-template-columns: 1fr;
    }
}