:root {
    --bg: #1a1a1a;
    --darker: #111111;
    --ink-blue: #2c3e50;
    --white: #e0e0e0;
    --accent: #555555;
    
    --font-hand: 'Permanent Marker', cursive;
    --font-old: 'UnifrakturMaguntia', cursive;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.ink-header {
    padding: 30px 0;
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-hand); font-size: 1.8rem; letter-spacing: 2px; }
.point { color: var(--accent); }

.menu-btn {
    background: none; border: 1px solid var(--white); color: var(--white);
    padding: 5px 15px; font-family: var(--font-body); font-weight: bold; cursor: pointer;
}

/* Nav Overlay */
.full-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--darker); z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    transform: translateY(-100%); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.full-nav.open { transform: translateY(0); }
.close-nav { position: absolute; top: 30px; right: 5%; font-size: 2rem; background: none; border: none; color: var(--white); cursor: pointer; }
.full-nav ul { list-style: none; text-align: center; }
.full-nav a { font-family: var(--font-hand); font-size: 4rem; display: block; margin: 10px 0; }
.full-nav a:hover { color: var(--accent); transform: skewX(-5deg); }

/* Hero */
.hero-ink {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://images.pexels.com/photos/1045158/pexels-photo-1045158.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover; background-position: center; filter: grayscale(100%) brightness(0.4);
}
.hero-content { position: relative; z-index: 10; }
.fraktur { font-family: var(--font-old); font-size: 6rem; line-height: 1; }
.marker { font-family: var(--font-hand); color: var(--accent); }
.center { text-align: center; }

.btn-rough {
    display: inline-block; margin-top: 30px; padding: 15px 40px;
    background: transparent; border: 2px solid var(--white);
    font-family: var(--font-hand); font-size: 1.5rem; color: var(--white);
    clip-path: polygon(2% 0%, 100% 5%, 95% 100%, 0% 90%);
}
.btn-rough:hover { background: var(--white); color: var(--bg); }

/* Zig-Zag */
.section-padding { padding: 100px 0; }
.top-space { padding-top: 150px; }
.zigzag { display: flex; flex-direction: column; gap: 100px; }
.zig-item { display: flex; gap: 50px; align-items: center; }
.zig-item.reverse { flex-direction: row-reverse; }
.zig-img { flex: 1; filter: grayscale(100%); transition: 0.5s; }
.zig-img:hover { filter: grayscale(0%); }
.zig-img img { width: 100%; border: 1px solid #333; }
.zig-text { flex: 1; }
.zig-text h2 { font-size: 3rem; margin-bottom: 20px; }

/* Artists */
.artist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 50px; }
.artist-card img { width: 100%; filter: grayscale(100%); border: 1px solid #333; }
.artist-info { margin-top: 20px; text-align: center; }

/* Reviews */
.review-wall { display: flex; flex-direction: column; gap: 40px; max-width: 800px; margin: 50px auto 0; }
.ink-quote { padding: 40px; border: 1px solid #333; background: #222; position: relative; }
.ink-quote p { font-style: italic; font-size: 1.2rem; margin-bottom: 20px; }

/* Contact Form */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.grunge-form { display: flex; flex-direction: column; gap: 20px; }
.grunge-form input, .grunge-form select, .grunge-form textarea {
    background: #222; border: 1px solid #444; color: var(--white);
    padding: 15px; font-family: var(--font-body);
}
.grunge-form input:focus { border-color: var(--white); outline: none; }

/* Legal */
.legal-grunge { max-width: 800px; margin: 0 auto; }
.line { width: 100px; height: 3px; background: var(--accent); margin: 20px 0 40px; }

/* Footer */
.ink-footer { padding: 80px 0 40px; border-top: 1px solid #333; background: var(--darker); }
.footer-grid { display: flex; justify-content: space-between; margin-bottom: 40px; }
.copy { font-size: 0.8rem; color: #555; text-align: center; }

@media (max-width: 900px) {
    .zig-item, .zig-item.reverse, .artist-grid, .contact-split { flex-direction: column; grid-template-columns: 1fr; }
    .fraktur { font-size: 3.5rem; }
    .full-nav a { font-size: 2.5rem; }
}