:root {
    --bg-color: #0a0a0a;
    --surface-color: #141414;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-red: #c92a2a;
    /* Crimson Red from logo */
    --accent-cream: #f5e6d3;
    /* Cream from logo background */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Header */
.site-header {
    padding: 2.5rem 0;
    /* Increased padding for larger logo */
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 72px;
    /* Increased by 20% from 60px */
    /* Attempt to blend the cream background logo into the dark theme */
    /* This is a hack, ideally we'd use a transparent PNG */
    /* mix-blend-mode: screen; This would make black text invisible */
    /* Instead, let's just give it a slight border radius or keep it raw */
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    /* Deep shadow for lift */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle edge definition */
}

.logo-img:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.main-nav a:hover {
    color: var(--text-primary);
}

.btn-nav {
    border: 1px solid var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 0;
}

.btn-nav:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .line {
    display: block;
}

.highlight-red {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    border-left: 2px solid var(--accent-red);
    padding-left: 1.5rem;
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--surface-color);
}

.card {
    padding: 2rem;
    border: 1px solid #333;
    transition: var(--transition);
    background: var(--bg-color);
}

.card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more .arrow {
    transition: transform 0.3s ease;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* Philosophy */
.philosophy {
    padding: 8rem 0;
}

.placeholder-image {
    width: 100%;
    height: 500px;
    background: #222;
    background-image: linear-gradient(45deg, #222 25%, #2a2a2a 25%, #2a2a2a 50%, #222 50%, #222 75%, #2a2a2a 75%, #2a2a2a 100%);
    background-size: 20px 20px;
}

.text-side h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-bottom: 2rem;
}

.text-side p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Contact */
.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--bg-color), #000);
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.btn-large {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.btn-large:hover {
    background: #a01e1e;
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    padding: 2rem 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
}