@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --red: #b51f2a;
    --red-dark: #8e1821;
    --navy: #123f5b;
    --cream: #fbf6ed;
    --ink: #17222b;
    --muted: #68727a;
    --white: #fff;
    --line: #e8ded2;
    --shadow: 0 18px 55px rgba(23, 34, 43, .11);
}


/* =========================================================
   BASE
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: 'DM Sans', system-ui, sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

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


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px clamp(18px, 4vw, 56px);

    background: rgba(251, 246, 237, .95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(232, 222, 210, .8);
}

.brand img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 700;
}

.site-nav a {
    padding: 8px 0;
}

.nav-order {
    background: var(--red);
    color: #fff !important;
    padding: 11px 18px !important;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    overflow: hidden;

    background:
        radial-gradient(circle at 80% 45%,
            rgba(181, 31, 42, .10),
            transparent 32%),
        var(--cream);

    min-height: 690px;
    display: flex;
    align-items: center;
}

.hero-inner {
    width: min(1180px, 92%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;

    padding: 70px 0;
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.6rem, 7vw, 6.8rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    margin: 0;
}

.hero h1 span {
    color: var(--red);
}

.hero-text {
    max-width: 540px;
    font-size: 1.18rem;
    color: var(--navy);
    margin: 28px 0;
}

.hero-logo-wrap {
    display: flex;
    justify-content: center;
}

.hero-logo {
    width: min(520px, 90%);
    filter: drop-shadow(0 24px 30px rgba(18, 63, 91, .12));
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
    font-size: .76rem;
    letter-spacing: .2em;
    font-weight: 800;
    color: var(--red);
    margin: 0 0 14px;
}

.section h2,
.order-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.02;
    margin: 0;
}

.section h2 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    color: var(--navy);
}

.section-heading {
    max-width: 720px;
}

.section-heading>p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    width: min(1180px, 92%);
    margin: auto;
    padding: 90px 0;
}


/* =========================================================
   BUTTONS / LINKS
   ========================================================= */

.hero-actions,
.menu-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    border-radius: 999px;
    padding: 14px 23px;

    font-weight: 800;
    text-align: center;

    transition: .2s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 10px 25px rgba(181, 31, 42, .22);
}

.button-secondary {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.button-light {
    background: #fff;
    color: var(--red);
}

.text-link {
    font-weight: 800;
    color: var(--red);
}


/* =========================================================
   SAUCES
   ========================================================= */

.sauces-section {
    padding-top: 0;
    padding-bottom: 45px;
}

.sauces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;

    margin-top: 38px;
}

.specialty-card {
    background: var(--navy);
    color: var(--white);

    padding: 30px 24px;
    min-height: 130px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-radius: 4px;
    box-shadow: var(--shadow);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.specialty-card strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 700;

    margin-bottom: 8px;
}

.specialty-card span {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .72;
}

.specialty-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(23, 34, 43, .15);
}


/* =========================================================
   MRS. CLAWS WAY / FEATURES
   ========================================================= */

.about-section {
    padding-top: 45px;
    padding-bottom: 45px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;
    align-items: stretch;
}

.red-card {
    background: var(--red);
    color: #fff;

    padding: 60px;

    border-radius: 4px;
    box-shadow: var(--shadow);
}

.red-card .eyebrow {
    color: #ffd9d9;
}

.red-card h2 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-bottom: 22px;

    /* Black heading as requested */
    color: var(--ink);
}


/* FEATURES */

.about-copy>h2 {
    margin-bottom: 25px;
}

.feature-list {
    margin-top: 0;
}

.feature-list>div {
    display: grid;
    grid-template-columns: 55px 1fr;

    gap: 18px;
    padding: 22px 0;

    border-bottom: 1px solid var(--line);
}

.feature-list>div:last-child {
    border-bottom: 0;
}

.feature-list span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--red);
}

.feature-list h3 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
}


/* =========================================================
   MENU
   ========================================================= */

.menu-section {
    padding-top: 45px;
}

.menu-actions {
    margin: 26px 0 38px;
}

.menu-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-preview figure {
    margin: 0;

    background: #fff;
    padding: 8px;

    box-shadow: var(--shadow);
    border-radius: 8px;

    overflow: hidden;
}

.menu-preview img {
    width: 100%;
    height: auto;
}


/* =========================================================
   ORDER ONLINE
   ========================================================= */

.order-section {
    background: var(--red);
    color: #fff;
}

.order-inner {
    width: min(1180px, 92%);
    margin: auto;

    padding: 75px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.order-inner .eyebrow {
    color: #ffd9d9;
}

.order-inner h2 {
    font-size: clamp(3rem, 5vw, 5rem);

    /* Black heading */
    color: var(--ink);
}

.order-inner p:not(.eyebrow) {
    max-width: 650px;
    opacity: .84;
}


/* =========================================================
   VISIT / LOCATION
   ========================================================= */

.visit-section {
    padding-bottom: 120px;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
    margin-top: 40px;
}

.info-card {
    background: #fff;

    border: 1px solid var(--line);
    padding: 28px;

    border-radius: 4px;
}

.info-card>span {
    display: block;

    font-size: .68rem;
    letter-spacing: .16em;
    font-weight: 800;

    color: var(--red);

    margin-bottom: 14px;
}

.info-card>strong {
    display: block;

    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.45;

    color: var(--ink);
}

.info-card small {
    display: block;

    margin-top: 3px;

    color: var(--muted);
    font-size: .82rem;
}


/* =========================================================
   DIRECTIONS / PHONE BUTTON
   ========================================================= */

.directions-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 10px 16px;

    border-radius: 999px;

    background: var(--navy);
    color: var(--white);

    font-weight: 700;
    font-size: .85rem;

    transition: .2s ease;
}

.directions-link:hover {
    background: var(--red);
    transform: translateY(-2px);
}


/* =========================================================
   HOURS
   ========================================================= */

.hours-list {
    margin-top: 4px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 12px;
    padding: 5px 0;

    border-bottom: 1px solid var(--line);

    font-size: .78rem;
}

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

.hours-list strong {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: .78rem;
    font-weight: 700;

    color: var(--ink);
}

.hours-list span {
    color: var(--muted);

    font-size: .75rem;
    letter-spacing: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--navy);
    color: #fff;

    padding: 45px clamp(18px, 5vw, 70px);

    display: grid;
    grid-template-columns: 1fr auto;

    gap: 20px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;

    font-weight: 800;
}

.footer-brand img {
    width: 55px;
    height: 55px;
}

.footer-links {
    display: flex;
    gap: 22px;

    font-weight: 700;
}

.site-footer p {
    grid-column: 1 / -1;

    margin: 0;

    opacity: .55;
    font-size: .85rem;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    /* =====================================================
       HEADER / MOBILE NAVIGATION
       ===================================================== */

    .site-header {
        padding: 8px 18px;
    }

    .brand img {
        width: 62px;
        height: 62px;
    }

    /* Show hamburger only on mobile */
    .menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        padding: 8px;

        border: 0;
        background: transparent;
        cursor: pointer;

        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;

        background: var(--ink);
        border-radius: 3px;

        transition:
            transform 0.25s ease,
            opacity 0.2s ease,
            width 0.25s ease;
    }

    /* Hamburger → X */
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile navigation is hidden by default */
    .site-nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 12px 18px 18px;

        background: rgba(251, 246, 237, .98);
        backdrop-filter: blur(12px);

        border-bottom: 1px solid var(--line);

        box-shadow: 0 12px 30px rgba(23, 34, 43, .08);
    }

    /* JavaScript adds .open when hamburger is clicked */
    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        display: block;
        width: 100%;

        padding: 13px 4px;

        border-bottom: 1px solid var(--line);
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .site-nav .nav-order {
        margin-top: 10px;
        padding: 12px 18px !important;

        text-align: center;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .hero {
        min-height: auto;
    }

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

        text-align: center;

        padding: 55px 0 70px;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        font-size: 1.05rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-logo {
        width: min(360px, 80%);
    }


    /* =====================================================
       GENERAL SECTIONS
       ===================================================== */

    .section {
        width: min(1180px, 92%);
        padding: 65px 0;
    }


    /* =====================================================
       SAUCES
       ===================================================== */

    .sauces-section {
        padding-top: 0;
        padding-bottom: 35px;
    }

    .sauces-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .specialty-card {
        min-height: 105px;
        padding: 22px 18px;
    }

    .specialty-card strong {
        font-size: 1.25rem;
    }


    /* =====================================================
       MRS. CLAWS WAY / FEATURES
       ===================================================== */

    .about-section {
        padding-top: 35px;
        padding-bottom: 55px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .red-card {
        padding: 40px 28px;
    }


    /* =====================================================
       MENU
       ===================================================== */

    .menu-section {
        padding-top: 35px;
    }

    .menu-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .menu-preview {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       ORDER ONLINE
       ===================================================== */

    .order-inner {
        flex-direction: column;
        align-items: flex-start;

        padding: 60px 0;
    }


    /* =====================================================
       VISIT / LOCATION
       ===================================================== */

    .visit-section {
        padding-bottom: 80px;
    }

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

    .hours-list div {
        font-size: .8rem;
    }

    .hours-list strong {
        font-size: .8rem;
    }

    .hours-list span {
        font-size: .75rem;
    }


    /* =====================================================
       FOOTER
       ===================================================== */

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .site-footer p {
        grid-column: auto;
    }
}