/* ============================================================
   SUAS reSTAV - Custom Styles
   ============================================================ */

:root {
    --color-primary: #042a4a;
    --color-primary-light: #0a3d6b;
    --color-accent: #3ad8d7;
    --color-accent-hover: #2bc4c3;
    --color-text: #e0e8f0;
    --color-text-muted: #8ba3bb;
    --color-white: #ffffff;
    --color-dark: #021a30;
    --color-line: rgba(58, 216, 215, 0.2);
    --color-card-bg: rgba(255, 255, 255, 0.04);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --font-primary: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --section-padding: 6rem 0;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body.restav-body {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

.restav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   Navigation
   ============================================================ */

.restav-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.restav-nav.is-scrolled {
    background: rgba(4, 42, 74, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.restav-nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.restav-nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.restav-nav__logo img {
    height: 55px !important;
    width: auto !important;
}

.restav-nav__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.restav-nav__logo-text small {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.restav-nav__menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.restav-nav__menu a {
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
}

.restav-nav__menu a:hover,
.restav-nav__menu a.active {
    color: var(--color-accent);
    background: rgba(58, 216, 215, 0.08);
}

.restav-nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.restav-nav__toggle svg {
    width: 28px;
    height: 28px;
}

/* ============================================================
   Hero Section
   ============================================================ */

.restav-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.restav-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.restav-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restav-hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 42, 74, 0.7) 0%,
        rgba(4, 42, 74, 0.35) 35%,
        rgba(4, 42, 74, 0.6) 65%,
        rgba(4, 42, 74, 1) 90%
    );
    z-index: 1;
}

.restav-hero__bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        hsla(208, 81%, 14%, 1) 0%,
        hsla(225, 78%, 27%, 1) 50%,
        hsla(240, 52%, 18%, 1) 100%
    );
    background-size: 200% 200%;
    animation: heroGradient 15s ease infinite;
}

/* Bottom fade on hero to blend with next section */
.restav-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--color-primary) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes heroGradient {
    0%   { background-position: 0% 20%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 50% 80%; }
    100% { background-position: 0% 20%; }
}

.restav-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.restav-hero__badge {
    display: inline-block;
    background: rgba(58, 216, 215, 0.15);
    color: var(--color-accent);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(58, 216, 215, 0.25);
}

.restav-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.restav-hero__title span {
    color: var(--color-accent);
}

.restav-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-text);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.restav-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    text-decoration: none;
}

.restav-hero__cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(58, 216, 215, 0.3);
}

.restav-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--color-accent);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================================
   Section Common
   ============================================================ */

.restav-section {
    padding: var(--section-padding);
    position: relative;
}

/* Smooth gradient transitions between sections */
.restav-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.restav-section--alt {
    background: var(--color-dark);
}

.restav-section--alt::before {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-dark) 100%);
}

/* Sections after --alt go back to primary */
.restav-section--alt + .restav-section:not(.restav-section--alt)::before {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
}

.restav-section--gradient {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-dark) 100%);
}

.restav-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.restav-section__label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 2.5;
}

.restav-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.restav-section__desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   Co Delame - 2-column grid
   ============================================================ */

.restav-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.restav-grid > .restav-card {
    width: calc(50% - 1rem);
    box-sizing: border-box;
}

.restav-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.restav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.restav-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(58, 216, 215, 0.2);
    transform: translateY(-4px);
}

.restav-card:hover::before {
    opacity: 1;
}

.restav-card__icon {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(58, 216, 215, 0.08);
    border-radius: 16px;
}

.restav-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.restav-card__text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   Pro Koho - Carousel / Swiper
   ============================================================ */

.restav-carousel {
    overflow: hidden;
    padding-bottom: 3rem;
}

.restav-section#pro-koho {
    overflow: visible;
}

.restav-section#pro-koho .restav-container {
    overflow: visible;
}

.restav-carousel .swiper-slide {
    height: auto;
}

.restav-carousel-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition);
}

.restav-carousel-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(58, 216, 215, 0.2);
}

.restav-carousel-card__icon {
    color: var(--color-accent);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 216, 215, 0.08);
    border-radius: 50%;
}

.restav-carousel-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.restav-carousel-card__text {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.restav-carousel .swiper-pagination-bullet {
    background: var(--color-text-muted);
    opacity: 0.4;
}

.restav-carousel .swiper-pagination-bullet-active {
    background: var(--color-accent);
    opacity: 1;
}

.restav-carousel {
    position: relative;
    overflow: visible;
}

.restav-carousel .swiper-button-prev,
.restav-carousel .swiper-button-next {
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    background: rgba(4, 42, 74, 0.9);
    border: 1px solid var(--color-card-border);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    top: calc(50% - 1.5rem);
    z-index: 10;
}

.restav-carousel .swiper-button-prev {
    left: -60px;
}

.restav-carousel .swiper-button-next {
    right: -60px;
}

.restav-carousel .swiper-button-prev:hover,
.restav-carousel .swiper-button-next:hover {
    background: rgba(58, 216, 215, 0.15);
    border-color: var(--color-accent);
}

.restav-carousel .swiper-button-prev::after,
.restav-carousel .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

/* ============================================================
   Prijimame / Neprijimame
   ============================================================ */

.restav-two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.restav-list {
    list-style: none;
}

.restav-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-card-border);
    font-size: 1rem;
}

.restav-list li:last-child {
    border-bottom: none;
}

.restav-list__icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.restav-list-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.restav-list-title--green { color: var(--color-accent); }
.restav-list-title--red { color: #ff5555; }

/* ============================================================
   Cenik
   ============================================================ */

.restav-cenik {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.restav-cenik__content p {
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.restav-cenik__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.restav-cenik__info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text);
    font-size: 0.95rem;
}

.restav-cenik__info-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.restav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    text-decoration: none;
    margin-top: 1rem;
}

.restav-btn:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.restav-btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.restav-btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* ============================================================
   Kudy k nam / Map
   ============================================================ */

.restav-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.restav-map__embed {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
}

.restav-map__embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.restav-map__info h3 {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.restav-map__info p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ============================================================
   Kontakty
   ============================================================ */

.restav-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.restav-contact-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition);
}

.restav-contact-card:hover {
    border-color: rgba(58, 216, 215, 0.2);
    transform: translateY(-4px);
}

.restav-contact-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(58, 216, 215, 0.15), rgba(58, 216, 215, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-accent);
}

.restav-contact-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.restav-contact-card__position {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.restav-contact-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    padding: 0.4rem 0;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.restav-contact-card__link:hover {
    color: var(--color-accent);
}

.restav-contact-card__link svg {
    flex-shrink: 0;
}

/* ============================================================
   Footer
   ============================================================ */

.restav-footer {
    background: var(--color-primary);
    border-top: none;
    padding: 4rem 0 0;
    position: relative;
}

.restav-footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-primary) 100%);
    pointer-events: none;
}

.restav-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: none;
}

.restav-footer__registry {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.restav-footer__registry img {
    margin-top: 1rem;
    height: 55px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.restav-footer__registry img:hover {
    opacity: 1;
}

.restav-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restav-footer__brand img {
    height: 75px !important;
    width: auto !important;
}

.restav-footer__brand p {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.7;
    white-space: pre-line;
}

.restav-footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.restav-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.restav-footer__links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition);
    text-decoration: none;
}

.restav-footer__links a:hover {
    color: var(--color-accent);
}

.restav-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.restav-footer__copy {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.restav-footer__bottom-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.restav-footer__bottom-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.restav-footer__bottom-links a:hover {
    color: var(--color-accent);
}

/* ============================================================
   Responsive - Tablet (max 991px)
   ============================================================ */

@media (max-width: 991px) {
    :root {
        --section-padding: 4rem 0;
    }

    .restav-nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(2, 26, 48, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 1000;
    }

    .restav-nav__menu.is-open {
        opacity: 1;
        visibility: visible;
    }

    .restav-nav__menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .restav-nav__menu.is-open li {
        opacity: 1;
        transform: translateY(0);
    }

    .restav-nav__menu.is-open li:nth-child(1) { transition-delay: 0.05s; }
    .restav-nav__menu.is-open li:nth-child(2) { transition-delay: 0.1s; }
    .restav-nav__menu.is-open li:nth-child(3) { transition-delay: 0.15s; }
    .restav-nav__menu.is-open li:nth-child(4) { transition-delay: 0.2s; }
    .restav-nav__menu.is-open li:nth-child(5) { transition-delay: 0.25s; }
    .restav-nav__menu.is-open li:nth-child(6) { transition-delay: 0.3s; }

    .restav-nav__menu a {
        padding: 0.85rem 2rem;
        font-size: 1.25rem;
        font-weight: 600;
        border-radius: 8px;
        display: block;
        text-align: center;
    }

    .restav-nav__menu a:hover,
    .restav-nav__menu a.active {
        background: rgba(58, 216, 215, 0.1);
    }

    .restav-nav__toggle {
        display: block;
        z-index: 1001;
    }

    .restav-grid {
        gap: 1.5rem;
    }

    .restav-two-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restav-cenik {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restav-map-section {
        grid-template-columns: 1fr;
    }

    .restav-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .restav-footer__brand {
        grid-column: 1 / -1;
    }

    .restav-carousel .swiper-button-prev,
    .restav-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .restav-carousel .swiper-button-prev {
        left: -50px;
    }

    .restav-carousel .swiper-button-next {
        right: -50px;
    }

    .restav-carousel .swiper-button-prev::after,
    .restav-carousel .swiper-button-next::after {
        font-size: 14px;
    }
}

/* ============================================================
   Responsive - Mobile (max 767px)
   ============================================================ */

@media (max-width: 767px) {
    :root {
        --section-padding: 3rem 0;
    }

    .restav-container {
        padding: 0 1.25rem;
    }

    .restav-hero__content {
        padding: 1rem;
    }

    .restav-hero__content img {
        max-width: 220px !important;
    }

    .restav-grid {
        gap: 1.25rem;
    }

    .restav-grid > .restav-card {
        width: 100%;
    }

    .restav-card {
        padding: 2rem 1.5rem;
    }

    .restav-section__header {
        margin-bottom: 2.5rem;
    }

    .restav-section__title {
        font-size: 1.75rem;
    }

    /* Carousel arrows below on mobile */
    .restav-carousel .swiper-button-prev,
    .restav-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 8px;
    }

    .restav-carousel .swiper-button-prev {
        left: calc(50% - 55px);
    }

    .restav-carousel .swiper-button-next {
        right: calc(50% - 55px);
    }

    .restav-carousel .swiper-button-prev::after,
    .restav-carousel .swiper-button-next::after {
        font-size: 14px;
    }

    .restav-carousel {
        padding-bottom: 5rem;
        overflow: visible;
    }

    .restav-section#pro-koho {
        overflow: hidden;
        padding-bottom: 4rem;
    }

    .restav-two-cols {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .restav-cenik {
        padding: 2rem 1.5rem;
    }

    .restav-cenik .restav-btn,
    .restav-cenik .restav-btn--outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .restav-map__embed {
        aspect-ratio: 16/9;
    }

    .restav-map__info h3 {
        font-size: 1.1rem;
    }

    .restav-contacts {
        grid-template-columns: 1fr;
    }

    .restav-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .restav-footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .restav-footer__bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .restav-nav__menu a {
        font-size: 1.15rem;
    }

    .restav-nav__logo img {
        height: 35px !important;
    }
}

/* ============================================================
   Utility: mobile overlay
   ============================================================ */

.restav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.restav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
