@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --brutal-red: #e00024;
    --brutal-cream: #fffbf8;
    --brutal-gold: #fac776;
    --brutal-dark: #1a1a1a;
    --brutal-gray: #2c2c2c;
    --brutal-offwhite: #f4f1ea;
    --brutal-border: #111111;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--brutal-cream);
    color: var(--brutal-dark);
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1rem;
}

h1, h2, h3, h4, .brand-text, .nav-link, .hero-tag, .btn-brutal-primary, .btn-brutal-secondary {
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brutal-navbar {
    background-color: var(--brutal-dark);
    border-bottom: 4px solid var(--brutal-red);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.logo-square {
    width: 62px;
    height: 62px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brutal-gold);
    padding: 6px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--brutal-cream);
    letter-spacing: 2px;
    border-left: 3px solid var(--brutal-red);
    padding-left: 1rem;
}

.brutal-toggler {
    background-color: var(--brutal-red);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0;
}

.brutal-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--brutal-gold);
}

.nav-link {
    color: var(--brutal-cream) !important;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--brutal-gold) !important;
    border-bottom-color: var(--brutal-gold);
}

.hero-brutal {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brutal-dark) 0%, #2a2a2a 100%);
    border-bottom: 6px solid var(--brutal-red);
    margin-bottom: 0;
}

.hero-tag {
    display: inline-block;
    background-color: var(--brutal-red);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--brutal-cream);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px var(--brutal-red);
}

.hero-sub {
    font-size: 1.2rem;
    color: #d4d4d4;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.btn-brutal-primary {
    background-color: var(--brutal-red);
    color: white;
    border: 2px solid var(--brutal-red);
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-brutal-primary:hover {
    background-color: transparent;
    color: var(--brutal-red);
    border: 2px solid var(--brutal-red);
}

.btn-brutal-secondary {
    background-color: transparent;
    color: var(--brutal-gray);
    border: 2px solid var(--brutal-gold);
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-brutal-secondary:hover {
    background-color: var(--brutal-gold);
    color: var(--brutal-dark);
    border-color: var(--brutal-gold);
}

.section-brutal {
    padding: 5rem 0;
    border-bottom: 1px solid #e2ddd4;
}

.brutal-card {
    background-color: white;
    border: none;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brutal-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 18px 18px 0px rgba(0, 0, 0, 0.08);
}

.brutal-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #ece8e1;
}

.brutal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.brutal-card:hover .brutal-img {
    transform: scale(1.02);
}

.brutal-card-body {
    padding: 2rem;
    border-left: 3px solid var(--brutal-red);
}

.section-icon {
    font-size: 2.5rem;
    color: var(--brutal-red);
    margin-bottom: 1rem;
}

.brutal-h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--brutal-dark);
    border-left: 4px solid var(--brutal-gold);
    padding-left: 1rem;
}

.content-bullets {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.content-bullets span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.content-bullets i {
    color: var(--brutal-red);
    font-size: 1rem;
    width: 1.4rem;
}

.brutal-card-full {
    background-color: white;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.brutal-img-full-wrapper {
    height: 100%;
    min-height: 320px;
}

.brutal-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brutal-card-body-full {
    padding: 2.5rem;
    height: 100%;
}

.brutal-policy {
    background-color: var(--brutal-dark);
    padding: 3rem 2rem;
    border-top: 5px solid var(--brutal-gold);
    border-bottom: 5px solid var(--brutal-red);
}

.policy-icon {
    font-size: 3rem;
    color: var(--brutal-gold);
    margin-bottom: 1rem;
}

.policy-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brutal-cream);
    margin-bottom: 1.5rem;
}

.brutal-policy p {
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.6;
}

.brutal-connect {
    background: white;
    padding: 3rem;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
    border-top: 6px solid var(--brutal-red);
}

.connect-header i {
    font-size: 2.8rem;
    color: var(--brutal-red);
    margin-bottom: 1rem;
}

.connect-lead {
    font-size: 1.05rem;
    color: #3a3a3a;
    max-width: 800px;
    margin: 1rem auto 0;
}

.connect-card {
    background-color: var(--brutal-offwhite);
    padding: 2rem;
    transition: all 0.2s;
    border-bottom: 3px solid var(--brutal-gold);
}

.connect-icon-fb {
    font-size: 2.8rem;
    color: var(--brutal-red);
    margin-bottom: 1rem;
}

.connect-icon-mail {
    font-size: 2.8rem;
    color: var(--brutal-gold);
    margin-bottom: 1rem;
}

.small-note {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #e0dbd2;
    padding-top: 1.5rem;
}

.brutal-footer {
    background-color: #121212;
    color: #bcbcbc;
    padding: 3rem 0;
    border-top: 5px solid var(--brutal-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.logo-square-footer {
    width: 95px;
    height: 95px;
    background-color: transparent;
    margin-bottom: 1rem;
}

.logo-img-footer {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand span {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--brutal-cream);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.85rem;
    margin-top: 0.8rem;
    color: #aaa;
}

.footer-links h5, .footer-social h5 {
    color: var(--brutal-gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
    border-left: 2px solid transparent;
    padding-left: 0.5rem;
}

.footer-links a:hover {
    color: var(--brutal-gold);
    border-left-color: var(--brutal-gold);
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.btn-footer-fb {
    background-color: transparent;
    border: 1px solid var(--brutal-red);
    color: var(--brutal-red);
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}

.btn-footer-fb:hover {
    background-color: var(--brutal-red);
    color: white;
}

.btn-footer-mail {
    background-color: transparent;
    border: 1px solid var(--brutal-gold);
    color: var(--brutal-gold);
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}

.btn-footer-mail:hover {
    background-color: var(--brutal-gold);
    color: #121212;
}

.footer-copy {
    font-size: 0.7rem;
    margin-top: 1rem;
    color: #777;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .brutal-h2 {
        font-size: 1.5rem;
    }
    .brutal-card-body {
        padding: 1.5rem;
    }
    .brutal-connect {
        padding: 1.5rem;
    }
    .section-brutal {
        padding: 3rem 0;
    }
    .brutal-card-full .row {
        flex-direction: column;
    }
    .brutal-img-full-wrapper {
        min-height: 220px;
    }
}

@media (min-width: 992px) {
    .navbar-nav {
        gap: 0.8rem;
    }
    .nav-link {
        font-size: 0.8rem;
    }
}

::-moz-selection {
    background: var(--brutal-red);
    color: white;
}

::selection {
    background: var(--brutal-red);
    color: white;
}