@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&display=swap');

/* ==========================================================
   VEZUPIZZU.CZ – KOMPLETNÍ CSS
   Verze: tištěný font + pozadí s velmi jemným černým filtrem

   Nahraj jako:
   /vezupizzu.cz/web/assets/css/style.css

   Potřebné soubory:
   /assets/img/bg-site.png
   /assets/img/logo-white.png
   ========================================================== */

:root {
    --accent: #C23331;
    --accent-dark: #982624;
    --black: #070707;
    --cream: #f6f2e9;
    --white: #ffffff;
    --muted: #e4ddd2;
    --line: rgba(255, 255, 255, 0.12);
    --card: rgba(10, 10, 10, 0.34);
    --card-strong: rgba(10, 10, 10, 0.46);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    --display-font: "Bebas Neue", "Anton", "Arial Narrow", "Impact", sans-serif;
    --text-font: "Oswald", "Arial Narrow", system-ui, sans-serif;
}

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

html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: #070707 !important;
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--cream);
    font-family: var(--text-font) !important;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative !important;
    background: transparent !important;
    isolation: isolate;
}

/* ==========================================================
   POZADÍ CELÉHO WEBU
   ========================================================== */

/* Samotný obrázek pozadí – bez úprav, bez filtru */
body::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -2 !important;
    pointer-events: none !important;

    background-image: var(--site-bg, url("/assets/img/bg-site.png")) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Jen velmi jemný černý filtr kvůli čitelnosti bílého textu.
   Sílu můžeš později upravit:
   0.10 = světlejší
   0.16 = doporučené
   0.22 = tmavší */
body::after {
    content: "" !important;
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    background: rgba(0, 0, 0, 0.16) !important;
}

/* Vypnutí všech starých overlayů, šumů a černých vrstev */
.noise,
.hero-shadow {
    display: none !important;
    content: none !important;
    background: none !important;
    opacity: 0 !important;
}

/* Hlavní sekce jsou průhledné, aby pozadí bylo vidět všude */
main,
section,
header,
footer,
.hero,
.story,
.features,
.feature-strip,
.section,
.section-dark,
.events,
.process,
.pizza-menu,
.gallery,
.gallery-section,
.faq,
.contact,
.faq-contact,
.footer,
.wrapper,
.site,
.page,
.content,
.content-wrapper,
.site-wrapper,
.page-wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Zrušení starých tmavých filtrů v sekcích */
.feature-strip::before,
.section-dark::before,
.gallery-section::before,
.faq-contact::before,
.hero::before,
.hero::after,
.footer::before,
.flour-corner::after,
.flour-corner.right::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

/* ==========================================================
   TYPOGRAFIE
   ========================================================== */

a {
    color: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

h1,
h2,
h3,
.kicker,
.main-nav a,
.header-cta,
.btn,
.event-content h3,
.pizza-item strong,
.vespa-card strong,
.gallery-item span,
.step h3,
.footer-contact strong {
    font-family: var(--display-font) !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 0.085em;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 0.94;
}

h1 {
    max-width: 880px;
    font-size: clamp(58px, 8.8vw, 126px);
    color: var(--cream);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.72);
}

h1 span {
    color: var(--accent);
}

h2 {
    font-size: clamp(42px, 5.6vw, 74px);
    color: var(--cream);
    text-shadow: 0 7px 24px rgba(0, 0, 0, 0.60);
}

h3 {
    font-size: 28px;
    color: var(--cream);
}

p {
    margin-top: 0;
}

.kicker {
    display: inline-block;
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 19px;
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.70);
}

.hero-text,
.rich-text,
.event-content p,
.feature-card p,
.step p,
.price-box p,
.inquiry-card p,
details p,
.footer p,
.menu-list > p,
.vespa-card span {
    font-family: var(--text-font) !important;
    font-weight: 300 !important;
    letter-spacing: 0.025em;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 82px;
    z-index: 1000;

    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 24px;

    padding: 0 clamp(18px, 4vw, 54px);

    background: rgba(0, 0, 0, 0.38) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 210px;
    max-height: 64px;
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2vw, 32px);
}

.main-nav a {
    position: relative;
    padding: 30px 0;

    font-size: 18px;
    text-decoration: none;
    color: #fff;
    opacity: 0.94;
    transition: 0.25s;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 22px;
    height: 2px;
    background: var(--accent);
    transition: 0.25s;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
    color: #fff;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    right: 0;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s;
    white-space: nowrap;
    cursor: pointer;
}

.header-cta {
    min-height: 52px;
    padding: 0 26px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 34px rgba(194, 51, 49, 0.24);
    font-size: 18px;
}

.header-cta:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 18px 44px rgba(194, 51, 49, 0.34);
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
}

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 150px 0 95px;
    isolation: isolate;
}

.hero-inner {
    position: relative;
    max-width: 1180px;
}

.hero-text {
    max-width: 710px;
    margin: 30px 0 38px;
    color: #fff7ea;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.55;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.76);
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    min-height: 58px;
    padding: 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 20px;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: #fff;
    color: #0d0d0d;
    transform: translateY(-2px);
}

/* ==========================================================
   FEATURE STRIP
   ========================================================== */

.feature-strip {
    position: relative;
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    position: relative;
    min-height: 190px;
    padding: 34px 26px;
    text-align: center;

    background: rgba(10, 10, 10, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.feature-card + .feature-card {
    border-left: 0;
}

.line-icon {
    display: grid;
    place-items: center;
    height: 56px;
    margin-bottom: 13px;
    color: var(--accent);
}

.line-icon svg {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    margin-bottom: 9px;
    font-size: 29px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

/* ==========================================================
   OBECNÉ SEKCE
   ========================================================== */

.section-dark {
    position: relative;
    padding: 104px 0;
    overflow: hidden;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.rich-text {
    color: var(--muted);
    font-size: 19px;
}

.rich-text p {
    margin: 0 0 18px;
}

.story-copy {
    max-width: 620px;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.vespa-card {
    width: min(100%, 520px);
    overflow: hidden;
    border-radius: 22px;
    transform: rotate(1deg);

    background: rgba(10, 10, 10, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.vespa-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: none !important;
}

.vespa-card div {
    padding: 24px;
}

.vespa-card strong {
    display: block;
    font-size: 32px;
}

.vespa-card span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.section-head {
    max-width: 790px;
    margin-bottom: 56px;
}

.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.section-head p {
    color: var(--muted);
    font-size: 19px;
}

/* ==========================================================
   AKCE
   ========================================================== */

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.event-card {
    overflow: hidden;
    border-radius: 18px;
    transition: 0.28s;

    background: rgba(10, 10, 10, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: var(--shadow);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.event-card:hover {
    transform: translateY(-7px);
    border-color: rgba(194, 51, 49, 0.72);
}

.event-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    filter: none !important;
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 34px;
}

.event-content p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

/* ==========================================================
   JAK TO PROBÍHÁ
   ========================================================== */

.red-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: transparent !important;
}

.red-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(194, 51, 49, 0.82) !important;
    pointer-events: none;
}

.red-section > * {
    position: relative;
}

.red-section .kicker {
    color: #fff;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 31px;
    border-top: 2px dashed rgba(255, 255, 255, 0.58);
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;

    background: #fff;
    color: var(--accent);
    font-family: var(--display-font);
    font-size: 26px;
    font-weight: 400;
    border: 6px solid var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.42);
}

.step h3 {
    margin-bottom: 8px;
    font-size: 30px;
}

.step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
}

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

.menu-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.menu-list > p:not(.kicker) {
    color: var(--muted);
    font-size: 19px;
}

.pizza-items {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.pizza-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pizza-item span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, #f2d88a 0 17%, #c7322c 18% 59%, #bd7b31 60% 73%, #4a2614 74% 77%, #bd7b31 78%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.pizza-item strong {
    display: block;
    font-size: 31px;
}

.pizza-item p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.price-box {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: 24px;

    background: rgba(10, 10, 10, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.price-box::after {
    display: none !important;
}

.price-box p {
    color: var(--muted);
    font-size: 18px;
}

/* ==========================================================
   GALERIE
   ========================================================== */

.gallery-section {
    position: relative;
    padding: 98px 0;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 14px;
    text-decoration: none;

    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
    grid-column: span 2;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    grid-column: span 1;
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
    filter: none !important;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30), transparent 60%);
}

.gallery-item span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;

    color: #fff;
    font-size: 24px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ==========================================================
   FAQ + POPTÁVKA
   ========================================================== */

.faq-contact {
    position: relative;
}

.faq-form-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

details {
    overflow: hidden;
    border-radius: 12px;

    background: rgba(10, 10, 10, 0.34) !important;
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    font-family: var(--display-font) !important;
    font-size: 24px;
    letter-spacing: 0.07em;
    list-style: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    font-size: 30px;
    color: var(--accent);
    font-weight: 300;
}

details[open] summary::after {
    content: "–";
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 17px;
}

.inquiry-card {
    padding: 36px;
    border-radius: 24px;

    background: rgba(10, 10, 10, 0.38) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.inquiry-card > p:not(.kicker) {
    color: var(--muted);
    font-size: 18px;
}

.inquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.inquiry-form label {
    display: grid;
    gap: 6px;
}

.inquiry-form span {
    color: #f2eadf;
    font-family: var(--display-font) !important;
    font-size: 18px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.34);
    color: #fff;
    border-radius: 8px;
    padding: 15px 14px;
    font: inherit;
    outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 51, 49, 0.20);
}

.full {
    grid-column: 1 / -1;
}

button.btn {
    border: 0;
}

.flash {
    padding: 14px 16px;
    border-radius: 10px;
    margin: 18px 0;
    font-weight: 800;
}

.flash.ok {
    background: rgba(26, 156, 81, 0.18);
    border: 1px solid rgba(26, 156, 81, 0.45);
}

.flash.error {
    background: rgba(194, 51, 49, 0.18);
    border: 1px solid rgba(194, 51, 49, 0.45);
}

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

.footer {
    position: relative;
    padding: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.footer-logo {
    width: 250px;
    max-width: 100%;
}

.footer p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-contact strong {
    font-size: 26px;
    letter-spacing: 0.07em;
}

.footer-contact a {
    color: #e9e1d6;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.backtop {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;

    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;

    border-radius: 50%;
    background: #111;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.20);
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

/* ==========================================================
   ANIMACE
   ========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================
   RESPONZIVITA
   ========================================================== */

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 220px auto auto;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 16px;
    }

    .header-cta {
        padding: 0 18px;
    }

    .features-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
    }

    .timeline::before {
        display: none;
    }

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

    .two-col,
    .menu-layout,
    .faq-form-layout {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        grid-column: span 1 !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }
}

@media (max-width: 860px) {
    body::before {
        background-attachment: scroll !important;
        background-position: center top !important;
    }

    body::after {
        background: rgba(0, 0, 0, 0.20) !important;
    }

    .site-header {
        min-height: 76px;
        grid-template-columns: 1fr auto;
        padding: 0 18px;
    }

    .brand img {
        width: 178px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;

        display: grid;
        gap: 0;
        padding: 10px 20px 24px;

        background: rgba(6, 6, 6, 0.96) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        transform: translateY(-130%);
        transition: 0.25s;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-nav a::after {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 890px;
        padding-top: 132px;
    }

    h1 {
        font-size: clamp(54px, 15vw, 84px);
    }

    .hero-text {
        font-size: 19px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .section-dark,
    .gallery-section {
        padding: 76px 0;
    }

    .features-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 26px 18px;
    }

    .event-content {
        padding: 21px;
    }

    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .price-box,
    .inquiry-card {
        padding: 28px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }
}

@media (max-width: 520px) {
    .brand img {
        width: 154px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-actions {
        gap: 12px;
    }

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

    .gallery-item {
        min-height: 230px;
    }

    h2 {
        font-size: 42px;
    }

    .footer {
        padding-bottom: 86px;
    }
}

/* ==========================================================
   VEZUPIZZU – OPRAVA PNG IKONKY VESPY
   ========================================================== */

.feature-card:first-child .line-icon {
    height: 64px !important;
    margin-bottom: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.feature-card:first-child .feature-icon-img {
    display: block !important;
    width: 58px !important;
    height: auto !important;
    max-width: 58px !important;
    max-height: 58px !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* kdyby ikonka byla stále moc výrazná, stačí upravit šířku výše z 58px třeba na 52px */

/* ==========================================================
   VEZUPIZZU – ZAROVNÁNÍ 4 HORNÍCH BLOKŮ
   ========================================================== */

@media (min-width: 861px) {
    .features-grid {
        align-items: stretch !important;
    }

    .feature-card {
        min-height: 250px !important;
        padding: 34px 26px 32px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
    }

    .feature-card .line-icon {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
        margin: 0 0 16px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .feature-card .line-icon svg {
        width: 50px !important;
        height: 50px !important;
        display: block !important;
    }

    .feature-card .feature-icon-img {
        width: 58px !important;
        height: 58px !important;
        max-width: 58px !important;
        max-height: 58px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .feature-card h3 {
        min-height: 78px !important;
        margin: 0 0 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        line-height: 1.05 !important;
        text-align: center !important;
    }

    .feature-card p {
        margin: 0 auto !important;
        max-width: 240px !important;

        min-height: 74px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: center !important;

        line-height: 1.45 !important;
        text-align: center !important;
    }
}

@media (min-width: 861px) and (max-width: 1100px) {
    .feature-card {
        min-height: 235px !important;
    }

    .feature-card h3 {
        min-height: 68px !important;
    }

    .feature-card p {
        min-height: 60px !important;
    }
}

@media (max-width: 860px) {
    .feature-card {
        min-height: auto !important;
    }

    .feature-card .line-icon {
        height: 62px !important;
        min-height: 62px !important;
        margin-bottom: 14px !important;
    }

    .feature-card h3,
    .feature-card p {
        min-height: 0 !important;
    }
}

/* ==========================================================
   VEZUPIZZU – STORY FOTO BEZ POPISKU A NA VÝŠKU
   ========================================================== */

@media (min-width: 861px) {
    .story .two-col {
        align-items: stretch !important;
    }

    .story-copy,
    .story-visual {
        align-self: stretch !important;
    }

    .story-visual {
        display: flex !important;
        align-items: stretch !important;
    }

    .story .vespa-card {
        width: 100% !important;
        max-width: 560px !important;
        height: 100% !important;
        min-height: 100% !important;
        margin-left: auto !important;

        display: block !important;
        overflow: hidden !important;
        border-radius: 24px !important;
        transform: none !important;
    }

    .story .vespa-card > div {
        display: none !important;
    }

    .story .vespa-card img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
}

@media (max-width: 860px) {
    .story .vespa-card {
        transform: none !important;
    }

    .story .vespa-card > div {
        display: none !important;
    }

    .story .vespa-card img {
        width: 100% !important;
        height: 420px !important;
        aspect-ratio: auto !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }
}

@media (max-width: 520px) {
    .story .vespa-card img {
        height: 340px !important;
    }
}

/* ==========================================================
   VEZUPIZZU – POZICE OŘEZU Z ADMINISTRACE
   ========================================================== */

.story .vespa-card img,
.event-card img,
.gallery-item img {
    object-fit: cover !important;
}

/* ==========================================================
   VEZUPIZZU – SJEDNOCENÍ MALÝCH ČERVENÝCH NADPISŮ
   ========================================================== */

/* Malé červené nadpisy typu „NAŠE PIZZA“, „PŘÍBĚH VEZUPIZZU“ apod. */
.kicker {
    font-family: "Anton", "Bebas Neue", "Arial Narrow", "Impact", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
}

/* Konkrétně v sekci Naše pizza, aby nepůsobilo tenčeji než ostatní sekce. */
.pizza-menu .kicker {
    font-family: "Anton", "Bebas Neue", "Arial Narrow", "Impact", sans-serif !important;
    font-size: 20px !important;
    letter-spacing: 0.055em !important;
}

/* ==========================================================
   VEZUPIZZU – POZNÁMKA POD PIZZAMI JAKO POLOŽKA SEZNAMU
   ========================================================== */

/*
   Poznámka pod pizzami je nově vykreslená jako .pizza-item.
   Díky tomu používá úplně stejné pravidlo jako VEGETARIANA:
   .pizza-item strong
*/
.pizza-note-item {
    margin-top: 12px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    border-bottom: 0 !important;
}

/* Necháme stejné odsazení jako u názvů pizz, ale bez viditelné červené ikony. */
.pizza-note-item > span {
    opacity: 0 !important;
    box-shadow: none !important;
}

/* Pojistka: stejný nadpisový styl jako MARGHERITA / VEGETARIANA. */
.pizza-note-item strong {
    display: block !important;
    font-family: var(--display-font) !important;
    font-weight: 400 !important;
    font-size: 31px !important;
    line-height: 1.05 !important;
    letter-spacing: 0.085em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.96) !important;
}

@media (max-width: 480px) {
    .pizza-note-item strong {
        font-size: 29px !important;
    }
}

/* ==========================================================
   VEZUPIZZU – GALERIE BEZ POPISKŮ, STEJNÉ VELIKOSTI
   ========================================================== */

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.gallery-item,
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
    grid-column: auto !important;
}

.gallery-item {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;

    background: rgba(0,0,0,.35) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
}

.gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform-origin: center center !important;
    filter: none !important;
}

.gallery-item::after,
.gallery-item span {
    display: none !important;
}

.gallery-item:hover img {
    filter: none !important;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .gallery-item {
        aspect-ratio: 4 / 3 !important;
    }
}

/* ==========================================================
   VEZUPIZZU – SJEDNOCENÍ NADPISU NEZÁVAZNÁ POPTÁVKA
   ========================================================== */

/* Malý červený nadpis v poptávkovém formuláři */
.inquiry-card .kicker,
.form-card .kicker,
.contact-card .kicker,
#poptavka .kicker,
#inquiry .kicker {
    font-family: "Anton", "Bebas Neue", "Arial Narrow", "Impact", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
}
