:root {
    --brand-black: #0a0a0a;
    --brand-dark: #171717;
    --brand-red: #dc2626;
    --brand-redhover: #b91c1c;
    --brand-light: #f5f5f5;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;
    /* System font stack instead of Google Fonts */
    --font-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-heading: 'Arial Black', Impact, sans-serif; 
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    background-color: var(--brand-black);
    color: var(--brand-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Utilities */
.container {
    max-width: 80rem; /* 1280px */
    margin: 0 auto;
    padding: 0 1rem;
}
.text-brand-red { color: var(--brand-red); }

/* SVG Icons (Inline replacements for Lucide) */
svg { width: 1.5rem; height: 1.5rem; }
.icon-sm { width: 1rem; height: 1rem; }

/* Typography Reset */
h1, h2, h3 { margin: 0; }
p { margin: 0; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    padding: 1rem 0;
}
.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}
.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
    box-shadow: 0 0 15px rgba(220,38,38,0.5);
}
.logo-icon svg { color: white; width: 1.5rem; height: 1.5rem; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
}

.desktop-menu { display: none; }
@media (min-width: 768px) {
    .desktop-menu { display: flex; gap: 2rem; align-items: center; }
}
.nav-link {
    background: none;
    border: none;
    color: var(--text-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}
.nav-link:hover { color: white; }
.btn-primary {
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 0.125rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(220,38,38,0.2);
}
.btn-primary:hover {
    background-color: var(--brand-redhover);
    box-shadow: 0 10px 15px -3px rgba(220,38,38,0.4);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-gray-300);
    cursor: pointer;
    padding: 0.5rem;
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--brand-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.mobile-menu.active { display: block; }
@media (min-width: 768px) { .mobile-menu.active { display: none; } }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 1.5rem;
    gap: 1rem;
}
.mobile-link {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: left;
    color: var(--text-gray-300);
    padding-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}
.mobile-link.highlight { color: var(--brand-red); border-bottom: none; margin-top: 0.5rem; }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    animation: pulse 10s ease-in-out infinite alternate;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--brand-black), rgba(10,10,10,0.7), var(--brand-black));
}
@keyframes pulse {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin-top: 5rem;
}
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220,38,38,0.5);
    background-color: rgba(220,38,38,0.1);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}
@media (min-width: 768px) { .hero-badge { font-size: 0.875rem; } }
.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: white;
}
@media (min-width: 480px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title span {
    background: linear-gradient(to right, white, #d1d5db, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    color: var(--text-gray-400);
    max-width: 48rem;
    line-height: 1.625;
    font-weight: 300;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
.btn-large {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0.125rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.btn-hero-primary {
    background-color: var(--brand-red);
    color: white;
    box-shadow: 0 0 20px rgba(220,38,38,0.4);
}
.btn-hero-primary:hover { background-color: var(--brand-redhover); }
.btn-hero-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
    border-color: white;
    background-color: rgba(255,255,255,0.05);
}
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    animation: bounce 2s infinite;
    color: white;
}
.scroll-indicator:hover { opacity: 1; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Banner */
.banner {
    background: linear-gradient(to right, var(--brand-redhover), var(--brand-red), var(--brand-redhover));
    padding: 1.25rem 0;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
    border-top: 1px solid #7f1d1d;
    border-bottom: 1px solid #7f1d1d;
    overflow: hidden;
}
.banner-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: white;
}
@media (min-width: 768px) { .banner-inner { gap: 4rem; font-size: 0.875rem; } }
.banner-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));
}

/* Sections General */
.section {
    padding: 6rem 0;
    position: relative;
}
.bg-black { background-color: var(--brand-black); }
.bg-dark {
    background-color: var(--brand-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.section-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.section-tag-line { height: 2px; width: 3rem; background-color: var(--brand-red); }
.section-tag-text {
    color: var(--brand-red);
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-desc {
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.625;
    font-weight: 300;
}

/* About Section */
.about-bg-grid {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0wIDM5LjVoNDBNMzkuNSAwdi00MCIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIiBzdHJva2Utd2lkdGg9IjEiLz48L3N2Zz4=');
    opacity: 0.5;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-container {
    order: 2;
    position: relative;
}
@media (min-width: 1024px) { .about-img-container { order: 1; } }
.about-img-border1 {
    position: absolute;
    top: -1rem; right: -1rem; bottom: -1rem; left: -1rem;
    border: 1px solid rgba(220,38,38,0.3);
    transform: translate(1rem, 1rem);
    border-radius: 0.125rem;
    transition: transform 0.5s;
}
.about-img-container:hover .about-img-border1 { transform: translate(0.5rem, 0.5rem); }
.about-img-border2 {
    position: absolute;
    top: -1rem; right: -1rem; bottom: -1rem; left: -1rem;
    border: 1px solid rgba(255,255,255,0.1);
    transform: translate(-0.5rem, -0.5rem);
    border-radius: 0.125rem;
}
.about-img {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0.125rem;
    filter: grayscale(100%);
    transition: filter 0.7s;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.about-img-container:hover .about-img { filter: grayscale(0%); }
.about-content { order: 1; }
@media (min-width: 1024px) { .about-content { order: 2; } }
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    background-color: rgba(23,23,23,0.5);
    padding: 1.5rem;
    border-radius: 0.125rem;
    border: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
.stat-item {
    border-left: 2px solid var(--brand-red);
    padding-left: 1rem;
}
.stat-number {
    color: white;
    font-weight: bold;
    font-size: 2.25rem;
    font-family: var(--font-heading);
    margin: 0 0 0.25rem 0;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Portfolio Section */
.portfolio-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .portfolio-header { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.125rem;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.portfolio-card.wide { aspect-ratio: 4/5; }
@media (min-width: 768px) { .portfolio-card.wide { grid-column: span 2; } }
@media (min-width: 1024px) { .portfolio-card.wide { grid-column: span 3; aspect-ratio: 21/9; } }

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s, filter 1s;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.1); }
.portfolio-card .grayscale { filter: grayscale(100%); }
.portfolio-card:hover .grayscale { filter: grayscale(0%); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--brand-black), rgba(10,10,10,0.5), transparent);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.portfolio-border {
    position: absolute;
    inset: 0;
    border: 6px solid transparent;
    transition: all 0.5s;
    z-index: 20;
}
.portfolio-card:hover .portfolio-border { border-color: rgba(220,38,38,0.1); }

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    transform: translateY(1rem);
    transition: transform 0.5s;
    z-index: 30;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 1024px) { .portfolio-card.wide .portfolio-info { width: 66.666%; padding: 3rem; } }
.portfolio-card:hover .portfolio-info { transform: translateY(0); }

.portfolio-tag {
    color: var(--brand-red);
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07));
}
.portfolio-card-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    color: white;
    margin: 0 0 0.75rem 0;
}
@media (min-width: 1024px) { .portfolio-card.wide .portfolio-card-title { font-size: 2.25rem; margin-bottom: 1rem; } }

.portfolio-card-desc {
    color: var(--text-gray-300);
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.5s 0.1s;
    font-weight: 300;
    line-height: 1.625;
    margin: 0;
}
@media (min-width: 1024px) { .portfolio-card.wide .portfolio-card-desc { font-size: 1rem; } }
.portfolio-card:hover .portfolio-card-desc { opacity: 1; }

/* Contact Section */
.contact-glow {
    position: absolute;
    right: -10%;
    top: -10%;
    width: 600px;
    height: 600px;
    background-color: rgba(220,38,38,0.1);
    filter: blur(150px);
    border-radius: 50%;
    pointer-events: none;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-gray-300);
}
.contact-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
    color: var(--brand-red);
}
.contact-item:hover .contact-icon-wrapper { border-color: rgba(220,38,38,0.5); }
.contact-item-label {
    font-size: 0.75rem;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.25rem 0;
}
.contact-item-value {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin: 0;
}

/* Form */
.form-card {
    background-color: var(--brand-dark);
    padding: 2rem;
    border-radius: 0.125rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }

.form-corner {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 4rem;
    height: 4rem;
    border-top: 2px solid rgba(220,38,38,0.3);
    border-right: 2px solid rgba(220,38,38,0.3);
}
.form-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: bold;
    color: white;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group { margin-bottom: 1.5rem; }
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray-400);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    box-sizing: border-box;
    background-color: var(--brand-black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.125rem;
    padding: 0.875rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 1px var(--brand-red);
}
select.form-control {
    appearance: none;
    cursor: pointer;
}
.btn-submit {
    width: 100%;
    background-color: var(--brand-red);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.125rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(220,38,38,0.3);
}
.btn-submit:hover {
    background-color: var(--brand-redhover);
    box-shadow: 0 0 25px rgba(220,38,38,0.5);
}

/* Footer */
.footer {
    background-color: black;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-gray-500);
    font-weight: 300;
}
.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--brand-red); }
.footer-copy {
    color: var(--text-gray-500);
    font-size: 0.875rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}