:root {
    --bg: #ffffff;
    --bg-elevated: #FFF8F5;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --accent: #E8663C;
    --accent-hover: #D4532D;
    --border: #F0E6E0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: rgba(232, 102, 60, 0.2); color: #1a1a1a; }
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body.omackarna-body {
    font-family: 'Gilroy', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Gilroy', sans-serif; font-weight: 500; }

body.omackarna-body * {
    font-family: inherit;
}
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 5vw;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}
.nav.scrolled {
    background: #ffffff;
    padding: 1.2rem 5vw;
    border-bottom: 1px solid var(--border);
}
.nav.scrolled .nav-cta {
    border-color: var(--accent);
    color: var(--accent);
}
.nav.scrolled .nav-cta:hover {
    background: var(--accent);
    color: #ffffff;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--accent);
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.nav-logo img {
    display: block;
    width: auto;
    height: 63px;
    max-width: min(230px, 52vw);
    object-fit: contain;
}
.nav-logo:focus,
.nav-logo:focus-visible,
.nav-logo:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}
.nav.scrolled .nav-logo { color: var(--accent); }

@media (max-width: 768px) {
    .nav-logo {
        padding: 0.3rem 0.55rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(232, 102, 60, 0.18);
        border-radius: 18px;
        flex-shrink: 0;
        z-index: 2;
    }
    .nav-logo img {
        height: 58px;
        max-width: min(210px, 58vw);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
    }
    .contact-card {
        padding: 1.2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-actions {
        justify-content: center;
    }
    .contact-actions .form-submit {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}
.nav-links {
    display: flex; gap: 3.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.nav-links a {
    position: relative;
    color: rgba(0,0,0,0.5);
    transition: color 0.3s;
}
.nav-links a:hover { color: #1a1a1a; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 0; height: 1px; background: var(--accent);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.7rem 1.2rem;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--accent);
    color: #ffffff;
}
.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: relative;
}
.nav-hamburger {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    position: relative;
    z-index: 101;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    border-radius: 1px;
}
.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    min-width: 260px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}
.nav-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown a {
    display: block;
    padding: 0.85rem 1.8rem;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav-dropdown a:hover {
    color: var(--accent);
    background: rgba(232,102,60,0.04);
    padding-left: 2.2rem;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
}
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}
@media (max-width: 768px) {
    .hero-bg video {
        object-position: 50% 50%;
        transform: scale(1);
    }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.55) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 2rem;
    color: #ffffff;
}
.hero-logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 30px rgba(0,0,0,0.6));
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}
.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.6;
}
.hero-eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff;
    background: rgba(232,102,60,0.15);
    border: 1px solid rgba(232,102,60,0.4);
    padding: 0.7rem 1.8rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    border-radius: 50px;
}
.hero h1 {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.5s forwards;
    text-shadow:
        0 0 40px rgba(0,0,0,0.9),
        0 0 80px rgba(0,0,0,0.7),
        0 0 120px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero-divider {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 1rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
}
.hero-soul {
    font-family: 'Gilroy', sans-serif;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.95s forwards;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 1rem 2.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border-radius: 50px;
}
.hero-btn-arrow {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-btn-primary {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
}
.hero-btn-primary:hover {
    background: #d45a32;
    border-color: #d45a32;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232,102,60,0.3);
}
.hero-btn-primary:hover .hero-btn-arrow {
    transform: translateX(5px);
}
.hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.45);
}
.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.85);
    transform: translateY(-3px);
}
.hero-btn-secondary:hover .hero-btn-arrow {
    transform: translateX(5px);
}
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.3s forwards;
}
.scroll-indicator span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0); transform-origin: top; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section { padding: 10rem 5vw; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 2rem;
}
.section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
}
.section p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 2;
    max-width: 600px;
}

.about { background: var(--bg-elevated); }
.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8rem;
    align-items: start;
}
.about-text h2 { text-align: left; }
.about-text p { margin: 0 0 1.8rem; max-width: none; }
.about-text p:last-child { margin-bottom: 0; }
.about-img-wrap { position: relative; }
.about-img {
    height: 850px;
    background: url('/wp-content/uploads/2026/05/sefkuchar2.jpeg') top center/contain no-repeat;
    position: relative;
}
.concept-list { max-width: 1000px; margin: 0 auto; }
.concept-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.concept-item:first-child { padding-top: 0; }
.concept-item:last-child { border-bottom: none; }
.concept-num {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--accent);
}
.concept-item h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.concept-item p {
    margin: 0;
    font-size: 0.95rem;
    max-width: 500px;
}

.menu-section { background: var(--bg); }
.menu-board {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 4rem 5rem;
}
.menu-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}
.menu-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.menu-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    gap: 2rem;
}
.menu-category {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.menu-category:last-child { border-bottom: none; }
.menu-cat-title {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.menu-dish {
    margin-bottom: 2rem;
}
.menu-dish:last-child { margin-bottom: 0; }
.menu-dish h5 {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.menu-dish p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 auto;
    line-height: 1.7;
    max-width: 500px;
}
.menu-price-box {
    text-align: center;
    margin: 4rem auto 0;
    padding: 3rem 4rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    max-width: 400px;
}
.price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.price-value {
    font-family: 'Gilroy', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.price-value span {
    font-size: 1.5rem;
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
}
.price-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
}
.menu-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.menu-price {
    font-family: 'Gilroy', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent);
}
.menu-price span {
    display: block;
    font-size: 0.35em;
    font-family: 'Gilroy', sans-serif;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.gallery { background: var(--bg-elevated); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item {
    cursor: pointer;
}
.gallery-item.gallery-hidden {
    display: none;
}
.gallery-item.gallery-show {
    display: block;
    animation: galleryFadeIn 0.5s ease forwards;
}
@keyframes galleryFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.gallery-toggle {
    text-align: center;
    margin-top: 24px;
}
.gallery-toggle button {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 32px;
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-toggle button:hover {
    background: var(--accent);
    color: #fff;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay::after {
    content: '';
    width: 32px; height: 32px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-5.197-5.197m0 0A7.5 7.5 0 105.196 5.196a7.5 7.5 0 0010.607 10.607zM10.5 7.5v6m3-3h-6'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.9;
}

.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-close::before,
.lightbox-close::after {
    content: ''; position: absolute; top: 50%; left: 10%; width: 80%; height: 2px;
    background: #fff;
}
.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.6;
    transition: all 0.25s ease;
    z-index: 10;
}
.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav svg {
    width: 22px; height: 22px;
    stroke: #fff; stroke-width: 1.5; fill: none;
}
.lightbox-counter {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}
@media (max-width: 768px) {
    .lightbox-nav { width: 44px; height: 44px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 16px; right: 16px; }
}

.hours-section { background: var(--bg); text-align: center; }
.hours-grid {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 4rem;
}
.hours-block { text-align: center; }
.hours-block h4 {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}
.hours-block p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}
.hours-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 4rem auto 0;
}

.reservation {
    background: var(--bg-elevated);
    text-align: center;
    position: relative;
}
.reservation::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.reservation h2 { color: var(--text); }
.reservation > .container > p {
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
}
.reservation-price {
    font-family: 'Gilroy', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--accent);
    margin-bottom: 0.5rem;
}
.reservation-price span {
    font-size: 0.3em;
    font-family: 'Gilroy', sans-serif;
    color: var(--text-muted);
    display: block;
    margin-top: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.reservation-form {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: left;
}
.form-group { margin-bottom: 2.5rem; position: relative; }
.form-group label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: 'Gilroy', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.4s;
    border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
}
.form-submit:hover {
    background: var(--accent);
    color: var(--bg);
}
.alert {
    padding: 1.5rem;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 600px;
    border: 1px solid;
}
.alert-success {
    background: rgba(232, 102, 60, 0.05);
    border-color: rgba(232, 102, 60, 0.25);
    color: var(--text);
}
.alert-error {
    background: rgba(139, 58, 31, 0.05);
    border-color: rgba(139, 58, 31, 0.4);
    color: var(--text);
}

.footer {
    padding: 6rem 5vw;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.footer-logo {
    font-family: 'Gilroy', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}
.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.footer-contact {
    margin: 2.5rem 0;
}
.footer-contact a {
    display: inline-block;
    border-bottom: 1px solid var(--border);
    padding-bottom: 3px;
    transition: border-color 0.3s, color 0.3s;
}
.footer-contact a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.contact-section {
    padding-top: 2rem;
}
.contact-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}
.contact-eyebrow {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    margin-bottom: 1rem;
}
.contact-header h2 {
    margin-bottom: 1rem;
}
.contact-header p {
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}
.contact-form {
    max-width: 980px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.contact-field span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 1rem 1.1rem;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 102, 60, 0.16);
}
.contact-message {
    margin-top: 1.2rem;
}
.contact-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.contact-actions .form-submit {
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}
.footer-socials a {
    width: 46px; height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}
.footer-socials a:hover {
    border-color: var(--accent);
    background: rgba(232,102,60,0.08);
    transform: translateY(-3px);
}
.footer-socials svg { width: 16px; height: 16px; fill: var(--text); }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .about-img { height: 650px; }
    .about-img-frame { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hours-grid { gap: 3rem; }
    .menu-board { padding: 3rem 2rem; }
}
/* Concept Section */
.concept-section {
    background: linear-gradient(180deg, #F7F3EE 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.concept-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,102,60,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.concept-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.concept-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.concept-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.concept-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
}
.concept-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}
.concept-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.8rem 2rem;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: rgba(232,102,60,0.15);
}
.concept-card:hover::before {
    transform: scaleX(1);
}
.concept-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
    color: var(--accent);
    opacity: 0.25;
    margin-bottom: 0.5rem;
    font-family: 'Gilroy', sans-serif;
    letter-spacing: -0.02em;
}
.concept-card-line {
    width: 30px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
    margin-bottom: 1.5rem;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.concept-card:hover .concept-card-line {
    width: 50px;
    opacity: 0.7;
}
.concept-card h4 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text);
    letter-spacing: -0.01em;
}
.concept-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

/* Menu Section */
.menu-section {
    background: linear-gradient(180deg, #ffffff 0%, #F7F3EE 100%);
    color: var(--text);
    position: relative;
    overflow: hidden;
}
.menu-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,102,60,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.menu-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}
.menu-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.menu-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.menu-header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
    opacity: 0.6;
}
.menu-board {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 20px 80px rgba(0,0,0,0.06);
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}
.menu-category {
    padding: 2.5rem 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.menu-category:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    right: 0;
    width: 1px;
    background: var(--border);
}
.menu-category:nth-child(-n+2)::before {
    content: '';
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 0;
    height: 1px;
    background: var(--border);
}
.menu-cat-num {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.menu-cat-title {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.menu-dish {
    margin-bottom: 1.8rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(232,102,60,0.2);
    transition: border-color 0.3s ease;
}
.menu-dish:hover {
    border-left-color: var(--accent);
}
.menu-dish:last-child {
    margin-bottom: 0;
}
.menu-dish h5 {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.menu-dish p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.menu-divider {
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}
.menu-footer {
    text-align: center;
}
.menu-price-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.menu-price-label {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}
.menu-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.menu-price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.2em;
    vertical-align: super;
}
.menu-price-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.menu-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.drink-menu-nav {
    display: none;
}
.drink-menu-wrap {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.drink-menu-wrap {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.drink-menu-header {
    text-align: center;
    margin-bottom: 2rem;
}

.drink-menu-header h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 0.6rem;
}
.drink-menu-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.drink-menu-rotator {
    max-width: 760px;
    margin: 0 auto;
}
.drink-menu-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
}
.drink-tab {
    flex: 1;
    padding: 1rem 0.75rem;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.drink-tab.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232,102,60,0.25);
}
.drink-tab:hover:not(.is-active) {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 4px 12px rgba(232,102,60,0.1);
}
.drink-tab:active {
    transform: scale(0.96);
}
.drink-menu-pages {
    position: relative;
    min-height: 0;
    width: 100%;
}
.drink-menu-page {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f5 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.06);
    padding: clamp(1.4rem, 2.5vw, 2rem);
    opacity: 1;
    transition: opacity 0.35s ease;
}
.drink-menu-page:not(.is-active) {
    display: none;
}
.drink-menu-page h4 {
    text-align: center;
    letter-spacing: 0.35em;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.6rem;
    text-transform: uppercase;
}
.drink-group {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232,102,60,0.12);
}
.drink-menu-pages {
    display: flex;
    justify-content: center;
}
.drink-menu-page {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}
.drink-menu-page .drink-group {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.drink-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.drink-group h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text);
    margin-bottom: 0.6rem;
    text-align: center;
}
.drink-group h5.drink-highlight {
    color: var(--accent);
    font-weight: 700;
}
.drink-group p {
    display: block;
    font-size: 0.92rem;
    color: var(--text-muted);
    padding: 0.1rem 0;
    line-height: 1.35;
    text-align: center;
}
.drink-group p strong {
    color: var(--text);
    margin-right: 0.1rem;
}
.drink-group p span.price,
.drink-group p::after {
    content: '';
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* About Section */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,102,60,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}
.about-text {
    position: relative;
    z-index: 1;
}
.about-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.about-text h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.about-divider {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}
.about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.2rem;
}
.about-text p:last-child {
    margin-bottom: 0;
}
.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.about-img-accent {
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: 20px;
    border: 1px solid var(--accent);
    border-radius: 16px;
    opacity: 0.3;
    z-index: 0;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.about-stat-num {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.about-stat-unit {
    font-size: 0.5em;
    color: var(--text-muted);
    margin-left: 0.1em;
}
.about-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #F7F3EE 0%, #ffffff 100%);
}
.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gallery-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.gallery-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.gallery-header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
    opacity: 0.6;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-toggle {
    text-align: center;
    margin-top: 2.5rem;
}
.gallery-toggle button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: inherit;
}
.gallery-toggle button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.drink-menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.drink-menu-tabs button {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.9rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: inherit;
}
.drink-menu-tabs button:hover {
    background: #f4efe9;
    border-color: #d9cdc1;
    color: var(--text);
}
.drink-menu-tabs button.active {
    background: #ede7e1;
    border-color: #d6c8bc;
    color: var(--text);
}

/* Hours Section */
.hours-section {
    background: #ffffff;
}
.hours-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hours-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.hours-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.hours-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.hours-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hours-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.06);
    border-color: rgba(232,102,60,0.2);
}
.hours-card:hover::before {
    transform: scaleX(1);
}
.hours-card h4 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--accent);
}
.hours-card-times {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.hours-card-times span {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: var(--bg);
    border-radius: 50px;
    align-self: center;
}
.hours-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(180deg, #F7F3EE 0%, #ffffff 100%);
}
.reservation-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.reservation-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.reservation-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.reservation-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.reservation-price-box {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.reservation-price-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.reservation-price {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.reservation-price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.2em;
    vertical-align: super;
}
.reservation-price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.reservation-form-wrap {
    max-width: 600px;
    margin: 0 auto;
}

/* Voucher Section */
.voucher-section {
    background: linear-gradient(180deg, #F7F3EE 0%, #ffffff 100%);
    position: relative;
}
.voucher-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.voucher-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.voucher-header h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--text);
}
.voucher-header p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.voucher-price-box {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.voucher-price-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.voucher-price {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.voucher-price span {
    font-size: 0.5em;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 0.2em;
    vertical-align: super;
}
.voucher-price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.voucher-form-wrap {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    background: var(--bg-elevated);
    text-align: center;
    position: relative;
}
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.contact-section .container {
    position: relative;
    z-index: 1;
}
.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}
.contact-card-head {
    max-width: 600px;
    margin: 0 auto 4rem;
}
.contact-card-head h2 {
    color: var(--text);
    margin-bottom: 1rem;
}
.contact-card-head p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}
.contact-eyebrow {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.contact-field {
    margin-bottom: 2.5rem;
    position: relative;
}
.contact-field-full {
    grid-column: 1 / -1;
}
.contact-field span {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: 'Gilroy', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.4s;
    border-radius: 0;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}
.contact-field textarea {
    min-height: 160px;
}
.contact-message {
    margin-top: 1.2rem;
}
.contact-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.contact-actions .form-submit {
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--text-muted);
    padding: 5rem 5vw 2.5rem;
    position: relative;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand {
    position: relative;
    z-index: 1;
}
.footer-logo {
    font-family: 'Gilroy', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Gilroy', sans-serif;
}
.footer-info h5,
.footer-contact-wrap h5,
.footer-socials-wrap h5 {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}
.footer-info p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}
.footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}
.footer-contact-wrap a {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}
.footer-contact-wrap a:hover {
    color: var(--accent);
}
.footer-socials {
    display: flex;
    gap: 0.8rem;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    border-color: var(--accent);
    background: rgba(232,102,60,0.1);
}
.footer-socials a svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: fill 0.3s ease;
}
.footer-socials a:hover svg {
    fill: var(--accent);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.footer-bottom p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0 0 0.3rem;
}
.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}
.footer-bottom a:hover {
    color: var(--accent);
}
.footer-legal {
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.footer-legal a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-legal a:hover {
    color: var(--accent);
}
.footer-legal-sep {
    color: var(--border);
}

/* PROFESSIONAL MENU SECTION */
.menu-section {
    background: linear-gradient(180deg, #faf8f5 0%, #ffffff 50%, #faf8f5 100%);
    position: relative;
    overflow: hidden;
    padding: 7.5rem 5vw 6rem;
    text-align: center;
}
.menu-courses {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.menu-course {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.menu-course:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(232,102,60,0.15);
}
.course-type {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
    background: var(--accent);
    border-radius: 4px;
}
.course-content h4 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
}
.course-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}
.menu-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,102,60,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.menu-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,102,60,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.menu-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}
.menu-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--accent);
    margin-bottom: 1.2rem;
}
.menu-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text);
}
.menu-header-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto;
    opacity: 0.8;
}
.menu-subtitle {
    font-family: 'Gilroy', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}
.menu-intro {
    max-width: 640px;
    margin: 1rem auto 0;
    text-align: center;
    line-height: 1.7;
    font-style: italic;
}
.menu-courses {
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    text-align: center;
}
.menu-course {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.menu-course:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(232,102,60,0.15);
}
.menu-course:first-child {
    padding-top: 1rem;
}
.menu-course:last-child {
    border-bottom: none;
}

.course-content {
    flex: 1;
    padding-top: 0.5rem;
}
.course-type {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
    background: var(--accent);
    border-radius: 4px;
}
.course-content h4 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.8rem;
    letter-spacing: 0.01em;
}
.course-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}
.menu-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}
.menu-price-box {
    display: inline-block;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    position: relative;
}
.menu-price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 3px 3px;
}
.price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.price-value {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}
.price-value .price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
    vertical-align: baseline;
}
.price-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .nav { padding: 1rem 5vw; }
    .nav-logo { font-size: 1.2rem; }
    .nav-hamburger { width: 40px; height: 40px; }
    .nav-dropdown { min-width: 220px; right: 0; }
    .nav-dropdown a { padding: 0.75rem 1.5rem; font-size: 0.65rem; }

    .section { padding: 4rem 5vw; }

    .hero { min-height: 85vh; }
    .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
    .hero-subtitle { font-size: clamp(1.1rem, 3vw, 1.4rem); }
    .hero-soul { font-size: clamp(0.9rem, 2vw, 1.1rem); margin-bottom: 2rem; }
    .hero-eyebrow { gap: 0.6rem; margin-bottom: 1.2rem; }
    .hero-eyebrow-line { width: 25px; }
    .hero-eyebrow-text { font-size: 0.6rem; padding: 0.5rem 1.2rem; letter-spacing: 0.2em; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; width: 100%; max-width: 280px; margin: 0 auto; }
    .hero-btn { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-text h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .about-text p { font-size: 0.9rem; }
    .about-img-accent { top: 12px; right: -12px; bottom: -12px; left: 12px; }
    .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding-top: 2rem; }
    .about-stat-num { font-size: 1.8rem; }

    .concept-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .concept-header p { font-size: 0.9rem; }
    .concept-grid { grid-template-columns: 1fr; gap: 1rem; }
    .concept-card { padding: 2rem 1.5rem; border-radius: 16px; }
    .concept-num { font-size: 2.5rem; }

    .menu-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .menu-board { padding: 1.5rem; border-radius: 16px; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-category { padding: 1.8rem 1.2rem; }
    .menu-category:nth-child(odd)::after { display: none; }
    .menu-category:nth-child(-n+2)::before { display: none; }
    .menu-category:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 0;
        height: 1px;
        background: var(--border);
    }
    .menu-dish { padding-left: 0.8rem; }
    .menu-price { font-size: 2rem; }
    .menu-note { margin-top: 1.5rem; }

    .gallery-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .gallery-grid { grid-template-columns: 1fr; gap: 0.6rem; }
    .gallery-item { border-radius: 10px; }

    .hours-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .hours-grid { grid-template-columns: 1fr; gap: 1rem; }
    .hours-card { padding: 2rem 1.5rem; border-radius: 16px; }

    .reservation-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .reservation-price-box { padding: 1.5rem; border-radius: 16px; }
    .reservation-price { font-size: 2rem; }

    .voucher-header h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
    .voucher-price-box { padding: 1.5rem; border-radius: 16px; }
    .voucher-price { font-size: 2rem; }

    .footer { padding: 3rem 5vw 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-socials { justify-content: center; }
    .footer-contact-wrap a { text-align: center; }

    .contact-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    .contact-card-head {
        margin-bottom: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-field {
        margin-bottom: 0;
    }
    .contact-field textarea {
        min-height: 140px;
    }
    .contact-actions .form-submit {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .lightbox-nav { width: 40px; height: 40px; }

    /* Menu Mobile */
    .menu-course {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 0;
        text-align: center;
    }
    .course-number {
        font-size: 2.2rem;
        min-width: auto;
    }
    .course-content {
        padding-top: 0;
    }
    .menu-price-box {
        padding: 2rem 2.5rem;
    }
    .price-value {
        font-size: 2rem;
    }
}

/* PC CENTER FIX */
@media (min-width: 769px) {
    .menu-course {
        text-align: center;
        align-items: center;
    }
    .course-content {
        text-align: center;
        width: 100%;
    }
    .course-content h4 {
        text-align: center;
    }
    .course-content p {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .drink-menu-rotator {
        max-width: 100%;
    }

    .drink-menu-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .drink-tab {
        width: 100%;
    }

    .drink-menu-pages {
        width: 100%;
    }

    .drink-menu-page {
        width: 100%;
    }
}


/* Cookies lišta */
#cookies-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    padding: 1rem 1.5rem;
    font-family: 'Gilroy', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookies-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookies-bar-text {
    margin: 0;
    flex: 1;
    min-width: 240px;
}
.cookies-bar-text a {
    color: #E8663C;
    text-decoration: underline;
}
.cookies-bar-text a:hover {
    color: #fff;
}
.cookies-bar-btn {
    flex-shrink: 0;
    background: #E8663C;
    color: #fff;
    border: none;
    padding: 0.7rem 1.8rem;
    font-family: 'Gilroy', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}
.cookies-bar-btn:hover {
    background: #D4532D;
}
