/* =====================================================
   POD VOLAT — glavni stilovi
   Koncept: kamena kuća, roštilj, dim i žar. Toplo, gusto,
   zanatski — ne "cream + terracotta" default, ne neon-na-crnom.
   ===================================================== */

:root {
    --charcoal:      #211C18;   /* dominant dark bg (sekcije, footer) */
    --charcoal-2:    #2B241F;   /* slightly lighter panel */
    --parchment:     #F3EBDD;   /* warm light bg */
    --parchment-2:   #EAE0CC;
    --cream:         #FBF7EE;   /* header/topbar svijetla pozadina */
    --ember:         #6B1F1F;   /* GLAVNI akcent - bordo/vinska boja */
    --ember-bright:  #8A2C2C;
    --wine-deep:     #3D1210;   /* najtamnija bordo - topbar pozadina */
    --brass:         #B8935A;   /* gold/brass akcent */
    --wine:          #5C1A1A;   /* dodatni tamni akcent */
    --stone:         #6E655A;   /* muted secondary text */
    --stone-light:   #9A9184;
    --cream-text:    #F6F1E7;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 4px;
    --shadow: 0 12px 30px -12px rgba(20, 15, 10, 0.45);
    --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body,
input, textarea, select, button,
table, th, td {
    font-family: var(--font-body);
}
body {
    margin: 0;
    background: var(--parchment);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0 0 .5em;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}
p { margin: 0 0 1em; }
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

:focus-visible {
    outline: 3px solid var(--ember);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Animacije ---------- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}
@keyframes emberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.045); }
}
@keyframes dividerDraw {
    from { stroke-dashoffset: 420; }
    to { stroke-dashoffset: 0; }
}

.hero-anim {
    opacity: 0;
    animation: fadeSlideUp .7s cubic-bezier(.2,.7,.3,1) forwards;
    animation-delay: calc(var(--d, 0) * .12s);
}
.flame-badge { animation: emberPulse 3.2s ease-in-out infinite; }

.ember-divider path {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: dividerDraw 1.4s ease forwards;
    animation-play-state: paused;
}
.ember-divider.in-view path { animation-play-state: running; }

/* ---------- Jezički prekidač ---------- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--stone-light);
    margin-right: 4px;
}
.lang-switch a { color: var(--stone-light); padding: 3px 4px; border-radius: 3px; transition: color .15s ease; }
.lang-switch a.active { color: var(--ember-bright); font-weight: 700; }
.lang-switch a:hover { color: var(--cream-text); }
.lang-switch span { color: rgba(246,241,231,.3); }
@media (max-width: 1080px) { .lang-switch { margin-right: 0; } }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '◆';
    font-size: 8px;
    color: var(--brass);
}

/* ---------- Ember divider (signature element) ---------- */
.ember-divider {
    width: 100%;
    height: 22px;
    margin: 0 auto;
    display: block;
}
.ember-divider path { fill: none; stroke-linecap: round; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-ember {
    background: var(--ember);
    color: var(--cream-text);
    box-shadow: var(--shadow);
}
.btn-ember:hover { background: var(--ember-bright); }
.btn-outline {
    background: transparent;
    border-color: rgba(246,241,231,.35);
    color: var(--cream-text);
}
.btn-outline:hover { border-color: var(--ember-bright); color: var(--ember-bright); }
.btn-dark {
    background: var(--charcoal);
    color: var(--cream-text);
}
.btn-dark:hover { background: #35291f; }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Cookie baner ---------- */
.cookie-banner {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 150;
    background: var(--charcoal);
    border-top: 1px solid rgba(184,147,90,.3);
    box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
}
.cookie-banner-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-banner-inner p {
    margin: 0;
    color: var(--stone-light);
    font-size: 13.5px;
    line-height: 1.5;
    flex: 1;
    min-width: 240px;
}
.cookie-banner-inner p a { color: var(--brass); text-decoration: underline; }
.cookie-banner-inner .btn { flex: none; }
@media (max-width: 600px) {
    .cookie-banner-inner { padding: 16px 18px; }
    .cookie-banner-inner .btn { width: 100%; justify-content: center; }
}

/* ---------- Header ---------- */
/* ---------- Topbar (gornja traka) ---------- */
.topbar {
    background: var(--wine-deep);
    color: var(--stone-light);
    font-family: var(--font-mono);
    font-size: 12.5px;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}
.topbar-rating { display: flex; align-items: center; gap: 8px; color: var(--cream-text); white-space: nowrap; }
.topbar-rating .stars { color: var(--brass); letter-spacing: 1px; }
.topbar-right { display: flex; align-items: center; gap: 22px; white-space: nowrap; }
.topbar-right a { color: var(--cream-text); display: inline-flex; align-items: center; gap: 6px; }
.topbar-right a:hover { color: var(--brass); }
.topbar .lang-switch { color: var(--stone-light); margin: 0; }
.topbar .lang-switch a { color: var(--stone-light); }
.topbar .lang-switch a.active { color: var(--brass); }
@media (max-width: 900px) { .topbar { display: none; } }

/* ---------- Header (glavno zaglavlje - krem pozadina) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 238, .97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(184, 147, 90, .3);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 96px;
    gap: 18px;
}
.brand {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: var(--wine);
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    flex: none;
    white-space: nowrap;
}
.brand img { height: 30px; width: auto; margin-bottom: 2px; }
.brand-row { display: flex; align-items: center; gap: 9px; }
.brand small {
    display: block;
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 9.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brass);
    font-weight: 500;
    margin-top: 2px;
}
.main-nav {
    display: flex;
    gap: 30px;
    flex: none;
}
.main-nav a {
    margin-right: 30px;
    white-space: nowrap;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}
.main-nav a:last-child { margin-right: 0; }
.main-nav a::after {
    content: '';
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--ember);
    transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--ember); }
.header-cta { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone {
    display: none;
}
.btn-call {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-weight: 700; font-size: 13.5px;
    padding: 13px 20px; border-radius: var(--radius);
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
    background: transparent;
    white-space: nowrap;
}
.btn-call:hover { border-color: var(--ember); color: var(--ember); }
.nav-toggle { display: none; background: none; border: none; color: var(--charcoal); font-size: 26px; cursor: pointer; flex: none; }

@media (max-width: 1080px) {
    .btn-call span { display: none; }
}

@media (max-width: 900px) {
    .site-header .container { height: 68px; flex-wrap: nowrap; }
    .brand { font-size: 18px; }
    .brand small { display: none; }
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease;
        border-bottom: 1px solid rgba(184,147,90,.3);
        width: 100%;
        box-shadow: 0 12px 20px -8px rgba(0,0,0,.15);
    }
    .main-nav.open { max-height: 420px; }
    .main-nav a { padding: 16px 24px; margin-right: 0; display: block; border-top: 1px solid rgba(0,0,0,.06); }
    .nav-toggle { display: block; }
    .btn-call { display: none; }
    .header-cta .btn-ember { display: none; }
    .header-cta { gap: 10px; }
    .float-reserve span { display: none; }
    .float-reserve { width: 52px; height: 52px; padding: 0; border-radius: 50%; bottom: 16px; right: 16px; justify-content: center; font-size: 18px; }
}

@media (max-width: 400px) {
    .brand { font-size: 16px; }
    .logo-img, .brand img { height: 22px !important; }
}

/* ---------- Hero (fotografija u pozadini) ---------- */
.hero {
    position: relative;
    background: radial-gradient(ellipse at 20% 20%, #33281f 0%, var(--charcoal) 55%), var(--charcoal);
    background-size: cover;
    background-position: center;
    color: var(--cream-text);
    overflow: hidden;
    padding: 130px 0 150px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px);
    pointer-events: none;
}
.hero-content { position: relative; max-width: 640px; }
.hero .eyebrow { color: var(--brass); }
.hero .eyebrow::before { color: var(--brass); }
.hero h1 {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(46px, 6.2vw, 80px);
    color: var(--cream-text);
    line-height: 1.05;
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}
.hero h1 em {
    font-style: italic;
    color: var(--cream-text);
}
.hero-lede {
    font-size: 18px;
    color: rgba(246,241,231,.82);
    max-width: 480px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions > * { margin-right: 16px; margin-bottom: 10px; }

@media (max-width: 700px) {
    .hero { padding: 90px 0 100px; }
}

/* ---------- Section basics ---------- */
.section { padding: 96px 0; }
.section-dark { background: var(--charcoal); color: var(--cream-text); }
.section-dark h2 { color: var(--cream-text); }
.section-alt { background: var(--parchment-2); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head p { color: var(--stone); font-size: 17px; }
.section-dark .section-head p { color: var(--stone-light); }

/* ---------- About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(92,26,26,.5), transparent 60%),
        repeating-linear-gradient(15deg, #d8c9a8 0 4px, #cdbb95 4px 9px, #e3d5b3 9px 13px);
    border: 1px solid rgba(110,101,90,.25);
    box-shadow: var(--shadow);
}
.about-list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.about-list li .tick {
    flex: none;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--ember);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Menu (chalkboard style) ---------- */
.menu-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}
.menu-tab {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(110,101,90,.35);
    background: transparent;
    color: var(--stone);
    cursor: pointer;
}
.menu-tab.active, .menu-tab:hover { background: var(--charcoal); color: var(--cream-text); border-color: var(--charcoal); }

.menu-category { margin-bottom: 56px; }
.menu-category h3 {
    font-size: 26px;
    color: var(--wine);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(110,101,90,.4);
}
.menu-items { display: grid; gap: 22px; }
.menu-item { display: flex; gap: 16px; align-items: baseline; }
.menu-item .leader {
    flex: 1;
    border-bottom: 1px dotted rgba(110,101,90,.5);
    height: 0;
    margin-bottom: 6px;
}
.menu-item-main { display: flex; flex-direction: column; }
.menu-item-name { font-family: var(--font-display); font-size: 18.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.menu-item-desc { color: var(--stone); font-size: 14px; margin-top: 2px; }
.menu-item-price { font-family: var(--font-mono); font-weight: 700; color: var(--ember); font-size: 16.5px; white-space: nowrap; }
.veg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #3F6B3A;
    color: #fff;
    font-size: 10px;
}
.featured-badge {
    font-family: var(--font-mono);
    font-size: 9.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: var(--brass);
    color: var(--charcoal);
    padding: 2px 7px;
    border-radius: 3px;
}
.menu-row-wrap { display: flex; align-items: flex-end; gap: 16px; padding: 6px 8px; margin: 0 -8px; border-radius: 6px; transition: background .25s ease, transform .25s ease; }
.menu-row-wrap:hover { background: rgba(199,80,30,.06); transform: translateX(4px); }
.menu-row-wrap:hover .menu-item-name { color: var(--ember); transition: color .2s ease; }

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-grid a, .gallery-item {
    display: block;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(150deg, #3a2f26, #211C18);
    position: relative;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid a::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(33,28,24,.35), transparent 50%);
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-grid a:hover::after { opacity: 1; }
@media (max-width: 860px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
    background: var(--charcoal-2);
    border: 1px solid rgba(169,130,70,.2);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199,80,30,.5);
    box-shadow: 0 16px 34px -14px rgba(0,0,0,.5);
}
.testi-stars { color: var(--brass); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.testi-card p { color: var(--cream-text); font-size: 15.5px; }
.testi-source { font-family: var(--font-mono); font-size: 12px; color: var(--stone-light); }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Hours + Location ---------- */
.info-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.hours-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid rgba(110,101,90,.2); font-size: 15px; }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); }
.hours-table tr.today td { color: var(--ember); font-weight: 700; }
.status-pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 12.5px;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(63,107,58,.12); color: #3F6B3A;
    margin-bottom: 18px;
}
.status-pill.closed { background: rgba(92,26,26,.12); color: var(--wine); }
.status-pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.map-frame { width: 100%; height: 380px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.map-wrap { position: relative; }
.map-directions-btn {
    position: absolute;
    bottom: 16px; right: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--ember);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 18px;
    border-radius: var(--radius);
    box-shadow: 0 8px 20px -6px rgba(0,0,0,.45);
    z-index: 2;
}
.map-directions-btn:hover { background: var(--ember-bright); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--stone); }
.field input, .field select, .field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(110,101,90,.35);
    background: #fff;
    color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--ember);
    outline: none;
}
.field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.reserve-panel {
    background: var(--parchment-2);
    border: 1px solid rgba(169,130,70,.3);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
}
.flash { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 600; font-size: 14.5px; }
.flash-ok { background: rgba(63,107,58,.14); color: #2e4e2a; border: 1px solid rgba(63,107,58,.3); }
.flash-err { background: rgba(92,26,26,.1); color: var(--wine); border: 1px solid rgba(92,26,26,.25); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .ic {
    flex: none; width: 40px; height: 40px; border-radius: 50%;
    background: var(--ember); color: #fff;
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--stone-light); padding: 64px 0 28px; }
.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    background: var(--charcoal-2);
    border: 1px solid rgba(169,130,70,.25);
    border-radius: var(--radius);
    padding: 32px 36px;
    margin-bottom: 56px;
}
.newsletter-box h3 { color: var(--cream-text); font-size: 22px; margin-bottom: 6px; }
.newsletter-box p { color: var(--stone-light); margin: 0; font-size: 14.5px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; flex: none; }
.newsletter-form input {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(246,241,231,.2);
    background: rgba(246,241,231,.06);
    color: var(--cream-text);
    min-width: 240px;
}
.newsletter-form input::placeholder { color: var(--stone-light); }
.newsletter-form input:focus { outline: none; border-color: var(--ember); }
@media (max-width: 760px) {
    .newsletter-box { flex-direction: column; align-items: flex-start; }
    .newsletter-form { width: 100%; }
    .newsletter-form input { flex: 1; min-width: 0; }
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-grid h4 { color: var(--cream-text); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); font-weight: 500; margin-bottom: 18px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-grid a:hover { color: var(--ember-bright); }
.footer-brand { font-family: var(--font-display); font-size: 26px; color: var(--cream-text); margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(246,241,231,.25);
    display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--ember); color: var(--ember-bright); }
.footer-bottom {
    border-top: 1px solid rgba(246,241,231,.1);
    padding-top: 24px;
    font-size: 13px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Info kartice (radno vrijeme/lokacija/cijene/parking) ---------- */
.info-cards-strip { background: var(--charcoal-2); padding: 0; border-bottom: 1px solid rgba(169,130,70,.2); }
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.info-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 26px 24px;
    border-right: 1px solid rgba(169,130,70,.15);
}
.info-card:last-child { border-right: none; }
.info-card-ic { font-size: 22px; margin-bottom: 4px; }
.info-card-label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--brass); }
.info-card-value { color: var(--cream-text); font-size: 14.5px; font-weight: 600; line-height: 1.35; }
@media (max-width: 860px) {
    .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .info-card { border-bottom: 1px solid rgba(169,130,70,.15); }
    .info-card:nth-child(odd) { border-right: 1px solid rgba(169,130,70,.15); }
}

/* ---------- Forma za ostavljanje utiska ---------- */
.review-form-wrap {
    max-width: 560px;
    margin: 56px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(246,241,231,.12);
    text-align: center;
}
.review-form-wrap h3 { color: var(--cream-text); font-size: 22px; margin-bottom: 18px; }
.review-form { display: grid; gap: 14px; text-align: left; }
.review-form-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.review-form input, .review-form select, .review-form textarea {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 12px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(246,241,231,.2);
    background: rgba(255,255,255,.04);
    color: var(--cream-text);
}
.review-form input::placeholder, .review-form textarea::placeholder { color: var(--stone-light); }
.review-form select { color: var(--cream-text); }
.review-form select option { color: var(--charcoal); }
.review-form textarea { min-height: 90px; resize: vertical; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { border-color: var(--ember); outline: none; }
@media (max-width: 500px) { .review-form-row { grid-template-columns: 1fr; } }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
    background: var(--charcoal);
    color: var(--cream-text);
    padding: 64px 0 54px;
    text-align: center;
}
.page-hero h1 { color: var(--cream-text); font-size: clamp(34px, 4.4vw, 52px); }
.breadcrumb { font-family: var(--font-mono); font-size: 12.5px; color: var(--stone-light); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- WhatsApp / floating CTA ---------- */
.float-reserve {
    position: fixed;
    bottom: 22px; right: 22px;
    z-index: 90;
    box-shadow: 0 14px 30px -8px rgba(199,80,30,.55);
}
