:root {
    --black: #050403;
    --black2: #0b0807;
    --paper: #d7c29c;
    --paper-dark: #9d805b;
    --cream: #ead8b8;
    --muted: #b7a384;
    --red: #c51f18;
    --red-dark: #6e110d;
    --blue: #0d2d4f;
    --shadow: rgba(0,0,0,0.75);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background:
        radial-gradient(circle at 65% 10%, rgba(13,45,79,0.5), transparent 28%),
        radial-gradient(circle at 20% 10%, rgba(197,31,24,0.22), transparent 26%),
        linear-gradient(180deg, #050403 0%, #090604 50%, #030202 100%);
    color: var(--cream);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.5;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.75) 100%);
}

.site-header {
    width: min(1250px, 92%);
    margin: 0 auto;
    padding: 26px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(215,194,156,0.22);
}

.logo {
    font-family: "Creepster", cursive;
    color: var(--red);
    font-size: 46px;
    letter-spacing: 2px;
    text-shadow:
        3px 3px 0 #240606,
        0 0 18px rgba(197,31,24,0.45);
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--red);
}

.hero {
    width: min(1250px, 92%);
    margin: 45px auto 75px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    min-height: 620px;
}

.tagline {
    font-family: "Special Elite", monospace;
    color: var(--cream);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Creepster", cursive;
    color: var(--red);
    font-size: clamp(80px, 13vw, 165px);
    line-height: 0.78;
    letter-spacing: 3px;
    text-shadow:
        5px 5px 0 #240606,
        0 0 24px rgba(197,31,24,0.32);
    margin-bottom: 30px;
}

.hero h3 {
    font-family: "Special Elite", monospace;
    font-size: 34px;
    color: var(--cream);
    transform: rotate(-4deg);
    margin-bottom: 28px;
}

.hero p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.buttons {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 16px 28px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    box-shadow: 0 12px 25px var(--shadow);
}

.btn.red {
    background: var(--red);
    color: #fff3dc;
}

.btn.paper {
    background: var(--paper);
    color: #1a0f08;
}

.hero-photo {
    position: relative;
    padding: 18px;
    background: #17100b;
    border: 1px solid rgba(215,194,156,0.25);
    box-shadow: 0 30px 90px rgba(0,0,0,0.7);
    transform: rotate(1deg);
}

.photo-placeholder {
    min-height: 520px;
    background:
        radial-gradient(circle at 65% 25%, rgba(255,255,255,0.16), transparent 18%),
        radial-gradient(circle at 55% 35%, rgba(13,45,79,0.45), transparent 34%),
        linear-gradient(135deg, #1b120d, #050403);
    border: 2px solid rgba(215,194,156,0.32);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder span {
    font-family: "Special Elite", monospace;
    color: rgba(234,216,184,0.55);
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
}

.tape {
    position: absolute;
    width: 120px;
    height: 34px;
    background: rgba(211, 184, 128, 0.65);
    z-index: 3;
    box-shadow: 0 4px 8px rgba(0,0,0,0.35);
}

.tape-one {
    left: 45px;
    top: 0;
    transform: rotate(-5deg);
}

.tape-two {
    right: 45px;
    bottom: 0;
    transform: rotate(-6deg);
}

.stamp {
    position: absolute;
    right: 42px;
    bottom: 50px;
    font-family: "Special Elite", monospace;
    color: rgba(197,31,24,0.65);
    border: 3px solid rgba(197,31,24,0.45);
    padding: 14px 20px;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    transform: rotate(-5deg);
}

.process-section,
.section,
.bottom-area {
    width: min(1250px, 92%);
    margin: 0 auto 75px;
    position: relative;
    z-index: 2;
    border-top: 2px solid rgba(215,194,156,0.28);
    padding-top: 34px;
}

h2 {
    font-family: "Creepster", cursive;
    color: var(--red);
    font-size: clamp(44px, 7vw, 76px);
    letter-spacing: 2px;
    text-shadow: 3px 3px 0 #240606;
    margin-bottom: 24px;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.process-card {
    position: relative;
    text-align: center;
}

.process-card span {
    position: absolute;
    left: 0;
    top: 10px;
    background: var(--red);
    color: #fff3dc;
    padding: 8px 12px;
    font-weight: 900;
    z-index: 3;
}

.mini-photo {
    height: 145px;
    background:
        linear-gradient(135deg, rgba(215,194,156,0.22), rgba(0,0,0,0.3)),
        #130d0a;
    border: 4px solid var(--paper);
    box-shadow: 0 12px 28px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(234,216,184,0.45);
    font-family: "Special Elite", monospace;
    margin-bottom: 18px;
}

.process-card h3 {
    font-family: "Special Elite", monospace;
    color: var(--cream);
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.small-btn {
    background: var(--paper);
    color: #1a0f08;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.project-card {
    background: #0d0907;
    border: 4px solid var(--paper-dark);
    padding: 10px;
    box-shadow: 0 18px 45px var(--shadow);
    transition: 0.25s ease;
}

.project-card:hover {
    transform: translateY(-7px) rotate(-1deg);
}

.project-photo {
    height: 220px;
    background:
        radial-gradient(circle, rgba(13,45,79,0.35), transparent 45%),
        linear-gradient(135deg, rgba(197,31,24,0.18), rgba(0,0,0,0.2)),
        #130d0a;
    border: 1px solid rgba(215,194,156,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(234,216,184,0.45);
    font-family: "Special Elite", monospace;
}

.project-card h3 {
    font-family: "Creepster", cursive;
    color: var(--red);
    font-size: 34px;
    text-align: center;
    margin: 12px 0;
}

.project-card a {
    display: block;
    background: var(--paper);
    color: #1a0f08;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.gallery-strip div {
    height: 120px;
    background:
        linear-gradient(135deg, rgba(215,194,156,0.18), rgba(13,45,79,0.18)),
        #120c09;
    border: 3px solid rgba(215,194,156,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(234,216,184,0.45);
    font-family: "Special Elite", monospace;
}

.bottom-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.quote-note,
.rules-box {
    background: var(--paper);
    color: #150d08;
    padding: 28px;
    box-shadow: 0 18px 45px var(--shadow);
    transform: rotate(-2deg);
}

.quote-note p {
    font-family: "Special Elite", monospace;
    font-size: 21px;
    line-height: 1.5;
}

.center-brand {
    text-align: center;
}

.center-brand p {
    color: var(--muted);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
}

.rules-box {
    transform: rotate(1.5deg);
    border: 4px double var(--red-dark);
}

.rules-box h3 {
    font-family: "Creepster", cursive;
    color: var(--red);
    font-size: 42px;
    text-align: center;
    margin-bottom: 14px;
}

.rules-box ul {
    list-style: none;
}

.rules-box li {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 14px;
}

footer {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--muted);
    padding: 35px 20px;
    border-top: 1px solid rgba(215,194,156,0.2);
}

@media (max-width: 950px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .process-line,
    .project-grid,
    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
    }

    .photo-placeholder {
        min-height: 360px;
    }

    .stamp {
        font-size: 18px;
    }
}