* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff8e9;
    color: #171717;
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, .88),
        rgba(0, 0, 0, .68)
    ),
    url("logo-qg.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    color: white;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 6vw;
    background: rgba(0, 0, 0, .42);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 5;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 900;
    font-size: 22px;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f6b300;
}

.navlinks {
    display: flex;
    gap: 22px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.navlinks a:hover {
    color: #f6b300;
}

.hero-content {
    max-width: 860px;
    margin: auto;
    padding: 80px 6vw;
}

.badge,
.section-kicker {
    display: inline-block;
    background: #f6b300;
    color: #111;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
}

h1 {
    font-size: clamp(42px, 7vw, 82px);
    line-height: .95;
    margin: 22px 0 18px;
    font-weight: 1000;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin: 10px 0 18px;
}

h3 {
    font-size: 22px;
    margin: 0 0 12px;
}

.lead {
    font-size: 21px;
    line-height: 1.45;
    max-width: 720px;
    color: #f5f5f5;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 900;
}

.primary {
    background: #f6b300;
    color: #111;
}

.secondary {
    border: 2px solid #f6b300;
    color: white;
}

.section {
    padding: 76px 6vw;
    max-width: 1180px;
    margin: auto;
}

.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.intro p:last-child {
    font-size: 20px;
    line-height: 1.55;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding-top: 20px;
}

.card {
    background: white;
    border: 1px solid #f2dfb2;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.card span {
    font-size: 42px;
}

.card p {
    line-height: 1.5;
    color: #555;
}

.menu {
    background: #111;
    color: white;
    max-width: none;
}

.menu>* {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 26px;
}

.menu-grid div {
    background: #1d1d1d;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 28px;
}

.menu ul {
    margin: 0;
    padding-left: 18px;
    line-height: 2;
}

.note {
    margin-top: 22px;
    color: #8a6a25;
    font-weight: 700;
}

.menu .note {
    color: #ffd46b;
}

.hours-table {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #ead49d;
}

.hours-table div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid #f0e2bd;
}

.hours-table div:last-child {
    border-bottom: 0;
}

.hours-table strong {
    min-width: 120px;
}

.split {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
}

.highlight {
    background: #f6b300;
    border-radius: 22px;
    padding: 32px;
    color: #111;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.highlight p,
.split p {
    line-height: 1.6;
    font-size: 18px;
}

.contact {
    text-align: center;
}

.mail {
    display: inline-block;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 1000;
    color: #111;
    background: #f6b300;
    padding: 16px 24px;
    border-radius: 16px;
    margin: 18px 0;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.socials span {
    background: white;
    border: 1px solid #ead49d;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
}

footer {
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 6vw;
    flex-wrap: wrap;
}

footer strong {
    color: #f6b300;
}

.footer-left a {
    color: #f6b300;
}

.footer-left a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-links img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 820px) {

    .nav {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }

    .navlinks {
        gap: 12px;
        flex-wrap: wrap;
        font-size: 12px;
    }

    .hero-content {
        padding: 60px 6vw;
    }

    .intro,
    .cards,
    .menu-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .hours-table div {
        flex-direction: column;
    }

    .mail {
        font-size: 22px;
        width: 100%;
        overflow-wrap: anywhere;
    }

    .brand span {
        font-size: 18px;
    }
}

.opening-banner {
    background: #f6b300;
    color: #111;
    padding: 16px 6vw;
    text-align: center;
    font-weight: 700;
}

.opening-banner strong {
    text-transform: uppercase;
    margin-right: 10px;
}

.opening-banner span {
    font-weight: 500;
}