:root {

    --red: #d93625;
    --red-dark: #a92419;
    --black: #151312;
    --cream: #f2e9d9;
    --paper: #fbf7ef;
    --yellow: #f2b544;
    --muted: #746c62;

    --display: "Bebas Neue", Impact, sans-serif;
    --sans: "DM Sans", Arial, sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--paper);

    color: var(--black);

    font-family: var(--sans);

    line-height: 1.5;
}


a {
    color: inherit;
    text-decoration: none;
}


/* HEADER */

.header {

    position: absolute;

    z-index: 20;

    top: 0;
    left: 0;
    right: 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 5vw;

    color: white;
}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;

    font-family: var(--display);

    font-size: 24px;

    letter-spacing: .04em;
}


.logo span {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: 2px solid currentColor;

    border-radius: 50%;

    font-family: var(--sans);

    font-size: 11px;

    font-weight: 700;
}


nav {

    display: flex;

    align-items: center;

    gap: 28px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


nav a:hover {
    opacity: .65;
}


.order-button {

    padding: 12px 20px;

    border-radius: 3px;

    background: var(--red);

    color: white;
}


.menu-button {

    display: none;

    border: none;

    background: none;

    color: white;

    font-size: 25px;

    cursor: pointer;
}


/* HERO */

.hero {

    position: relative;

    min-height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

    background:

        radial-gradient(
            circle at 72% 38%,
            #d77a51,
            #923b2d 34%,
            #431d18 68%,
            #170f0d 100%
        );
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15,10,8,.85),
            rgba(15,10,8,.1)
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    padding: 110px 5vw 80px;

    max-width: 850px;
}


.location-tag {

    display: inline-block;

    padding: 8px 12px;

    border: 1px solid rgba(255,255,255,.3);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .13em;
}


.hero h1 {

    margin: 25px 0 20px;

    font-family: var(--display);

    font-size: clamp(80px, 13vw, 170px);

    line-height: .78;

    letter-spacing: -.02em;
}


.hero h1 span {

    color: var(--yellow);
}


.hero-content > p {

    max-width: 500px;

    color: #e7dcd5;

    font-size: 16px;
}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 32px;
}


.button {

    display: inline-block;

    padding: 14px 22px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.button.red {

    background: var(--red);

    color: white;
}


.button.dark {

    background: var(--black);

    color: white;
}


.button.light {

    background: white;

    color: var(--black);
}


.button.outline {

    border: 1px solid rgba(255,255,255,.5);

    color: white;
}


.hero-bottom {

    position: absolute;

    z-index: 3;

    right: 5vw;

    bottom: 35px;

    left: 5vw;

    display: flex;

    justify-content: space-between;

    color: #c9bbb3;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;
}


/* QUICK BAR */

.quick-bar {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    background: var(--yellow);
}


.quick-bar div {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 30px;

    border-right: 1px solid rgba(0,0,0,.12);
}


.quick-bar div:last-child {
    border-right: none;
}


.quick-bar strong {

    font-family: var(--display);

    font-size: 27px;
}


.quick-bar span {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;
}


/* ABOUT */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 680px;
}


.about-image {

    position: relative;

    display: grid;

    place-items: center;

    background:

        radial-gradient(
            circle at 50% 35%,
            #e0a16e,
            #ad5739 45%,
            #4c211b 100%
        );

    color: rgba(255,255,255,.65);
}


.about-image > span {

    font-family: var(--display);

    font-size: 130px;

    letter-spacing: .04em;
}


.stamp {

    position: absolute;

    top: 50px;

    left: 50px;

    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    border: 2px solid rgba(255,255,255,.5);

    border-radius: 50%;

    text-align: center;

    font-family: var(--display);

    font-size: 18px;

    line-height: .9;
}


.about-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px 9vw;

    background: var(--cream);
}


.eyebrow {

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;
}


.about h2,
.menu-heading h2,
.special h2,
.visit h2 {

    margin: 18px 0 25px;

    font-family: var(--display);

    font-size: clamp(60px, 7vw, 100px);

    line-height: .82;

    letter-spacing: .01em;
}


.about h2 span,
.special h2 span,
.visit h2 span {

    color: var(--red);
}


.about-content p {

    max-width: 520px;

    margin-bottom: 15px;

    color: var(--muted);

    font-size: 16px;
}


.text-link {

    display: inline-block;

    margin-top: 12px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.text-link:hover {
    text-decoration: underline;
}


/* MENU */

.menu-section {

    padding: 120px 8vw;

    background: var(--black);

    color: white;
}


.menu-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;

    margin-bottom: 50px;
}


.menu-heading h2 {

    margin-bottom: 0;

    color: white;
}


.menu-heading p {

    max-width: 380px;

    color: #a99f98;

    font-size: 14px;
}


.menu-tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 35px;
}


.tab {

    padding: 11px 18px;

    border: 1px solid #443e3b;

    background: transparent;

    color: #c7bdb6;

    font-family: inherit;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

    cursor: pointer;
}


.tab.active {

    border-color: var(--red);

    background: var(--red);

    color: white;
}


.menu-panel {
    display: none;
}


.menu-panel.active {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 60px;
}


.pizza-card {

    display: grid;

    grid-template-columns: 45px 1fr auto;

    gap: 15px;

    padding: 25px 0;

    border-top: 1px solid #393432;
}


.pizza-card.featured {

    border-top-color: var(--red);
}


.pizza-number {

    color: #746b65;

    font-family: var(--display);

    font-size: 25px;
}


.pizza-card h3 {

    font-family: var(--display);

    font-size: 28px;

    font-weight: 400;

    letter-spacing: .02em;
}


.pizza-card p {

    max-width: 400px;

    margin-top: 4px;

    color: #948a84;

    font-size: 12px;
}


.pizza-card strong {

    color: var(--yellow);

    font-family: var(--display);

    font-size: 23px;

    font-weight: 400;
}


.menu-note {

    margin-top: 35px;

    color: #625a56;

    font-size: 9px;
}


/* STATEMENT */

.statement {

    min-height: 65vh;

    display: grid;

    place-items: center;

    text-align: center;

    color: white;

    background:

        radial-gradient(
            circle at 50% 35%,
            #d4764e,
            #8e352a 45%,
            #351714 100%
        );
}


.statement span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .3em;
}


.statement h2 {

    margin: 20px 0;

    font-family: var(--display);

    font-size: clamp(100px, 16vw, 200px);

    line-height: .7;
}


.statement h2 em {

    font-family: var(--display);

    color: var(--yellow);

    font-style: normal;
}


.statement p {

    color: #e3cec5;

    font-size: 15px;
}


/* SPECIAL */

.special {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;
}


.special-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px 9vw;

    background: var(--yellow);
}


.special h2 {

    margin-bottom: 25px;
}


.special-content p {

    max-width: 450px;

    margin-bottom: 25px;

    color: #59472a;

    font-size: 16px;
}


.special-image {

    display: grid;

    place-items: center;

    background:

        radial-gradient(
            circle at 45% 40%,
            #d98b59,
            #913b2d 45%,
            #351815 100%
        );
}


.special-label {

    width: 150px;
    height: 150px;

    display: grid;

    place-items: center;

    border: 3px solid rgba(255,255,255,.65);

    border-radius: 50%;

    color: white;

    font-family: var(--display);

    font-size: 32px;

    line-height: .8;

    text-align: center;

    transform: rotate(-8deg);
}


/* REVIEWS */

.reviews {

    padding: 120px 8vw;

    background: var(--paper);
}


.review-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 55px;
}


.review-grid article {

    padding: 35px 30px;

    border: 1px solid var(--line);
}


.stars {

    color: var(--red);

    letter-spacing: .1em;
}


.review-grid blockquote {

    margin: 25px 0;

    font-family: var(--display);

    font-size: 29px;

    line-height: .95;
}


.review-grid p {

    color: var(--muted);

    font-size: 10px;
}


/* VISIT */

.visit {

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 650px;
}


.visit-content {

    padding: 100px 9vw;

    background: var(--cream);
}


.visit h2 {

    margin-bottom: 45px;
}


.details {

    display: grid;

    gap: 25px;
}


.details div {

    padding-bottom: 20px;

    border-bottom: 1px solid #d8cdbd;
}


.details strong {

    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: .15em;
}


.details p {

    font-size: 14px;
}


.visit-buttons {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 30px;
}


.map {

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background: #8c8b82;

    color: rgba(255,255,255,.7);

    font-size: 10px;

    letter-spacing: .2em;
}


.map-grid {

    position: absolute;

    inset: -20%;

    transform: rotate(-12deg);

    background:

        repeating-linear-gradient(
            90deg,
            transparent 0 70px,
            rgba(255,255,255,.3) 70px 73px
        ),

        repeating-linear-gradient(
            0deg,
            transparent 0 55px,
            rgba(255,255,255,.25) 55px 58px
        );
}


.map-pin {

    position: relative;

    z-index: 2;

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--red);

    font-size: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}


/* FINAL CTA */

.final-cta {

    padding: 130px 8vw;

    text-align: center;

    background: var(--red);

    color: white;
}


.pizza-symbol {

    margin-bottom: 15px;

    font-size: 45px;
}


.final-cta h2 {

    font-family: var(--display);

    font-size: clamp(80px, 13vw, 170px);

    line-height: .75;
}


.final-cta p {

    margin: 25px 0 30px;

    color: #f3d8d2;
}


/* FOOTER */

footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 30px 5vw;

    background: #0e0c0b;

    color: #847b76;

    font-size: 9px;
}


footer .logo {
    color: white;
}


.footer-links {

    display: flex;

    gap: 20px;
}


.footer-links a:hover {
    color: white;
}


/* MOBILE */

@media (max-width: 850px) {

    .header {
        padding: 20px 6vw;
    }


    .menu-button {
        display: block;
    }


    nav {

        display: none;

        position: absolute;

        top: 75px;

        left: 5vw;

        right: 5vw;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: rgba(25,16,13,.98);
    }


    nav.open {
        display: flex;
    }


    nav a {
        padding: 14px;
    }


    .order-button {
        text-align: center;
    }


    .hero {

        min-height: 88vh;
    }


    .hero-content {

        padding: 110px 6vw 70px;
    }


    .hero h1 {

        font-size: clamp(75px, 21vw, 125px);
    }


    .hero-buttons {

        flex-wrap: wrap;
    }


    .hero-bottom {
        display: none;
    }


    .quick-bar {

        grid-template-columns: 1fr 1fr;
    }


    .quick-bar div:nth-child(2) {
        border-right: none;
    }


    .about,
    .special,
    .visit {

        grid-template-columns: 1fr;
    }


    .about-image,
    .special-image,
    .map {

        min-height: 450px;
    }


    .about-content,
    .special-content,
    .visit-content {

        padding: 80px 6vw;
    }


    .about-image > span {

        font-size: 80px;
    }


    .menu-section,
    .reviews,
    .final-cta,
    .statement {

        padding: 80px 6vw;
    }


    .menu-heading {

        flex-direction: column;

        align-items: flex-start;
    }


    .menu-panel.active {

        grid-template-columns: 1fr;
    }


    .review-grid {

        grid-template-columns: 1fr;
    }


    footer {

        flex-direction: column;

        align-items: flex-start;
    }

}