:root {
    --cream: #FDFBF7;
    --espresso: #2C211B;
    --tomato: #D63C2A;
    --olive: #7A8256;
    
    --cream-dark: #f5f2ea;
    --espresso-light: #524741;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--cream);
    color: var(--espresso);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }

/* Navigation */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44,33,27,0.08);
}
.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.brand span { color: var(--tomato); }

.nav-links {
    display: none;
    gap: 3rem;
}
@media (min-width: 768px) {
    .nav-links { display: flex; }
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
    cursor: pointer;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--tomato);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--espresso);
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    transition: all 0.2s;
}
.nav-cta:hover {
    background-color: var(--espresso);
    color: var(--cream);
}

/* Hero */
.lunch-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .lunch-hero {
        grid-template-columns: 1.2fr 1fr;
        padding: 6rem 4rem 8rem;
        gap: 5rem;
    }
}
.hero-text-col .eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--olive);
    display: block;
    margin-bottom: 1.5rem;
}
.hero-text-col h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.hero-text-col p {
    font-size: 1.125rem;
    color: var(--espresso-light);
    max-width: 500px;
    margin-bottom: 3rem;
}
.action-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.btn-primary {
    background-color: var(--tomato);
    color: #fff;
    padding: 1rem 2.25rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.btn-primary:hover { background-color: #ba2f1f; }

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.status-indicator .dot {
    width: 8px; height: 8px;
    background-color: var(--olive);
    border-radius: 50%;
    position: relative;
}
.status-indicator .dot::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px;
    right: -4px; bottom: -4px;
    background-color: var(--olive);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}
.hero-image-col img {
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(44,33,27,0.1);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Rhythm Schedule (Signature Detail) */
.rhythm-schedule {
    background-color: var(--cream-dark);
}
.schedule-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 30px 60px rgba(44,33,27,0.06);
}
@media (min-width: 1024px) {
    .schedule-container {
        grid-template-columns: 350px 1fr;
        transform: translateY(-4rem);
    }
}
.schedule-sidebar {
    background-color: var(--cream-dark);
    padding: 4rem 2rem;
}
.schedule-sidebar h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.1;
}
.tabs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tab-trigger {
    background: transparent;
    border: none;
    text-align: left;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--espresso-light);
}
.tab-trigger:hover {
    background-color: rgba(44,33,27,0.03);
}
.tab-trigger.active {
    border-left-color: var(--tomato);
    background-color: var(--cream);
    color: var(--espresso);
    box-shadow: -10px 0 20px rgba(44,33,27,0.02);
}
.tab-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.tab-desc {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.schedule-content {
    position: relative;
    background-color: var(--cream);
    padding: 4rem 3rem;
}
@media (min-width: 1024px) {
    .schedule-content {
        padding: 5rem 6rem;
    }
}
.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.tab-panel.active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 768px) {
    .panel-inner {
        grid-template-columns: 1fr 1fr;
    }
}
.panel-text h3 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.panel-text p {
    color: var(--espresso-light);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}
.btn-secondary {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
    color: var(--tomato);
    border-bottom: 1.5px solid var(--tomato);
    padding-bottom: 0.25rem;
    transition: opacity 0.2s;
}
.btn-secondary:hover { opacity: 0.7; }

.panel-images {
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.panel-images img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(44,33,27,0.1);
}
.grid-images img {
    aspect-ratio: 1;
    object-fit: cover;
}
.welcome-img {
    aspect-ratio: 4/3;
    object-fit: contain;
    mix-blend-mode: multiply;
    box-shadow: none !important;
}

/* Editorial Proof */
.editorial-proof {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid rgba(44,33,27,0.1);
}
.proof-text .quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.4;
    font-style: italic;
    color: var(--espresso);
    margin-bottom: 2rem;
}
.proof-text .author {
    font-size: 0.95rem;
    color: var(--olive);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 3.5rem;
}
.proof-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.9;
}
.proof-badges img {
    height: 70px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: darken;
}

/* Contact Area */
.contact-area {
    padding: 6rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }
}
.map-illustration {
    background-color: var(--cream-dark);
    border-radius: 4px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-image: radial-gradient(rgba(44,33,27,0.06) 2px, transparent 2px);
    background-size: 30px 30px;
    border: 1px solid rgba(44,33,27,0.05);
}
.location-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(44,33,27,0.08);
    width: 100%;
    max-width: 340px;
}
.loc-icon {
    color: var(--tomato);
    margin-bottom: 1.5rem;
}
.location-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.location-card p {
    color: var(--espresso-light);
}
.location-card .coords {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--olive);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hours-contact {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
}
.hc-block h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(44,33,27,0.1);
    padding-bottom: 0.75rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(44,33,27,0.15);
    transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.6; }
.contact-link .label {
    color: var(--espresso-light);
    font-size: 1.05rem;
}
.contact-link .value {
    font-weight: 500;
    font-size: 1.05rem;
}

.hours-list {
    list-style: none;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(44,33,27,0.1);
    font-size: 1.05rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:first-child { color: var(--espresso-light); }
.hours-list li span:last-child { font-weight: 500; }

/* Footer */
.site-footer {
    background-color: var(--espresso);
    color: var(--cream);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.site-footer .footer-legal {
    font-size: 0.95rem;
    opacity: 0.9;
}
.site-footer .footer-peter {
    opacity: 0.5;
    font-size: 0.85rem;
}


/* Word-safe Slovak typography: never split words like Tatrami into Tatr/ami. */
:where(h1,h2,h3,h4,p,a,span,li,strong,button,label,input,textarea) {
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

:where(h1,h2,h3,h4) {
    text-wrap: balance;
}

:where(p,li,.lead,.brand-desc) {
    text-wrap: pretty;
}

.nowrap { white-space: nowrap; }
