/* =====================================================
   Mamičkine pirohy – moderný minimalistický štýl
   Farebná paleta inšpirovaná pôvodnou značkou
   ===================================================== */

:root {
    --bg:        #ffffff;
    --bg-soft:   #faf7f2;
    --bg-dark:   #2a2118;
    --ink:       #1c1612;
    --ink-soft:  #5b5048;
    --muted:     #8a8079;
    --line:      #ece5dc;
    --accent:    #b8895a;
    --accent-d:  #8f6940;
    --accent-l:  #e8d7be;

    --radius:    14px;
    --radius-sm: 8px;

    --shadow:    0 12px 40px -12px rgba(28, 22, 18, .15);
    --shadow-sm: 0 4px 14px -6px rgba(28, 22, 18, .12);

    --container: 1200px;
}

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

html { scroll-behavior: auto; }

body {
    margin: 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; font-family: 'DM Sans', sans-serif; font-weight: 600; letter-spacing: -.005em; }
h4 { font-size: .95rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.script,
.script-heading {
    font-family: 'Caveat', cursive;
    font-weight: 600;
    color: var(--accent-d);
}
.script-heading { font-size: 2.2rem; line-height: 1; margin-bottom: 1rem; }

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: .8rem;
}
.eyebrow--light { color: var(--accent-l); }

.muted { color: var(--muted); }
.muted-light { color: rgba(255,255,255,.55); }
.light { color: #fff; }
.center { text-align: center; }
.small { font-size: .9rem; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}
.brand-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
}
.brand-tag {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding: 6px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-soft);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(184,137,90,.18), transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(232,215,190,.45), transparent 55%),
        url('../images/hero.svg') center/cover no-repeat,
        var(--bg-soft);
    opacity: .96;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.0) 40%, rgba(255,255,255,.85) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 24px 100px;
    max-width: 820px;
}
.hero-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    margin-bottom: .4em;
}
.hero-title .script {
    display: inline-block;
    font-size: 1.2em;
    transform: translateY(.05em) rotate(-2deg);
    margin-left: .1em;
}
.hero-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 44px;
    border: 1.5px solid var(--ink-soft);
    border-radius: 14px;
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 4px; height: 8px;
    background: var(--ink-soft);
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(14px); opacity: .3; }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-d);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: clamp(32px, 4vw, 48px) 0 clamp(48px, 6vw, 80px);
}
.section--soft { background: var(--bg-soft); }
.section--dark {
    background: var(--bg-dark);
    color: #f7f1e8;
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }

.section-head {
    margin-bottom: 56px;
    max-width: 720px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head h2 { margin-bottom: .3em; }

/* ---------- GRID HELPERS ---------- */
.grid {
    display: grid;
    gap: 56px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.align-center { align-items: center; }

/* ---------- O NÁS ---------- */
.story-media {
    position: relative;
    aspect-ratio: 5 / 6;
}
.story-img {
    position: absolute;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.story-img--1 {
    width: 70%;
    height: 70%;
    top: 0; left: 0;
    background-image: url('../images/story-1.svg');
}
.story-img--2 {
    width: 60%;
    height: 60%;
    bottom: 0; right: 0;
    background-image: url('../images/story-2.svg');
    border: 8px solid #fff;
}
.story-text { padding-left: 20px; }
.signature {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: var(--accent-d);
    margin-top: 1.5em;
}

/* ---------- HODNOTY ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.feature {
    text-align: center;
    padding: 24px;
}
.feature:not(.feature-card--sm) .feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.feature:not(.feature-card--sm) .feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature:not(.feature-card--sm) p { font-size: .92rem; margin: 0; }

/* ---------- PONUKA ---------- */
.menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
}
.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 4px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}
.menu-item:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 28px;
}
.menu-item:nth-child(even) {
    padding-left: 28px;
}
.menu-item:hover {
    background: var(--bg-soft);
}
.menu-icon {
    width: 56px; height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-icon img { width: 100%; height: 100%; }
.menu-body { flex: 1; }
.menu-name {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--ink);
}
.menu-note {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
}
.menu-weight {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--accent);
    background: var(--accent-l);
    padding: 6px 12px;
    border-radius: 999px;
}
.extras {
    margin-top: 56px;
    font-size: 1.05rem;
}

/* ---------- PARTNERI ---------- */
.partners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}
.partner-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    width: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-card:hover,
.partner-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-l);
    outline: none;
}
.partner-logo {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    padding: 10px;
}
.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.partner-meta { flex: 1; min-width: 0; }
.partner-meta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin: 0 0 4px;
    color: var(--ink);
}
.partner-meta p { margin: 0 0 8px; }
.partner-count {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-l);
    padding: 4px 10px;
    border-radius: 999px;
}
.partner-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent-d);
    transition: gap .2s ease;
}
.partner-card:hover .partner-cta { gap: 10px; }

/* ---------- MODAL ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.modal[hidden] { display: none; }
.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 22, 18, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.modal-dialog {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px -20px rgba(28,22,18,.45);
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(16px) scale(.98);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal-dialog {
    transform: none;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px 16px;
    border-bottom: 1px solid var(--line);
}
.modal-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}
.modal-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    padding: 6px;
    flex-shrink: 0;
}
.modal-brand h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    margin: 0;
    line-height: 1.1;
}
.modal-brand p { margin: 2px 0 0; }
.modal-close {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--bg-soft);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.modal-close:hover {
    background: var(--ink);
    color: #fff;
}
.modal-note {
    font-size: .88rem;
    color: var(--accent-d);
    background: var(--accent-l);
    padding: 12px 28px;
    margin: 0;
    text-align: center;
}
.modal-body {
    overflow-y: auto;
    padding: 8px 28px 28px;
    -webkit-overflow-scrolling: touch;
}

/* skupiny predajní */
.loc-group { margin-top: 24px; }
.loc-group:first-child { margin-top: 16px; }
.loc-city {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--accent-d);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.loc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
}
.loc-list li { margin: 0; }

.loc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: background .2s ease, color .2s ease, transform .2s ease;
    text-decoration: none;
}
.loc-link:hover,
.loc-link:focus-visible {
    background: var(--bg-soft);
    color: var(--accent-d);
    outline: none;
}
.loc-link:hover .loc-arrow,
.loc-link:focus-visible .loc-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.loc-pin {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-l);
    color: var(--accent-d);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}
.loc-pin i {
    font-size: 14px;
    color: inherit;
    line-height: 1;
}
.loc-link:hover .loc-pin {
    background: var(--accent);
    color: #fff;
}
.loc-link:hover .loc-pin i { color: #fff; }
.loc-text { flex: 1; min-width: 0; line-height: 1.3; }
.loc-line {
    display: block;
    font-weight: 500;
    font-size: .94rem;
}
.loc-sub {
    display: block;
    font-size: .8rem;
    color: var(--muted);
}
.loc-sub em { font-style: normal; color: var(--accent); }
.loc-arrow {
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    display: flex;
    align-items: center;
}
.loc-arrow i {
    font-size: 12px;
    color: var(--accent);
    line-height: 1;
}
.loc-link:hover .loc-arrow,
.loc-link:focus-visible .loc-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* scroll lock - aplikované JS */
body.no-scroll { overflow: hidden; }

/* ---------- GALÉRIA ---------- */
.gallery-filter {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 10px 20px;
    font-size: .85rem;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
    transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    transition: transform .35s ease, opacity .35s ease;
}
.gallery-item.is-hidden {
    display: none;
}
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-soft);
    transition: transform .5s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* ---------- KONTAKT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 28px;
}
.contact-card h3 {
    color: var(--accent-l);
    font-family: 'Inter', sans-serif;
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.contact-card p { color: rgba(255,255,255,.85); margin: 0 0 6px; }
.contact-card strong { color: #fff; font-weight: 600; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #14100c;
    color: rgba(255,255,255,.65);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.footer-col p,
.footer-col li { color: rgba(255,255,255,.6); }
.brand--footer .brand-name { color: #fff; }
.brand--footer .brand-tag { color: rgba(255,255,255,.45); }
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li { margin-bottom: 8px; }
.footer-nav a { color: rgba(255,255,255,.7); }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

/* ---------- ANIMÁCIE ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .grid-2,
    .features,
    .gallery,
    .contact-grid,
    .menu-grid,
    .partners,
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .menu-item:nth-child(odd) { border-right: none; padding-right: 4px; }
    .menu-item:nth-child(even) { padding-left: 4px; }
}
@media (max-width: 720px) {
    .partner-card {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }
    .partner-meta { width: 100%; text-align: center; }
    .partner-cta { margin: 0 auto; }

    .modal { padding: 0; }
    .modal-dialog {
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    .loc-list { grid-template-columns: 1fr; }
    .modal-header { padding: 18px 20px 14px; }
    .modal-brand h2 { font-size: 1.4rem; }
    .modal-brand img { width: 48px; height: 48px; }
    .modal-body { padding: 8px 16px 20px; }
    .modal-note { padding: 10px 16px; font-size: .82rem; }

    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 16px 24px 24px;
        box-shadow: var(--shadow-sm);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .25s ease, opacity .25s ease;
    }
    .nav-links.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }
    .nav-toggle { display: flex; }

    .grid-2,
    .features,
    .gallery,
    .contact-grid,
    .menu-grid,
    .partners,
    .footer-grid { grid-template-columns: 1fr; }

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

    .story-text { padding-left: 0; }
    .story-media { aspect-ratio: 4 / 3; max-width: 480px; margin: 0 auto; }
    .menu-item { padding: 22px 4px !important; }
    .brand-tag { display: none; }
    .hero { min-height: 78vh; }
    .hero-inner { padding: 60px 24px 80px; }
}
@media (max-width: 480px) {
    .features { grid-template-columns: 1fr; }
    .hero-actions .btn { flex: 1; }
}

/* =============================================
   Overrides & responsive (konsolidované)
   ============================================= */

/* Základné */
body { overflow-x: hidden; }

/* Nav — Outfit font, active stav */
.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
    padding: 6px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-active {
    color: var(--accent);
    font-weight: 700;
}
.nav-links a.nav-active::after,
.nav-links a:hover::after { transform: scaleX(1); }

/* Logo v headeri */
.brand-logo-full {
    display: block;
    height: 72px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

/* Rotujúci eyebrow */
.eyebrow--rotate {
    position: relative;
    display: inline-block;
    min-width: 320px;
    max-width: 90vw;
    height: 2.2em;
    overflow: visible;
    vertical-align: middle;
    font-size: 1rem;
    letter-spacing: .18em;
    white-space: nowrap;
}
.rotate-item {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease;
    white-space: nowrap;
}
.rotate-item.is-active { opacity: 1; transform: translateY(0); }
.rotate-item.is-exit   { opacity: 0; transform: translateY(-14px); }

/* Sekcia o-nas */
.section--onas { background: var(--bg-soft); padding-top: 28px !important; padding-bottom: 32px !important; }

.onas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
    margin-top: 1.25rem;
}
.onas-right { display: flex; flex-direction: column; gap: 1rem; }

.story-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}
.story-media--tall {
    aspect-ratio: unset;
    height: 100%;
    min-height: 340px;
    overflow: hidden;
}
.story-img {
    position: absolute;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}
.story-img--1 { width: 62%; height: 58%; top: 0; left: 0; }
.story-img--2 { width: 54%; height: 50%; bottom: 0; right: 0; border: 6px solid #fff; }

.story-text { padding-left: 0; }
.story-text p { margin-bottom: .4rem; font-size: .92rem; }
.signature { font-family: 'Caveat', cursive; font-size: 1.4rem; color: var(--accent); margin-top: .5rem !important; }

/* Kompaktné feature kartičky */
.features--compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}
.feature-card--sm {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(28,22,18,.06);
    border: 1px solid rgba(184,137,90,.1);
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    transition: box-shadow .3s ease, transform .3s ease;
}
.feature-card--sm:hover {
    box-shadow: 0 6px 24px rgba(28,22,18,.1);
    transform: translateY(-2px);
}
.feature-card--sm .feature-icon {
    width: 44px; height: 44px;
    min-width: 44px; max-width: 44px;
    border-radius: 10px;
    background: rgba(184,137,90,.12);
    border: none;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; flex-grow: 0;
    margin: 2px 0 0 0;
    color: var(--accent);
    align-self: flex-start;
}
.feature-card--sm .feature-icon svg { width: 20px; height: 20px; min-width: 20px; color: var(--accent); }
.feature-card--sm > div { flex: 1; min-width: 0; text-align: left; }
.feature-card--sm h4 { font-family: 'DM Sans', sans-serif; font-size: .92rem; font-weight: 700; margin: 0 0 .25rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feature-card--sm p { font-size: .80rem; line-height: 1.5; margin: 0; color: var(--ink-soft); display: block; overflow: hidden; max-height: calc(1.5em * 2); }

/* CTA tlačidlo */
.onas-cta { margin-top: 1rem; display: flex; justify-content: center; }
.btn-accent-outline {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-appearance: none;
    appearance: none;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.75rem;
    border: 2px solid var(--accent);
    border-radius: 999px;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-size: .9rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    background: transparent;
    transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
    cursor: pointer; text-decoration: none;
}
.btn-accent-outline:hover {
    background: var(--accent); color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,137,90,.35);
}

/* Šúlance banner */
.sulance-banner {
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    margin-top: 2rem; padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(184,137,90,.12), rgba(184,137,90,.06));
    border: 1.5px solid rgba(184,137,90,.35);
    border-radius: 14px; color: var(--ink);
}
.sulance-banner svg { color: var(--accent); flex-shrink: 0; }
.sulance-banner p { margin: 0; font-size: 1rem; }
.sulance-banner strong { color: var(--accent); }

/* Partneri */
.partners { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 880px; margin: 0 auto; }
.partner-card {
    display: flex; align-items: center; gap: 24px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    text-align: left; cursor: pointer; font: inherit; color: inherit; width: 100%;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent-l); }
.partner-logo {
    width: 84px; height: 84px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-soft); border-radius: var(--radius-sm); padding: 10px;
}
.partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; background: transparent; }
.partner-meta { flex: 1; }
.partner-meta h3 { margin: 0 0 4px; font-size: 1.1rem; }
.partner-count {
    display: inline-block; margin-top: 8px;
    font-size: .78rem; font-weight: 600; letter-spacing: .1em;
    color: var(--accent); background: var(--accent-l);
    padding: 4px 10px; border-radius: 999px;
}

/* Galéria filter */
.gallery-filter {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px; margin-bottom: 32px; padding-bottom: 4px;
    scrollbar-width: none;
}
.gallery-filter::-webkit-scrollbar { display: none; }
.filter-btn {
    padding: 9px 20px; border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff; color: var(--ink-soft);
    font-size: .85rem; font-weight: 500; cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    white-space: nowrap; flex-shrink: 0;
}
.filter-btn.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.filter-btn:hover:not(.is-active) { border-color: var(--accent); color: var(--accent); }

/* Kontakt */
.section--dark { position: relative; overflow: hidden; }
.kontakt-deco {
    position: absolute; left: -30px; top: 50%; transform: translateY(-50%);
    width: 280px; height: 400px; pointer-events: none; z-index: 0;
}
.kontakt-deco svg { width: 100%; height: 100%; }
.section--dark .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 2rem; }
.contact-card {
    position: relative; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px; padding: 2rem 1.75rem; overflow: hidden;
    transition: background .35s, border-color .35s, transform .35s;
}
.contact-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg,rgba(184,137,90,.18),transparent 60%);
    opacity: 0; transition: opacity .35s; border-radius: inherit;
}
.contact-card:hover { background: rgba(255,255,255,.1); border-color: rgba(184,137,90,.4); transform: translateY(-5px); }
.contact-card:hover::before { opacity: 1; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(184,137,90,.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: background .35s, transform .35s;
}
.contact-card:hover .contact-icon { background: rgba(184,137,90,.35); transform: scale(1.08) rotate(-3deg); }
.contact-icon svg { width: 22px; height: 22px; color: var(--accent-l); }
.contact-card h3 { font-size: 1rem; color: #fff; margin: 0 0 .5rem; font-family: 'DM Sans',sans-serif; font-weight: 600; }
.contact-card p { color: rgba(255,255,255,.75); margin: 0 0 .4rem; font-size: .9rem; }
.contact-card .small { font-size: .82rem; }
.contact-card strong { color: rgba(255,255,255,.95); }
.contact-card .muted-light { color: rgba(255,255,255,.45); font-size: .78rem; }

/* Footer */
.site-footer { background: #14100c; color: rgba(255,255,255,.65); padding: 48px 0 24px; position: relative; overflow: hidden; }
.footer-deco {
    position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
    width: 320px; height: 420px; pointer-events: none; z-index: 0;
}
.footer-deco svg { width: 100%; height: 100%; }
.footer-grid, .footer-bottom { position: relative; z-index: 1; }
.footer-grid--centered { display: flex; justify-content: center; }
.footer-col--brand { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 420px; gap: 1rem; }
.footer-logo-link { display: inline-block; }
.footer-logo {
    height: 100px; width: auto; object-fit: contain; background: transparent;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), filter .4s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.footer-logo-link:hover .footer-logo {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 6px 20px rgba(184,137,90,.5)) brightness(1.08);
}
.footer-col--brand .muted { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.6; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); margin-top: 24px; text-align: center; }
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.35); }

/* =============================================
   Sekcia Kde nás kúpite — padding
   ============================================= */
#ponuka { padding-top: 32px; }

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

/* Tablet landscape */
@media (max-width: 1024px) {
    .nav-links { gap: 22px; }
}

/* Tablet portrait */
@media (max-width: 860px) {
    .brand-logo-full { height: 54px; }
    .onas-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-media, .story-media--tall { aspect-ratio: 4/3; height: auto; min-height: unset; overflow: hidden; width: 100%; }
    .story-img--1 { width: 60%; height: 70%; }
    .story-img--2 { width: 52%; height: 60%; }
    .onas-cta { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .partners { grid-template-columns: 1fr; }
}

/* Mobil */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(300px, 80vw);
        background: #fff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 24px;
        box-shadow: -8px 0 40px rgba(28,22,18,.15);
        z-index: 100;
        overflow-y: auto;
    }
    .nav-links.is-open { display: flex; }
    .nav-links a { font-size: 1.05rem; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .brand-logo-full { height: 44px; }
    .eyebrow--rotate { min-width: 200px; font-size: .88rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-icon { width: 38px; height: 38px; border-radius: 10px; margin-bottom: .65rem; }
    .contact-icon svg { width: 18px; height: 18px; }
    .contact-card { padding: 1.4rem 1.25rem; }
    .features--compact { grid-template-columns: 1fr; }
    .partner-card { flex-direction: column; align-items: center; text-align: center; }
    .partner-logo { margin: 0 auto; }
    .partner-meta { text-align: center; }
    .filter-btn { font-size: .78rem; padding: 7px 14px; }
    .sulance-banner { flex-direction: column; text-align: center; }
    .footer-logo { height: 74px; }
    .site-footer { padding: 32px 0 20px; }
    .footer-deco { display: none; }
    .kontakt-deco { display: none; }
    .onas-cta { justify-content: center; }
    .btn-accent-outline { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
    .brand-logo-full { height: 38px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions .btn { width: 100%; text-align: center; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 2rem; }
    .container { padding: 0 14px; }
}

/* Modal */
.modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    background: rgba(28,22,18,.55);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
}
.modal.is-open { opacity: 1; pointer-events: all; }
.modal[hidden] { display: none; }
.modal-dialog {
    position: relative; background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px -20px rgba(28,22,18,.45);
    width: 100%; max-width: 720px; max-height: 92vh;
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateY(16px) scale(.98);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal-dialog { transform: none; }
.modal-header {
    position: sticky; top: 0; z-index: 10; background: #fff;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 24px 16px;
    border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.modal-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.modal-brand img { width: 56px; height: 56px; object-fit: contain; background: var(--bg-soft); border-radius: var(--radius-sm); padding: 6px; flex-shrink: 0; }
.modal-brand h2 { font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; margin: 0; line-height: 1.1; }
.modal-brand p { margin: 2px 0 0; }
.modal-close {
    flex-shrink: 0; width: 40px; height: 40px;
    background: var(--bg-soft); border: none; border-radius: 50%;
    cursor: pointer; color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--ink); color: #fff; }
.modal-note {
    font-size: .85rem; color: var(--accent-d);
    background: var(--accent-l); padding: 10px 24px; margin: 0;
    border-bottom: 1px solid var(--accent-l);
    flex-shrink: 0;
}
.modal-body {
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    flex: 1; min-height: 0; padding: 16px 24px 24px;
}
.modal-overlay { position: absolute; inset: 0; z-index: -1; cursor: default; }

@media (max-width: 540px) {
    .modal { align-items: flex-end; padding: 0; }
    .modal-dialog { border-radius: 16px 16px 0 0; max-height: 90vh; }
    .modal-header { padding: 16px 16px 12px; }
    .modal-body { padding: 12px 16px 24px; }
}

/* body.no-scroll iOS fix */
body.no-scroll { overflow: hidden; position: fixed; width: 100%; }

/* Scroll margin */
section[id] { scroll-margin-top: 0; }

/* =============================================
   Background images — presunuté z inline štýlov
   ============================================= */

/* O nás sekcia */
.story-img--onas-l { background-image: url('../images/o_nas_left.jpg'); }
.story-img--onas-r { background-image: url('../images/o_nas_right.jpg'); }

/* Galéria — balenie */
.gi--b1 { background-image: url('../images/gallery/balenie-1.jpg'); }
.gi--b2 { background-image: url('../images/gallery/balenie-2.jpg'); }
.gi--b3 { background-image: url('../images/gallery/balenie-3.jpg'); }
.gi--b4 { background-image: url('../images/gallery/balenie-4.jpg'); }

/* Galéria — príprava */
.gi--p1 { background-image: url('../images/gallery/priprava-1.jpg'); }
.gi--p2 { background-image: url('../images/gallery/priprava-2.jpg'); }
.gi--p3 { background-image: url('../images/gallery/priprava-3.jpg'); }
.gi--p4 { background-image: url('../images/gallery/priprava-4.jpg'); }

/* Galéria — servírovanie */
.gi--s1 { background-image: url('../images/gallery/servirovanie-1.jpg'); }
.gi--s2 { background-image: url('../images/gallery/servirovanie-2.jpg'); }
.gi--s3 { background-image: url('../images/gallery/servirovanie-3.jpg'); }
.gi--s4 { background-image: url('../images/gallery/servirovanie-4.jpg'); }
