:root {
    /* Logo red — navbar, footer, primary brand */
    --brand-red: #d32f2f;
    --brand-red-bright: #e53935;
    --brand-red-deep: #b71c1c;
    --brand-red-soft: rgba(211, 47, 47, 0.12);
    /* Logo yellow/gold — STAR lettering & accents */
    --brand-gold: #ffeb3b;
    --brand-gold-bright: #fff176;
    --brand-gold-deep: #f5c518;
    --brand-gold-soft: rgba(255, 235, 59, 0.2);
    /* Aliases for PE-style selectors (secondary = deep red) */
    --brand-green: var(--brand-red);
    --brand-green-mid: var(--brand-red-bright);
    --brand-green-deep: var(--brand-red-deep);
    --brand-green-soft: var(--brand-red-soft);
    --brand-navy: var(--brand-red);
    --brand-navy-mid: var(--brand-red-bright);
    --brand-navy-deep: var(--brand-red-deep);
    --brand-navy-soft: var(--brand-red-soft);
    --bg: #fffaf0;
    --bg-alt: #fff3d6;
    --surface: #ffffff;
    --text: #1a1208;
    --text-muted: #5c4e3a;
    --border: rgba(183, 28, 28, 0.14);
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 20px 44px rgba(183, 28, 28, 0.14);
    --shadow-soft: 0 8px 24px rgba(183, 28, 28, 0.08);
    --font-display: "Lilita One", "Arial Black", Impact, sans-serif;
    --font-script: "Pacifico", "Segoe Script", cursive;
    --font-body: "Nunito", system-ui, sans-serif;
    --max: 1120px;
    --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

#top,
section[id] {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a {
    color: var(--brand-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--brand-red-bright); }

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--brand-green);
    color: #fff;
    font-weight: 600;
}

.skip-link:focus { left: 1rem; top: 1rem; }

/* Header — logo red */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, var(--brand-red-deep) 0%, var(--brand-red) 100%);
    box-shadow: 0 8px 28px rgba(183, 28, 28, 0.35);
}

.header-inner {
    position: relative;
    z-index: 0;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}

.brand:hover { color: #fff; }

.brand img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.95);
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.08rem;
}

.brand-pizza {
    font-family: var(--font-script);
    font-size: 1.4em;
    font-weight: 400;
    color: var(--brand-gold);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.brand-star {
    font-family: var(--font-display);
    font-size: 1.05em;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.35rem;
}

.nav-links a {
    color: rgba(247, 250, 247, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.25s ease, background 0.2s ease, color 0.2s;
    font-family: inherit;
    text-decoration: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: linear-gradient(145deg, var(--brand-gold-bright) 0%, var(--brand-gold) 45%, var(--brand-gold-deep) 100%);
    color: #1a1208;
    text-shadow: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 6px 20px rgba(245, 197, 24, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(145deg, #fff59d 0%, var(--brand-gold-bright) 40%, var(--brand-gold) 100%);
    color: #1a1208;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 10px 28px rgba(245, 197, 24, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--brand-green-soft);
    border-color: rgba(26, 35, 126, 0.35);
    color: var(--brand-green-deep);
}

.btn-on-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #faf8ff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.header-call:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 1003;
}

.menu-toggle:hover { background: rgba(255, 255, 255, 0.16); }

.menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.menu-toggle-bars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 22px;
    pointer-events: none;
}

.menu-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

.site-header.is-nav-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.site-header.is-nav-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(10, 12, 40, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.site-header.is-nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    width: min(100vw - 2.5rem, 320px);
    height: 100vh;
    height: 100dvh;
    padding: calc(4.75rem + env(safe-area-inset-top, 0px)) 1.25rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    background: var(--brand-green-deep);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    pointer-events: none;
}

.site-header.is-nav-open .nav-drawer {
    transform: translateX(0);
    pointer-events: auto;
}

.nav-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nav-drawer-actions .btn,
.nav-drawer-actions .header-call {
    width: 100%;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-drawer-links a {
    color: rgba(247, 250, 247, 0.92);
    font-weight: 600;
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
}

.nav-drawer-links a:hover,
.nav-drawer-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

@media (min-width: 900px) {
    .nav-links { display: flex; }
}

@media (max-width: 767px) {
    .header-inner {
        padding: 0.55rem 0.9rem;
        padding-right: 3.75rem;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 0.9rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-actions--desktop { display: none !important; }

    .nav-backdrop,
    .nav-drawer { display: block; }

    .brand { font-size: 0.95rem; gap: 0.5rem; }
    .brand img { height: 44px; }
    .brand-name { max-width: 7.5rem; }
    .brand-pizza { font-size: 1.25em; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding: 7.5rem 1.25rem 3.75rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-zoom 18s ease-out forwards;
}

@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 42%,
            rgba(0, 0, 0, 0.12) 70%,
            rgba(0, 0, 0, 0.05) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    color: #faf8ff;
    animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    color: #fff;
}

.hero-brand .hero-pizza {
    display: block;
    font-family: var(--font-script);
    font-size: 0.95em;
    font-weight: 400;
    color: var(--brand-gold);
    letter-spacing: 0.02em;
    -webkit-text-stroke: 2.5px var(--brand-gold);
    paint-order: stroke fill;
    text-shadow:
        -2px 0 0 #1a1208,
        2px 0 0 #1a1208,
        0 -2px 0 #1a1208,
        0 2px 0 #1a1208,
        -1px -1px 0 #1a1208,
        1px -1px 0 #1a1208,
        -1px 1px 0 #1a1208,
        1px 1px 0 #1a1208,
        0 4px 0 rgba(0, 0, 0, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.02em;
}

.hero-brand .hero-star {
    display: block;
    font-family: var(--font-display);
    font-size: 1em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

.hero-brand .hero-loc {
    display: block;
    font-size: 0.38em;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
    margin-top: 0.45rem;
    font-family: var(--font-body);
    color: #fff;
}

.hero-line {
    width: 4.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-red), transparent);
    margin: 1rem 0 1.15rem;
    border-radius: 2px;
}

.hero-sub {
    max-width: 34rem;
    font-size: 1.08rem;
    color: rgba(247, 250, 247, 0.9);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 767px) {
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding-bottom: 3rem;
    }
}

/* Order strip */
.order-strip {
    background: linear-gradient(135deg, var(--brand-red-deep), var(--brand-red) 55%, var(--brand-red-bright));
    color: #fff;
    padding: 1.75rem 1.25rem;
}

.order-strip-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.order-strip h2 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.order-strip p {
    opacity: 0.92;
    max-width: 36rem;
    font-size: 0.95rem;
}

.order-strip a:not(.btn) {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.order-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.order-strip .btn-primary {
    background: #fff;
    color: var(--brand-red-deep);
    text-shadow: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.order-strip .btn-primary:hover {
    background: var(--brand-gold);
    color: #1a1208;
}

.order-strip .btn-on-dark:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sections */
.section {
    padding: 4.25rem 1.25rem;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    max-width: var(--max);
    margin: 0 auto 2.25rem;
    text-align: center;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand-green-deep);
    margin-bottom: 0.65rem;
}

.section-head .line {
    width: 3.25rem;
    height: 3px;
    margin: 0 auto 0.9rem;
    border-radius: 2px;
    background: var(--brand-red);
}

.section-head p {
    color: var(--text-muted);
    max-width: 36rem;
    margin: 0 auto;
}

/* Highlights — not card-heavy; open layout */
.highlights-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.highlight-item {
    padding: 0.25rem 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.highlight-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-item:nth-child(2) { transition-delay: 0.08s; }
.highlight-item:nth-child(3) { transition-delay: 0.16s; }

.highlight-item h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--brand-green);
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid var(--brand-red-soft);
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Menu highlights */
.menu-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

.menu-tile {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.menu-tile figure {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-alt);
}

.menu-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-tile:hover img { transform: scale(1.04); }

.menu-tile-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.menu-tile .tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 0.35rem;
}

.menu-tile h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--brand-green-deep);
    margin-bottom: 0.4rem;
}

.menu-tile p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.menu-tile-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(160deg, var(--brand-green-deep), var(--brand-green) 70%),
        var(--brand-green);
    border: none;
    color: #faf8ff;
    min-height: 100%;
}

.menu-tile-cta .tag { color: rgba(255, 255, 255, 0.75); }
.menu-tile-cta h3 { color: #fff; }
.menu-tile-cta p { color: rgba(247, 250, 247, 0.88); margin-bottom: 1rem; }
.menu-tile-cta .btn-primary { align-self: flex-start; }

/* Visit / split */
.split {
    max-width: var(--max);
    margin: 0 auto 2.5rem;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 800px) {
    .split { grid-template-columns: 1.05fr 1fr; gap: 2.75rem; }
}

.split-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-height: 280px;
}

.split-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.split-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--brand-green-deep);
    margin-bottom: 0.75rem;
}

.split-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 0 0 1.25rem;
}

.feature-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.35rem;
    color: var(--text-muted);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-red);
}

.location-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .location-inner {
        grid-template-columns: 1fr 1.15fr;
        align-items: stretch;
    }
}

.location-info {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
}

.location-info h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brand-green-deep);
    margin-bottom: 1rem;
}

.location-info address {
    font-style: normal;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.location-phone {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.location-phone a { color: var(--brand-green); }
.location-phone a:hover { color: var(--brand-red); }

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    min-height: 280px;
    background: var(--bg-alt);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

/* Review */
.review-wrap {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: #e5a100;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.review-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--brand-green-deep);
    margin-bottom: 0.5rem;
}

.review-wrap p {
    color: var(--text-muted);
    margin-bottom: 1.15rem;
}

.review-cta-image {
    display: inline-block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease;
}

.review-cta-image:hover { transform: translateY(-2px); }

.review-cta-image img {
    max-width: 100%;
    width: 360px;
    margin: 0 auto;
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + 3.5rem) 1.25rem 3rem;
    background:
        linear-gradient(135deg, rgba(183, 28, 28, 0.92), rgba(211, 47, 47, 0.85)),
        url("pictures/specialty_pizza.png") center / cover no-repeat;
    color: #fffaf0;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 235, 59, 0.18), transparent 50%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
    animation: rise-in 0.7s ease both;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.page-hero p {
    opacity: 0.92;
    margin-bottom: 1.25rem;
}

/* Menu page content shell */
.menu-page-main {
    padding: 2.5rem 1.25rem 4rem;
    max-width: var(--max);
    margin: 0 auto;
}

.menu-page-main #shared-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    overflow: auto;
}

/* Soften shared template chrome when present */
.menu-page-main #shared-content .navbar,
.menu-page-main #shared-content footer,
.menu-page-main #shared-content .footer,
.menu-page-main #shared-content .order-online-popup,
.menu-page-main #shared-content .modal {
    /* leave functional; colors overridden via CSS vars on :root */
}

/* Footer — logo red */
.site-footer {
    background: linear-gradient(180deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
    color: rgba(255, 250, 240, 0.92);
    padding: 2.75rem 1.25rem 2rem;
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
    text-align: center;
}

.footer-brand img {
    height: 72px;
    width: auto;
    margin: 0 auto 0.85rem;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.95);
}

.footer-brand strong,
.footer-brand .brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 0.35rem;
    gap: 0.05rem;
}

.footer-brand .brand-pizza {
    font-family: var(--font-script);
    font-size: 1.45rem;
    color: var(--brand-gold);
    letter-spacing: 0.01em;
    text-transform: none;
}

.footer-brand .brand-star {
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
}

.footer-meta {
    font-size: 0.92rem;
    color: rgba(247, 250, 247, 0.78);
}

.footer-meta a {
    color: rgba(247, 250, 247, 0.88);
}

.footer-meta a:hover { color: #fff; }

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
}

.footer-nav a {
    color: rgba(247, 250, 247, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-nav a:hover { color: #fff; }

.powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    padding-top: 1.25rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 320px;
}

.powered-by span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 250, 247, 0.55);
}

.powered-by a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.35rem;
    border-radius: 8px;
    transition: opacity 0.2s ease, background 0.2s ease;
    opacity: 0.92;
}

.powered-by a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.powered-by img {
    max-height: 36px;
    width: auto;
    background: transparent;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(247, 250, 247, 0.5);
}
