: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 {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.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: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    padding-top: 10rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.abstract-shape {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-color) 0%, rgba(226, 220, 211, 0) 70%);
    opacity: 0.6;
    z-index: 1;
    border-radius: 50%;
    filter: blur(50px);
    animation: float 10s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }
}

/* Our Work / Portfolio --------------------------------- */
.work {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Stagger the second column for agency feel */
.work-grid .work-card:nth-child(even) {
    margin-top: 5rem;
}

.work-card {
    cursor: pointer;
}

.work-card .work-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: var(--accent-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.work-img span {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.5;
}

.work-card:hover .work-img {
    transform: scale(0.98);
}

.work-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.work-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.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 h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--bg-color);
    margin: 0;
}

.service-desc p {
    color: rgba(253, 252, 249, 0.7);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-desc strong {
    color: var(--bg-color);
    font-weight: 400;
}

/* Clients Marquee --------------------------------- */
.clients {
    padding: 5rem 0;
    background-color: #F5F3ED;
    /* Slightly darker cream for contrast */
    overflow: hidden;
}

.clients .section-header {
    max-width: var(--max-width);
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: 4rem;
    padding-left: 4rem;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.marquee-content span:hover {
    opacity: 1;
    color: var(--text-color);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Manifesto Banner --------------------------------- */
.manifesto-banner {
    padding: 10rem 2rem;
    text-align: center;
    background-color: var(--bg-color);
}

.manifesto-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 900px;
    margin: 0 auto 3rem auto;
    line-height: 1.2;
}

/* Our Thinking (Blog) --------------------------------- */
.thinking {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.thinking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.thinking-card {
    padding: 2.5rem;
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.thinking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.thinking-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.thinking-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

/* Booking Section (Cal.com Real Embed) ------------- */
.booking {
    padding: var(--section-padding);
    background-color: #F5F3ED;
    /* Subtle alternate background */
    border-top: 1px solid var(--card-border);
}

.booking .section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.cal-embed-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: 600px;
    position: relative;
}

/* 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 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand p {
    color: rgba(253, 252, 249, 0.6);
    margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.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-contact .btn-primary {
    background-color: var(--bg-color);
    color: var(--text-color) !important;
}

.footer-contact .btn-primary:hover {
    background-color: #E2DCD3;
}

.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-grid {
        grid-template-columns: 1fr;
    }

    .work-grid .work-card:nth-child(even) {
        margin-top: 0;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .marquee-content span {
        font-size: 1.5rem;
    }
}