/* ============================================
   PŘÍBRAMSKÉ PODZEMÍ – Main Stylesheet
   Aesthetic: Dark underground, smoky, gold accents
   Fonts: Playfair Display + Cormorant Garamond + Space Mono + Catorze27
   ============================================ */

@font-face {
    font-family: 'Catorze27 Style1 Book';
    src: url('../fonts/Catorze27Style1-Book.woff') format('woff'),
         url('../fonts/Catorze27Style1-Book.ttf') format('truetype'),
         url('../fonts/Catorze27Style1-Book.eot') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --black:      #080705;
    --dark:       #100e0a;
    --dark-mid:   #1c1915;
    --dark-light: #2a2520;
    --surface:    #1e1b16;
    --gold:       #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim:   #7a6030;
    --amber:      #ff8c00;
    --smoke:      rgba(200,180,140,0.06);
    --text:       #f0e8d4;
    --text-dim:   #c8bfac;
    --text-muted: #9a9080;
    --red:        #cc3320;
    --open-green: #4caf6a;

    --font-display: 'Catorze27 Style1 Book', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;
    --font-mono:    'Space Mono', monospace;

    --nav-h: 88px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: default;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── NOISE OVERLAY ── */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── TYPOGRAPHY HELPERS ── */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    display: block;
    margin-bottom: 1.5rem;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
    background: rgba(8,7,5,0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav__logo a {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
    transition: opacity 0.2s;
}
.nav__logo a:hover { opacity: 0.7; }
.nav__logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}
.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav__links a {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.2s;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__ig { color: var(--gold) !important; }
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,7,5,0.98);
    z-index: 99;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; }
.mobile-menu ul li a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text);
    transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
/* Video background */
.hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: url('../img/pozadi.webp') center/cover no-repeat var(--black);
}
.hero__video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.hero__video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
}
.hero__title {
    font-family: 'Catorze27 Style1 Book', var(--font-display);
    font-size: clamp(2rem, 6vw, 6.5rem);
    color: #ddd;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}
.hero__title--animated span {
    opacity: 0;
    display: inline-block;
    animation: letterReveal 1s linear forwards;
}
@keyframes letterReveal {
    0%   { opacity: 0; transform: rotateY(90deg); filter: blur(15px); }
    100% { opacity: 1; transform: rotateY(0deg);  filter: blur(0px); }
}
.hero__title--animated span:nth-child(1)  { animation-delay: 0.4s; }
.hero__title--animated span:nth-child(2)  { animation-delay: 0.6s; }
.hero__title--animated span:nth-child(3)  { animation-delay: 0.8s; }
.hero__title--animated span:nth-child(4)  { animation-delay: 1.0s; }
.hero__title--animated span:nth-child(5)  { animation-delay: 1.2s; }
.hero__title--animated span:nth-child(6)  { animation-delay: 1.4s; }
.hero__title--animated span:nth-child(7)  { animation-delay: 1.6s; }
.hero__title--animated span:nth-child(8)  { animation-delay: 1.8s; }
.hero__title--animated span:nth-child(9)  { animation-delay: 2.0s; }
.hero__title--animated span:nth-child(10) { animation-delay: 2.2s; }
.hero__title--animated span:nth-child(11) { animation-delay: 2.4s; }
.hero__title--animated span:nth-child(12) { animation-delay: 2.6s; }
.hero__title--animated span:nth-child(13) { animation-delay: 2.8s; }
.hero__title--animated span:nth-child(14) { animation-delay: 3.0s; }
.hero__title--animated span:nth-child(15) { animation-delay: 3.2s; }
.hero__title--animated span:nth-child(16) { animation-delay: 3.4s; }
.hero__title--animated span:nth-child(17) { animation-delay: 3.6s; }
.hero__title--animated span:nth-child(18) { animation-delay: 3.8s; }
.hero__sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
    margin-bottom: 2rem;
}
.hero__status {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
    margin-bottom: 2.5rem;
}
.status {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    padding: 0.4em 1em;
    border-radius: 2px;
}
.status--open  { color: var(--open-green); border: 1px solid rgba(76,175,106,0.3); background: rgba(76,175,106,0.05); }
.status--closed { color: var(--text-muted); border: 1px solid rgba(90,80,64,0.4); background: rgba(90,80,64,0.05); }
.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.4s forwards;
}

/* ── BUTTONS ── */
.btn {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: none;
}
.btn--ghost {
    padding: 0.85em 2em;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn--ghost:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.btn--text {
    color: var(--text-dim);
    padding: 0.85em 0;
}
.btn--text:hover { color: var(--text); }
.btn--outline {
    padding: 0.85em 2.5em;
    border: 1px solid var(--dark-light);
    color: var(--text-dim);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}
.hero__scroll-hint span {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── MARQUEE ── */
.marquee {
    background: var(--dark-mid);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    overflow: hidden;
    padding: 1rem 0;
    white-space: nowrap;
}
.marquee__track {
    display: inline-flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
}
.marquee__item {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0 2rem;
}
.marquee__item:nth-child(even) { color: var(--gold); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
    padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
}
.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.about__heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 2rem;
}
.about__heading em {
    font-style: italic;
    color: var(--gold);
}
.about__body p {
    color: var(--text-dim);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.8;
}
.about__body strong { color: var(--text); font-weight: 600; }
.about__image-frame {
    position: relative;
    margin-bottom: 2.5rem;
}
.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}
.about__image-placeholder {
    aspect-ratio: 4/3;
    background: var(--dark-mid);
    border: 1px solid var(--dark-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about__image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.about__image-inner {
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.about__image-inner span { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.about__frame-deco {
    position: absolute;
    top: -8px; right: -8px;
    width: 60%; height: 60%;
    border-top: 1px solid var(--gold-dim);
    border-right: 1px solid var(--gold-dim);
    pointer-events: none;
}
.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark-light);
    border: 1px solid var(--dark-light);
}
.about__stat {
    background: var(--dark);
    padding: 1.5rem 0.5rem;
    text-align: center;
}
.about__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.about__stat-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── DIVIDER ── */
.divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 clamp(1.5rem, 6vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
}
.divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--dark-light), transparent);
}
.divider__icon {
    color: var(--gold-dim);
    font-size: 0.8rem;
}

/* ── GALLERY ── */
.gallery {
    padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
}
.gallery__header { margin-bottom: 3rem; }
.gallery__heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}
.gallery__heading em { font-style: italic; color: var(--gold); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    grid-auto-rows: 200px;
    gap: 3px;
}
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; }
.gallery__item {
    background: var(--dark-mid);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery__item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--pos, center center);
    z-index: 0;
    transition: transform 0.6s var(--ease-out-expo);
}
.gallery__item:hover .gallery__item-img { transform: scale(1.06); }
.gallery__item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 30% 30%, color-mix(in srgb, var(--accent) 20%, transparent) 0%, transparent 70%);
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.15) 100%);
    transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 0.65; }
.gallery__item-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 3;
}
.gallery__item-label {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
    line-height: 1.2;
    border-left: 2px solid var(--accent);
    padding-left: 0.6em;
}
.gallery__item:nth-child(1) .gallery__item-label { font-size: 1.6rem; }

/* ── INSTAGRAM FEED ── */
.insta {
    padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1400px;
    margin: 0 auto;
}
.insta__header {
    margin-bottom: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}
.insta__heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}
.insta__heading em { font-style: italic; color: var(--gold); }
.insta__ig-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    transition: opacity 0.2s;
}
.insta__ig-link:hover { opacity: 0.7; }
.insta__feed {
    --behold-border-radius: 2px;
    --behold-gap: 4px;
}
.insta__feed behold-widget {
    display: block;
    width: 100%;
    filter: brightness(0.92) saturate(0.85);
    transition: filter 0.3s;
}
.insta__feed behold-widget:hover {
    filter: brightness(1) saturate(1);
}

/* ── HOURS ── */
.hours {
    background: var(--dark-mid);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 5rem);
}
.hours__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}
.hours__heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.hours__heading em { font-style: italic; color: var(--gold); }
.hours__note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-left: 2px solid var(--gold-dim);
    padding-left: 1rem;
}
.hours__table {
    width: 100%;
    border-collapse: collapse;
}
.hours__row {
    border-bottom: 1px solid var(--dark-light);
    transition: background 0.2s;
}
.hours__row:hover { background: rgba(201,168,76,0.03); }
.hours__row td {
    padding: 1rem 0.5rem;
    font-size: 1rem;
}
.hours__day {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hours__time {
    text-align: right;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text);
}
.hours__row--today { background: rgba(201,168,76,0.04) !important; }
.hours__row--today .hours__day { color: var(--gold); }
.hours__row--today .hours__time { color: var(--gold-light); }
.hours__row--closed .hours__time { color: var(--text-muted); font-style: italic; font-size: 0.9rem; }
.today-dot { color: var(--gold); font-size: 0.5rem; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── CONTACT ── */
.contact {
    padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 6vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
}
.contact__heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}
.contact__block {
    margin-bottom: 2.5rem;
}
.contact__block h3 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.contact__block address,
.contact__block p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
}
.contact__block a {
    color: var(--text-dim);
    transition: color 0.2s;
}
.contact__block a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold-dim);
}
.contact__social {
    display: flex;
    gap: 1.5rem;
}
.social-link {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0.4em 1em;
    border: 1px solid var(--dark-light);
    transition: all 0.2s;
}
.social-link:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}
.contact__ico small {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
}
.map-frame {
    width: 100%;
    height: 380px;
    border: 1px solid var(--dark-light);
    overflow: hidden;
    filter: grayscale(0.8) brightness(0.6) sepia(0.3);
    transition: filter 0.3s;
}
.map-frame:hover { filter: grayscale(0.3) brightness(0.8) sepia(0.1); }

/* ── FOOTER ── */
.footer {
    background: var(--dark-mid);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 3rem clamp(1.5rem, 6vw, 5rem) 2rem;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer__logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
}
.footer__brand p {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.footer__nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer__nav a {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-light);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about__container,
    .hours__container,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .gallery__item:nth-child(1) { grid-column: span 2; }
    .gallery__item:nth-child(5),
    .gallery__item:nth-child(9) { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__burger { display: flex; }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__item:nth-child(1) { grid-column: span 2; }
    .about__stats { grid-template-columns: repeat(3, 1fr); }
    .contact__map-placeholder { order: -1; }
    .footer__top { flex-direction: column; align-items: flex-start; }
    .footer__bottom { flex-direction: column; }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }
    .about__stats { grid-template-columns: repeat(3, 1fr); gap: 1px; }
    .hero__cta { flex-direction: column; gap: 1rem; }
    .hero__title { white-space: normal; font-size: clamp(1.6rem, 10vw, 3rem); }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 10000;
    background: rgba(16,14,10,0.97);
    border-top: 1px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.1rem clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-dim);
    text-align: center;
}
.cookie-banner__text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-banner__btn {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.6em 1.8em;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.cookie-banner__btn:hover {
    background: var(--gold);
    color: var(--black);
}
