/**
 * Alara — veřejný web (cozy, moderní, vzdušný)
 */

:root {
    --primary-color: #a0784a;
    --primary-dark: #856341;
    --secondary-color: #2c2825;
    --text-color: #3d3835;
    --text-light: #736e6a;
    --bg-light: #f5f2ed;
    --white: #ffffff;
    --border-color: #e8e3dc;
    --shadow: 0 6px 32px rgba(44, 40, 37, 0.06);
    --shadow-hover: 0 16px 48px rgba(44, 40, 37, 0.1);

    --radius: 14px;
    --radius-lg: 22px;
    --nav-h: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--bg-light);
    font-size: 1.02rem;
    letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* --- Layout --- */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
    opacity: 0.85;
    margin-bottom: 0.65rem;
}

.section-eyebrow--left {
    text-align: left;
}

.section-lead {
    text-align: center;
    color: var(--text-light);
    max-width: 36rem;
    margin: 0 auto 2.75rem;
    font-size: 1.05rem;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color) 15%,
        var(--border-color) 85%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.site-header.is-scrolled::after {
    opacity: 1;
}

.navbar {
    background: transparent;
    box-shadow: none;
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1rem clamp(1.25rem, 4vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--nav-h);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    align-items: center;
}

.nav-menu a:not(.btn-reservation) {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 0.35rem 0;
}

.nav-menu a:not(.btn-reservation)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.28s ease;
    opacity: 0.7;
}

.nav-menu a:not(.btn-reservation):hover::after,
.nav-menu a:not(.btn-reservation).active::after {
    width: 100%;
}

.nav-menu a:not(.btn-reservation):hover,
.nav-menu a:not(.btn-reservation).active {
    color: var(--primary-dark);
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.62rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(160, 120, 74, 0.25);
}

.btn-reservation:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.45rem;
    cursor: pointer;
    color: var(--secondary-color);
    z-index: 9100;
    position: relative;
    padding: 0.35rem;
    border-radius: var(--radius);
}

main {
    min-height: calc(100vh - 200px);
}

/* --- Footer --- */
.footer {
    background: linear-gradient(165deg, #252220 0%, #1a1816 100%);
    color: rgba(255, 255, 255, 0.88);
    padding: clamp(3rem, 6vw, 4rem) 0 1.75rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: #e8ddd0;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.75;
    font-size: 0.96rem;
}

.footer-section a:hover {
    color: #f0e6d8;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    font-size: 1.35rem;
    opacity: 0.85;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
        box-shadow 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(160, 120, 74, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.85);
}

.page-content-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--white);
}

.page-content-text {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
    color: var(--text-color);
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content-text p {
    margin-bottom: 1rem;
}

.page-content-text ul,
.page-content-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.page-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1rem 0;
}

/* --- Home: Hero --- */
.hero {
    min-height: clamp(520px, 72vh, 780px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2.2s ease-in-out;
    transform: scale(1.03);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(37, 34, 32, 0.72) 0%,
        rgba(37, 34, 32, 0.45) 45%,
        rgba(160, 120, 74, 0.35) 100%
    );
    z-index: 2;
}

.hero-content {
    max-width: 42rem;
    padding: 2rem clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 3;
}

.hero-panel {
    padding: clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero h1 {
    font-size: clamp(2.35rem, 6vw, 3.65rem);
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.25);
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.94;
    font-weight: 400;
    line-height: 1.55;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Home: About --- */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-text {
    order: 1;
}

.about-image {
    order: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    aspect-ratio: 4 / 3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.about-text .btn-primary {
    margin-top: 0.5rem;
}

/* --- Home: Info --- */
.info-section {
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.info-card-icon-wrap {
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-card-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.info-card-icon {
    font-size: 2.25rem;
    line-height: 1;
}

.info-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* --- Home: Events --- */
.events-section {
    background: var(--white);
}

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

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    color: var(--white);
    padding: 1.35rem 1.35rem 1.1rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.event-date .day {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.event-date .month {
    font-family: "DM Sans", sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    opacity: 0.95;
}

.event-content {
    padding: 1.35rem 1.35rem 1.45rem;
}

.event-content h3 {
    font-size: 1.32rem;
    margin-bottom: 0.45rem;
    color: var(--secondary-color);
}

.event-content p {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.98rem;
}

.event-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--secondary-color);
    background: rgba(160, 120, 74, 0.1);
    border: 1px solid rgba(160, 120, 74, 0.22);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
}

.event-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary-color);
}

.event-cta {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

.event-cta:hover {
    text-decoration: underline;
}

.no-events {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

/* --- Home: Reviews --- */
.reviews-section {
    background: var(--bg-light);
}

.reviews-header {
    margin-bottom: 1rem;
}

.reviews-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.reviews-rating-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
    color: var(--primary-color);
}

.reviews-stars {
    display: flex;
    gap: 0.15rem;
}

.reviews-stars .star {
    font-size: 1.45rem;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 24px 0;
    margin: 0 -12px;
}

.reviews-carousel-wrapper .container {
    overflow: visible;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 16px 8px;
    margin: -16px -8px;
}

.reviews-carousel--count-1,
.reviews-carousel--count-2,
.reviews-carousel--count-3 {
    justify-content: center;
}

.reviews-carousel--count-1 .review-card {
    flex-basis: min(100%, 520px);
}

.reviews-carousel--count-2 .review-card {
    flex-basis: min(calc(50% - 0.75rem), 520px);
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 260px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.review-author-info h4 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    color: var(--secondary-color);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 0.12rem;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.review-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    word-wrap: break-word;
    flex: 1;
    font-size: 0.96rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.75rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d4cfc8;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.15);
}

/* --- Menu page --- */
.menu-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.category-nav {
    position: sticky;
    top: calc(var(--nav-h) - 4px);
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.category-nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.category-nav-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
}

.category-nav-link {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
    font-size: 0.88rem;
    white-space: nowrap;
    border: 1px solid transparent;
}

.category-nav-link:hover,
.category-nav-link.active {
    background: rgba(160, 120, 74, 0.12);
    color: var(--primary-dark);
    border-color: rgba(160, 120, 74, 0.22);
}

.menu-categories {
    max-width: 960px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 3rem;
    scroll-margin-top: 130px;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.category-header h2 {
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
}

.category-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.menu-items {
    display: grid;
    gap: 0.85rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 1.15rem;
    padding: 1.15rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    align-items: center;
    border: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.menu-item:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.menu-item-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.menu-item-content h3 {
    font-size: 1.18rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.menu-item-content p {
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
    font-size: 0.92rem;
}

.menu-item-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

.no-image {
    width: 88px;
    height: 88px;
    background: linear-gradient(
        145deg,
        var(--primary-color),
        var(--primary-dark)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.35rem;
}

.no-menu {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

.no-menu h2 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

/* --- Gallery --- */
.gallery-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.no-gallery {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.no-gallery h2 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-album-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-album-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-album-card-media {
    aspect-ratio: 4 / 3;
    background: var(--bg-light);
    overflow: hidden;
}

.gallery-album-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-album-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.gallery-album-card-body {
    padding: 1.25rem 1.35rem;
}

.gallery-album-card-title {
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    color: var(--secondary-color);
}

.gallery-album-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.gallery-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.gallery-breadcrumb a:hover {
    text-decoration: underline;
}

.gallery-breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.gallery-album-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 13, 0.94);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 92%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    font-size: 1.65rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
}

/* --- Contact --- */
.contact-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.contact-header .section-title {
    margin-bottom: 0.65rem;
}

.contact-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.contact-info {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.96rem;
}

.contact-details a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 420px;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.map-placeholder code {
    font-size: 0.85em;
    background: rgba(0, 0, 0, 0.06);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

.opening-hours {
    background: var(--bg-light);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.opening-hours h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.96rem;
}

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

.hours-list .day {
    font-weight: 600;
    color: var(--secondary-color);
}

.hours-list .time {
    color: var(--text-light);
}

/* --- Reservation --- */
.reservation-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--bg-light);
}

.reservation-container {
    max-width: 640px;
    margin: 0 auto;
}

.reservation-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reservation-header .section-title {
    margin-bottom: 0.65rem;
}

.reservation-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.reservation-form {
    background: var(--white);
    padding: clamp(2rem, 5vw, 2.75rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(160, 120, 74, 0.45);
    box-shadow: 0 0 0 3px rgba(160, 120, 74, 0.12);
}

select.form-control,
select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23736e6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: rgba(160, 120, 74, 0.45);
    box-shadow: 0 0 0 3px rgba(160, 120, 74, 0.12);
}

.form-control.error {
    border-color: #c75c5c;
}

.form-error {
    color: #b54545;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: #ecf7ee;
    color: #1e5c2e;
    border: 1px solid #c5e6cb;
}

.alert-error {
    background: #fdf0f0;
    color: #8f2a2a;
    border: 1px solid #f0cbcb;
}

.info-box {
    background: rgba(160, 120, 74, 0.08);
    border: 1px solid rgba(160, 120, 74, 0.2);
    padding: 1.35rem 1.5rem;
    margin-bottom: 1.75rem;
    border-radius: var(--radius);
}

.info-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.45rem;
    color: var(--secondary-color);
    font-family: "DM Sans", sans-serif;
}

.info-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Weekly menu --- */
.weekly-menu-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--white);
}

.weekly-menu-header {
    text-align: center;
    margin-bottom: 2.75rem;
}

.weekly-menu-date {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.weekly-menu-content {
    max-width: 920px;
    margin: 0 auto;
}

.menu-items-grid {
    display: grid;
    gap: 1.5rem;
}

.menu-item-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    border: 1px solid var(--border-color);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.menu-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.menu-item-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.menu-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(
        145deg,
        var(--primary-color),
        var(--primary-dark)
    );
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.menu-item-info h3 {
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    color: var(--text-light);
    line-height: 1.75;
    margin: 0;
    font-size: 0.98rem;
}

.weekly-menu-section .no-menu {
    text-align: center;
    padding: 4rem 2rem;
}

.weekly-menu-section .no-menu .btn-primary {
    margin-top: 1.75rem;
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.65s ease-out both;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100dvh - var(--nav-h));
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem 1.5rem 3rem;
        gap: 0.25rem;
        transition: transform 0.35s ease, opacity 0.35s ease;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        box-shadow: var(--shadow-hover);
        z-index: 9050;
        align-items: stretch;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding: 0.65rem 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-menu a:not(.btn-reservation)::after {
        display: none;
    }

    .btn-reservation {
        width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        order: 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline {
        color: var(--white);
    }

    .review-card {
        flex: 0 0 calc(100% - 0.5rem);
        min-width: 0;
    }

    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.85rem;
    }

    .menu-item-image,
    .no-image {
        margin: 0 auto;
    }

    .menu-item-price {
        text-align: center;
    }

    .category-nav {
        top: 56px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 280px;
    }

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

    .menu-item-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-item-image-wrapper,
    .menu-item-placeholder {
        margin: 0 auto;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* --- Pizza a kebab tenant overrides: young, warm, street-food friendly --- */
:root {
    --primary-color: #ff6a00;
    --primary-dark: #d94f00;
    --secondary-color: #22110b;
    --text-color: #2f211b;
    --text-light: #72584b;
    --bg-light: #fff4e5;
    --border-color: #ffd7a8;
    --shadow: 0 10px 34px rgba(128, 53, 0, 0.10);
    --shadow-hover: 0 22px 54px rgba(128, 53, 0, 0.18);
}

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 183, 0, 0.20), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(255, 76, 0, 0.14), transparent 24rem),
        var(--bg-light);
}

h1, h2, h3, h4, h5, h6,
.logo {
    font-family: "DM Sans", system-ui, sans-serif;
    letter-spacing: -0.045em;
    font-weight: 800;
}

.logo {
    color: var(--secondary-color);
    text-transform: lowercase;
    position: relative;
}

.logo::before {
    content: "🌯";
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    margin-right: .25rem;
    background: linear-gradient(135deg, #ffb000, #ff4d00);
    box-shadow: 0 8px 22px rgba(255, 106, 0, .30);
}

.site-header.is-scrolled {
    background: rgba(255, 248, 236, 0.92);
}

.nav-menu a:not(.btn-reservation) {
    font-weight: 800;
}

.btn-reservation,
.btn-primary {
    background: linear-gradient(135deg, #ff7a00 0%, #ff3d00 100%);
    box-shadow: 0 12px 28px rgba(255, 89, 0, .28);
}

.btn-reservation:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c1a 0%, #d93a00 100%);
}

.hero {
    min-height: clamp(560px, 78vh, 820px);
}

.hero-slide {
    background-position: center 46%;
}

.hero-overlay {
    background:
        radial-gradient(circle at 72% 30%, rgba(255, 166, 0, 0.34), transparent 22rem),
        linear-gradient(120deg, rgba(24, 10, 2, .82) 0%, rgba(68, 25, 0, .62) 46%, rgba(255, 90, 0, .32) 100%);
}

.hero-panel {
    background: rgba(35, 14, 4, 0.48);
    border: 1px solid rgba(255, 216, 167, 0.22);
    box-shadow: 0 24px 70px rgba(35, 14, 4, .35);
}

.hero-panel::before {
    content: "OTEVŘENO DENNĚ • OPAVSKÁ 160";
    display: inline-flex;
    margin-bottom: 1rem;
    padding: .42rem .78rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #ffe3bd;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    line-height: .98;
}

.section-eyebrow {
    color: var(--primary-dark);
    font-weight: 900;
}

.about-section,
.info-section,
.menu-section,
.gallery-section,
.contact-section,
.reservation-section {
    background: transparent;
}

.about-content,
.info-card,
.menu-category,
.review-card,
.contact-card,
.reservation-form,
.no-events {
    border: 1px solid rgba(255, 141, 34, .22);
    background: rgba(255, 255, 255, .80);
    backdrop-filter: blur(12px);
}

.about-content {
    padding: clamp(1rem, 3vw, 2rem);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-image img,
.gallery-item img {
    filter: saturate(1.12) contrast(1.03);
}

.info-card {
    border-radius: 24px;
    transform: rotate(var(--tilt, 0deg));
}
.info-card:nth-child(1) { --tilt: -1deg; }
.info-card:nth-child(2) { --tilt: 1deg; }
.info-card:nth-child(3) { --tilt: -.6deg; }
.info-card:nth-child(4) { --tilt: .8deg; }

.info-card-icon {
    background: linear-gradient(135deg, #fff0c9, #ffd0a8);
    border-radius: 18px;
    width: 64px;
    height: 64px;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(255, 106, 0, .20);
}

.menu-note {
    text-align: center;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: #fff1d7;
    border: 1px dashed #ff9a2e;
    font-weight: 700;
}

/* Nabídka podle letáku AHLAN */
.menu-section {
    background:
        radial-gradient(circle at 12% 6%, rgba(255, 119, 0, .22), transparent 18rem),
        radial-gradient(circle at 90% 18%, rgba(255, 196, 58, .14), transparent 20rem),
        linear-gradient(180deg, #150c08 0%, #21120a 100%);
    color: #fff7e8;
}

.menu-section .section-eyebrow,
.menu-section .section-title,
.menu-section .section-lead,
.menu-section .page-content-text,
.menu-section .page-content-text a {
    color: #fff7e8;
}

.menu-section .section-eyebrow {
    display: inline-flex;
    padding: .38rem .75rem;
    border-radius: 999px;
    background: rgba(255, 106, 0, .18);
    border: 1px solid rgba(255, 188, 103, .32);
}

.menu-section .section-title {
    color: #ff7a00;
    text-shadow: 0 3px 0 rgba(0,0,0,.25);
}

.menu-section .section-lead {
    color: #ffe1bd;
}

.menu-section .menu-note {
    background: rgba(255, 122, 0, .14);
    border-color: rgba(255, 196, 58, .55);
    color: #fff0d5;
}

.category-nav {
    background: rgba(24, 12, 7, .86);
    border-bottom: 1px solid rgba(255, 188, 103, .25);
}

.category-nav-link {
    color: #fff0d5;
    border-color: rgba(255, 188, 103, .24);
    background: rgba(255,255,255,.06);
    font-weight: 900;
}

.category-nav-link:hover,
.category-nav-link.active {
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
    border-color: transparent;
}

.menu-categories {
    max-width: 1180px;
}

.menu-category {
    padding: clamp(1.1rem, 3vw, 1.65rem);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
        #1c100b;
    border: 1px solid rgba(255, 188, 103, .22);
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.category-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    margin-bottom: 1.15rem;
    padding-bottom: .75rem;
    border-bottom: 2px dashed rgba(255, 122, 0, .45);
}

.category-header h2 {
    color: #ff7a00;
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    margin: 0;
}

.category-header p {
    color: #f8c891;
    max-width: 430px;
    font-weight: 700;
}

.menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem 1rem;
}

.menu-item {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: .8rem;
    padding: .75rem .75rem .75rem .65rem;
    background: rgba(255, 246, 229, .065);
    border: 1px solid rgba(255, 188, 103, .16);
    border-radius: 18px;
    color: #fff7e8;
}

.menu-item:hover {
    border-color: rgba(255, 122, 0, .7);
    box-shadow: 0 16px 34px rgba(0,0,0,.25);
}

.no-image.menu-item-number {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ff7a00, #ff3d00);
    color: #fff;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(255, 87, 0, .26);
}

.menu-item-content h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: .12rem;
}

.menu-item-content p {
    color: #f3b777;
    font-weight: 700;
    font-size: .86rem;
    line-height: 1.35;
}

.menu-item-price {
    align-self: center;
    padding: .34rem .62rem;
    border-radius: 999px;
    background: #f5d2a3;
    color: #201109;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: inset 0 -2px 0 rgba(0,0,0,.12);
}

@media (max-width: 860px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .category-header {
        display: block;
    }
}

@media (max-width: 560px) {
    .menu-item {
        grid-template-columns: 38px 1fr;
    }

    .menu-item-price {
        grid-column: 2;
        justify-self: start;
    }

    .no-image.menu-item-number {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }
}

.category-nav-link,
.menu-item-price {
    border-radius: 999px;
    font-weight: 900;
}

.menu-item {
    border-radius: 22px;
    border-color: rgba(255, 141, 34, .24);
}

.no-image {
    background: linear-gradient(135deg, #ffe6b6, #ff8a35);
    color: #321305;
}

.footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 106, 0, .28), transparent 24rem),
        linear-gradient(165deg, #261005 0%, #120905 100%);
}

@media (max-width: 768px) {
    .logo { font-size: 1.25rem; }
    .hero-panel::before { font-size: .62rem; }
    .about-content { grid-template-columns: 1fr; }
}

/* --- Pizza a kebab: kompletní mobilní polish --- */
@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
        --radius-lg: 20px;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    body {
        font-size: 0.98rem;
        background:
            radial-gradient(circle at 15% 0%, rgba(255, 183, 0, 0.16), transparent 18rem),
            radial-gradient(circle at 95% 4%, rgba(255, 76, 0, 0.10), transparent 16rem),
            var(--bg-light);
    }

    .container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-eyebrow {
        font-size: .68rem;
        letter-spacing: .12em;
        margin-bottom: .5rem;
    }

    .section-title {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
        line-height: 1;
        margin-bottom: .7rem;
    }

    .section-lead {
        font-size: .98rem;
        line-height: 1.55;
        margin-bottom: 1.8rem;
    }

    .nav-container {
        min-height: var(--nav-h);
        padding: .55rem 1rem;
        gap: .75rem;
    }

    .logo {
        min-width: 0;
        max-width: calc(100vw - 5.25rem);
        font-size: clamp(1.02rem, 4.4vw, 1.22rem) !important;
        line-height: 1.08;
        letter-spacing: -.055em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .logo::before {
        flex: 0 0 2rem;
        width: 2rem;
        height: 2rem;
        margin-right: .1rem;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
        border-radius: 15px;
        background: rgba(255, 122, 0, .13);
        border: 1px solid rgba(255, 122, 0, .25);
        color: var(--secondary-color);
        font-size: 1.7rem;
        font-weight: 900;
        line-height: 1;
        box-shadow: 0 10px 22px rgba(255, 106, 0, .12);
    }

    .nav-menu {
        top: var(--nav-h);
        height: calc(100dvh - var(--nav-h));
        padding: 1rem 1rem calc(1.4rem + env(safe-area-inset-bottom));
        background:
            radial-gradient(circle at 20% 0%, rgba(255, 122, 0, .16), transparent 14rem),
            rgba(255, 248, 236, .98);
        overflow-y: auto;
        overscroll-behavior: contain;
        gap: .45rem;
    }

    .nav-menu li {
        padding: 0;
        border: 0;
    }

    .nav-menu a:not(.btn-reservation),
    .btn-reservation {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        width: 100%;
        border-radius: 18px;
        font-size: 1.04rem;
        font-weight: 900;
    }

    .nav-menu a:not(.btn-reservation) {
        background: rgba(255,255,255,.70);
        border: 1px solid rgba(255, 141, 34, .18);
        color: var(--secondary-color);
    }

    .btn-reservation {
        margin-top: .35rem;
        box-shadow: 0 14px 30px rgba(255, 89, 0, .28);
    }

    .hero {
        min-height: auto;
        align-items: flex-end;
        padding: 6.25rem 0 1rem;
        text-align: left;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        padding: 0 1rem;
    }

    .hero-panel {
        padding: 1.1rem;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(35,14,4,.72), rgba(35,14,4,.54));
        backdrop-filter: blur(10px);
    }

    .hero-panel::before {
        max-width: 100%;
        margin-bottom: .75rem;
        padding: .35rem .55rem;
        white-space: normal;
        line-height: 1.25;
        letter-spacing: .08em;
        font-size: .58rem !important;
    }

    .hero h1 {
        font-size: clamp(2rem, 11.5vw, 3.05rem);
        line-height: .96;
        margin-bottom: .75rem;
        text-wrap: balance;
    }

    .hero-lead {
        font-size: .98rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero-actions {
        gap: .65rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline,
    .about-text .btn-primary {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        text-align: center;
        padding: .78rem 1rem;
        border-radius: 999px;
    }

    .about-content {
        gap: 1.1rem;
        padding: .85rem;
        border-radius: 24px;
    }

    .about-image {
        border-radius: 20px;
        aspect-ratio: 16 / 11;
    }

    .about-text {
        text-align: left;
        padding: .1rem .2rem .25rem;
    }

    .about-text h2 {
        font-size: clamp(1.65rem, 8vw, 2.05rem);
        line-height: 1.05;
        margin-bottom: .75rem;
    }

    .about-text p {
        font-size: .98rem;
        line-height: 1.62;
        margin-bottom: .85rem;
    }

    .info-grid,
    .events-grid,
    .gallery-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .info-card {
        display: grid;
        grid-template-columns: 54px 1fr;
        align-items: center;
        text-align: left;
        gap: .85rem;
        padding: 1rem;
        border-radius: 20px;
        transform: none !important;
    }

    .info-card-icon-wrap {
        min-height: 0;
        margin: 0;
    }

    .info-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.55rem;
        border-radius: 16px;
    }

    .info-card h3 {
        grid-column: 2;
        font-size: 1.08rem;
        margin-bottom: .15rem;
    }

    .info-card p {
        grid-column: 2;
        font-size: .9rem;
        line-height: 1.45;
    }

    .reviews-rating-row {
        gap: .6rem;
        flex-wrap: wrap;
    }

    .reviews-rating-num {
        font-size: 2rem;
    }

    .review-card {
        flex-basis: 86vw;
        padding: 1.05rem;
        border-radius: 20px;
    }

    .category-nav {
        top: var(--nav-h);
        padding: .65rem 0;
        overflow: hidden;
    }

    .category-nav-container {
        padding: 0 .75rem;
    }

    .category-nav-list {
        gap: .45rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: .15rem;
        scrollbar-width: none;
    }

    .category-nav-list::-webkit-scrollbar {
        display: none;
    }

    .category-nav-link {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding: .48rem .72rem;
        font-size: .82rem;
        white-space: nowrap;
    }

    .menu-section .section-title {
        font-size: clamp(2rem, 10vw, 2.7rem);
        text-shadow: 0 2px 0 rgba(0,0,0,.25);
    }

    .menu-categories {
        max-width: none;
    }

    .menu-category {
        padding: .85rem;
        border-radius: 24px;
        margin-bottom: 1rem;
    }

    .category-header {
        display: block;
        text-align: left;
        margin-bottom: .85rem;
        padding-bottom: .65rem;
    }

    .category-header h2 {
        font-size: clamp(1.55rem, 9vw, 2.25rem);
        line-height: .95;
        overflow-wrap: anywhere;
    }

    .category-header p {
        margin-top: .45rem;
        font-size: .9rem;
        line-height: 1.4;
    }

    .menu-items {
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .menu-item {
        grid-template-columns: 38px minmax(0, 1fr) !important;
        align-items: start;
        text-align: left !important;
        gap: .65rem;
        padding: .65rem;
        border-radius: 18px;
    }

    .menu-item-image,
    .no-image,
    .no-image.menu-item-number {
        width: 38px;
        height: 38px;
        min-width: 38px;
        margin: 0 !important;
        border-radius: 13px;
    }

    .menu-item-content h3 {
        font-size: .98rem;
        line-height: 1.2;
        margin-bottom: .14rem;
    }

    .menu-item-content p {
        font-size: .8rem;
        line-height: 1.34;
    }

    .menu-item-price {
        grid-column: 2;
        justify-self: start;
        margin-top: .3rem;
        padding: .28rem .55rem;
        font-size: .9rem;
        line-height: 1.1;
        text-align: left;
    }

    .menu-note {
        font-size: .9rem;
        line-height: 1.45;
        padding: .8rem .9rem;
        border-radius: 16px;
    }

    .gallery-item,
    .gallery-photo {
        border-radius: 20px;
    }

    .map-container,
    .static-map-link,
    .static-map-image {
        min-height: 240px;
        border-radius: 20px;
    }

    .contact-card,
    .reservation-form,
    .no-events {
        padding: 1rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    input,
    textarea,
    select,
    button {
        font-size: 16px;
    }

    .footer {
        padding-top: 2.5rem;
    }

    .footer-content {
        margin-bottom: 1.6rem;
    }

    .footer-section {
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255, 188, 103, .13);
    }

    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: .55rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: .93rem;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 390px) {
    .container,
    .footer-container,
    .hero-content {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 12vw, 2.55rem);
    }

    .menu-category {
        padding: .7rem;
    }

    .menu-item {
        grid-template-columns: 34px minmax(0, 1fr) !important;
        gap: .55rem;
    }

    .menu-item-image,
    .no-image,
    .no-image.menu-item-number {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: .85rem;
    }
}
