/*
Theme Name: The Rage Agency
Theme URI: https://therageagency.com
Description: Custom theme for The Rage Agency full-service marketing agency
Version: 1.0
Author: The Rage Agency
*/

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── SITE HEADER / NAV ─── */

.site-header {
    background: #fff;
    border-bottom: 1.5px solid #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-wordmark {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.site-wordmark a {
    color: #000;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.primary-nav a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
    transition: opacity 0.15s;
}

.primary-nav a:hover {
    opacity: 0.5;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
}

/* ─── HERO ─── */

.hero {
    background: #000;
    padding: 120px 24px;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 8vw, 90px);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.0;
}

.hero-rule {
    border: none;
    border-top: 1.5px solid #fff;
    width: 100%;
    max-width: 560px;
}

.hero-services {
    font-size: 16px;
    color: #888;
    letter-spacing: 0.04em;
}

.hero-cta-box {
    background: #fff;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: center;
    flex-shrink: 0;
    min-width: 220px;
    border: 2px solid #fff;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
}

.hero-cta-box:hover {
    background: #000;
}

.hero-cta-box:hover .hero-cta-label {
    color: #fff;
}

.hero-cta-label {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

/* ─── WHAT WE DO ─── */

.what-we-do {
    background: #fff;
    padding: 80px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
}

.service-block {
    padding: 32px 24px;
    border-right: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-number {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: #000;
    line-height: 1;
    letter-spacing: 0.02em;
}

.service-name {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.service-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin-top: 4px;
}

/* ─── FULL SERVICE ─── */

.full-service {
    background: #f2f2f2;
    padding: 80px 24px;
}

.full-service-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.full-service-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 40px;
    max-width: 700px;
}

.full-service-body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.full-service-copy {
    font-size: 17px;
    color: #888;
    line-height: 1.7;
    max-width: 580px;
}

.btn-black {
    display: inline-block;
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px 32px;
    border: 2px solid #000;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.btn-black:hover {
    background: #fff;
    color: #000;
}

/* ─── FOOTER ─── */

.site-footer {
    background: #000;
    padding: 0 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-wordmark {
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-nav {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    transition: opacity 0.15s;
}

.footer-nav a:hover {
    opacity: 0.5;
}

.footer-bottom {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.04em;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-cta-box {
        align-self: flex-start;
    }

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

    .full-service-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .primary-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1.5px solid #000;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .primary-nav.open {
        display: flex;
    }

    .primary-nav li {
        width: 100%;
        border-bottom: 1px solid #f2f2f2;
    }

    .primary-nav a {
        display: block;
        padding: 14px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 80px 24px;
    }

    .hero-headline {
        font-size: clamp(44px, 12vw, 70px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta-box {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 16px;
    }
}
