:root {
    --p: #333;
    --b: #000;
    --bg: #fff;
    --g: #eee;
    --fh: 'Courier New', monospace;
    --fb: 'Courier New', monospace
}

* {
    box-sizing: border-box
}

body {
    font-family: var(--fb);
    color: var(--p);
    line-height: 1.6;
    background-color: var(--bg);
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4 {
    font-family: var(--fh);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--b);
    display: inline-block;
    margin-bottom: 1rem
}

a {
    text-decoration: underline;
    color: var(--p)
}

ul {
    list-style: none;
    padding: 0
}

img {
    filter: grayscale(100%) contrast(50%);
    opacity: .6;
    border: 2px solid var(--b);
    display: block;
    max-width: 100%
}

header {
    position: sticky;
    top: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--b);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--p) !important;
    text-decoration: none;
    border: 2px solid var(--b);
    padding: .2rem .5rem
}

.logo span {
    color: var(--p)
}

nav ul {
    display: flex;
    gap: 2rem;
    align-items: center
}

nav ul li a {
    text-decoration: none;
    font-weight: 700;
    color: var(--p) !important
}

.cta-btn {
    background: 0 0;
    border: 2px solid var(--b);
    padding: .5rem 1rem;
    border-radius: 0;
    font-weight: 700;
    color: var(--p);
    text-transform: uppercase
}

section {
    padding: 60px 5%;
    border-bottom: 1px dashed #ccc
}

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--g)
}

.hero-bg {
    display: none
}

.hero::before {
    content: "HERO IMAGE PLACEHOLDER";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
    border: 2px dashed #999;
    z-index: 0;
    background: #f9f9f9
}

.hero-content {
    position: relative;
    z-index: 1;
    background: var(--bg);
    padding: 2rem;
    border: 2px solid var(--b);
    max-width: 800px;
    text-align: center
}

.hero-content h1 {
    font-size: 2.5rem;
    border-bottom: none;
    display: block
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem
}

.card {
    border: 2px solid var(--b);
    background: #fff;
    padding: 1rem
}

.card-img {
    height: 200px;
    background: var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #999;
    margin-bottom: 1rem
}

.card-img img {
    display: none
}

.card-img::after {
    content: "IMAGE";
    color: #777;
    font-weight: 700
}

footer {
    background: var(--g);
    padding: 40px 5%;
    border-top: 2px solid var(--b);
    color: var(--p)
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem
}

.reveal {
    opacity: 1;
    transform: none
}

.menu-hero {
    background: #ddd !important;
    height: 200px;
    border: 2px dashed #999;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center
}

.menu-hero h1 {
    color: #000;
    background: #fff;
    padding: .5rem;
    border: 2px solid #000
}

.menu-item {
    border-bottom: 1px dashed #000;
    padding: 1rem 0
}

.menu-price {
    font-weight: 700;
    font-size: 1.1rem
}

input,
select,
textarea {
    background: #fff;
    border: 2px solid var(--b);
    border-radius: 0;
    padding: .5rem;
    font-family: inherit
}

button[type=submit] {
    background: #ddd;
    border: 2px solid #000;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase
}

@media (max-width:768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer
    }

    .menu-toggle span {
        width: 30px;
        height: 3px;
        background: var(--b)
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg);
        border-left: 2px solid var(--b);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: .5s;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, .1)
    }

    nav.active {
        right: 0
    }

    nav ul {
        flex-direction: column;
        text-align: center
    }

    nav ul li a {
        font-size: 1.5rem
    }
}