:root {
    --bg: #0f0f10;
    --bg-2: #15151a;
    --bg-3: #1c1c22;
    --line: #2a2a32;
    --text: #d8d2c8;
    --text-soft: #9a9388;
    --heading: #ffffff;
    --accent: #c9a36b;
    --accent-2: #b88e5b;
    --gold: #d4b27e;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--heading);
    margin: 0 0 .6em;
    line-height: 1.15;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}
.eyebrow.center { display: block; text-align: center; }

.btn-primary, .btn-outline {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 0;
    transition: all .25s;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover { background: var(--accent-2); color: #fff; }
.btn-outline {
    border: 2px solid var(--accent);
    color: var(--gold);
    background: transparent;
    padding: 14px 38px;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* Topbar */
.topbar {
    background: var(--bg);
    color: var(--text);
    font-size: .72rem;
    letter-spacing: .15em;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.topbar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.topbar a { color: var(--text); }
.topbar a:hover { color: var(--gold); }
.topbar strong { color: var(--gold); font-weight: 700; margin-right: 6px; }
.topbar .ico { color: var(--gold); margin-right: 6px; }
.topbar-left { justify-self: start; }
.topbar-center { justify-self: center; display: flex; gap: 16px; }
.topbar-center a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--text);
    transition: all .2s;
}
.topbar-center a:hover { border-color: var(--gold); color: var(--gold); }
.topbar-right { justify-self: end; }

/* Header */
.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 2rem; }
.logo img { height: 60px; width: auto; display: block; filter: brightness(1.05); }
.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a {
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding: 6px 0;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--gold);
}
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #fff; }

/* Hero */
.hero { position: relative; height: calc(100vh - 110px); min-height: 600px; overflow: hidden; background: #000; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease-in-out;
    display: flex; align-items: center;
}
.hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.2) 100%);
}
.hero-slide.active { opacity: 1; }
.hero-content {
    position: relative; z-index: 2;
    color: #fff; padding: 0 48px 0 8%;
    max-width: 900px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--gold);
    font-size: .85rem; letter-spacing: .25em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-eyebrow .dash {
    display: inline-block; width: 32px; height: 2px; background: var(--gold);
}
.hero-content h1 {
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 6rem);
    line-height: 1.05;
    margin: 0 0 2rem;
    letter-spacing: -.01em;
}
.hero-content h1 span { display: block; }
.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 56px; height: 90px;
    background: rgba(201,163,107,.85);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    z-index: 5;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: var(--accent-2); }
.hero-arrow-prev { left: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30% 50%); padding-left: 18px; }
.hero-arrow-next { right: 0; clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%); padding-right: 18px; }
.hero-dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero-dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer; transition: background .2s;
}
.hero-dots span.active { background: var(--gold); }

/* Sections */
.section { padding: 110px 0; background: var(--bg); }
.section.about { background: var(--bg-2); }
.section.gallery { background: var(--bg); }
.section.blog-preview { background: var(--bg-2); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col img { box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.col-text p { margin: 0 0 1rem; color: var(--text-soft); }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 3rem;
}
.gallery-item {
    position: relative; display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-3);
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(0,0,0,.0); transition: background .3s;
    z-index: 1;
}
.gallery-item:hover::before { background: rgba(0,0,0,.5); }
.gallery-zoom {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    color: #fff; font-size: 2.5rem; font-weight: 300;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.95);
    display: none;
    align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-image { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,.8); }
.lb-close, .lb-prev, .lb-next {
    position: absolute; background: rgba(255,255,255,.08);
    color: #fff; border: 1px solid rgba(255,255,255,.2);
    cursor: pointer; transition: background .2s;
}
.lb-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 1.6rem; border-radius: 50%; }
.lb-prev, .lb-next {
    top: 50%; transform: translateY(-50%);
    width: 50px; height: 70px; font-size: 1.4rem;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); border-color: var(--accent); }

/* Blog cards */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}
.post-card {
    background: var(--bg-3);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.post-card-image { display: block; height: 240px; background-size: cover; background-position: center; background-color: var(--bg-2); }
.post-card-body { padding: 28px; }
.post-date { font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.post-card-body h3 { margin: .8rem 0; }
.post-card-body h3 a { color: #fff; }
.post-card-body h3 a:hover { color: var(--gold); }
.post-card-body p { color: var(--text-soft); font-size: .92rem; margin: 0 0 1rem; }
.link-arrow { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }

/* Page hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), var(--bg-2);
    background-size: cover; background-position: center;
    color: #fff; padding: 140px 0 100px; text-align: center;
}
.page-hero h1 { color: #fff; }
.breadcrumb { font-size: .78rem; letter-spacing: .2em; opacity: .85; }
.breadcrumb a { color: var(--gold); }
.post-meta { font-size: .78rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }

.blog-content p { margin: 0 0 1.2rem; color: var(--text); }
.blog-content h2, .blog-content h3 { margin-top: 2rem; }
.blog-content h3 { color: var(--gold); }
.blog-content ul { padding-left: 1.5rem; }

/* Legal */
.legal { background: var(--bg-2); }
.legal h2 { margin-top: 2.5rem; color: #fff; }
.legal h3 { margin-top: 1.6rem; color: var(--gold); }
.legal p { margin: 0 0 1rem; color: var(--text-soft); }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 3rem 0; }

/* CTA */
.cta-reserve {
    background: linear-gradient(rgba(15,15,16,.85), rgba(15,15,16,.85)), url('/img/uploads/Cafe-Westend-Vienna-1070-min.png') center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    border-top: 1px solid var(--line);
}
.cta-reserve h2 { color: #fff; margin-bottom: 1.5rem; }
.security-note {
    max-width: 720px;
    margin: 2.5rem auto 0;
    font-size: .85rem;
    color: var(--text-soft);
    line-height: 1.7;
}
.security-note strong { color: var(--gold); }

/* Newsletter */
.newsletter { background: var(--bg-2); padding: 80px 0; text-align: center; border-top: 1px solid var(--line); }
.newsletter h2 { margin-bottom: 1.5rem; }
.newsletter-form {
    display: flex; max-width: 560px; margin: 1.5rem auto;
    gap: 0; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input {
    flex: 1; min-width: 220px;
    padding: 16px 22px;
    border: 1px solid var(--line);
    border-right: none;
    background: var(--bg-3);
    color: var(--text);
    font-family: inherit; font-size: .95rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button { border-radius: 0; padding: 16px 32px; }
.newsletter-msg { color: var(--gold); margin-top: 1rem; font-weight: 600; }
.newsletter-note { font-size: .78rem; color: var(--text-soft); max-width: 560px; margin: 1.4rem auto 0; line-height: 1.7; }

/* Footer */
.site-footer { background: #08080a; color: var(--text-soft); padding: 80px 0 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand img { height: 64px; width: auto; }
.site-footer h4 {
    color: #fff; font-size: .85rem; letter-spacing: .25em;
    text-transform: uppercase; margin-bottom: 1.2rem;
    font-family: var(--font-sans); font-weight: 700;
}
.site-footer a { color: var(--text); }
.site-footer a:hover { color: var(--gold); }
.site-footer p strong { color: var(--gold); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.insta-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.insta-grid a {
    display: block; aspect-ratio: 1/1;
    background-size: cover; background-position: center;
    transition: opacity .2s;
}
.insta-grid a:hover { opacity: .7; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: var(--text-soft);
}

/* Responsive */
@media (max-width: 1100px) {
    .container { padding: 0 24px; }
    .main-nav { gap: 1.4rem; }
    .main-nav a { font-size: .72rem; letter-spacing: .18em; }
}
@media (max-width: 980px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .topbar-inner { grid-template-columns: 1fr; gap: .5rem; text-align: center; font-size: .65rem; }
    .topbar-left, .topbar-center, .topbar-right { justify-self: center; }
    .section { padding: 80px 0; }
    .cta-reserve, .newsletter { padding: 70px 0; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .post-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 280px;
        background: var(--bg-2); flex-direction: column; align-items: flex-start;
        padding: 90px 30px; gap: 1.5rem; transition: right .3s;
        z-index: 100; box-shadow: -10px 0 40px rgba(0,0,0,.5);
        overflow-y: auto;
    }
    .main-nav a { font-size: .85rem; letter-spacing: .2em; padding: 6px 0; }
    body.nav-open .main-nav { right: 0; }
    body.nav-open::after {
        content: ""; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 99;
    }
    .header-inner { padding: 14px 0; }
    .logo img { height: 48px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; text-align: center; }
    .footer-brand img { margin: 0 auto; }
    .insta-grid { max-width: 280px; margin: 0 auto; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero { height: auto; min-height: 520px; padding: 0; }
    .hero-slide { padding: 90px 0 70px; }
    .hero-content { padding: 0 56px; max-width: 100%; text-align: left; }
    .hero-eyebrow { font-size: .68rem; letter-spacing: .2em; margin-bottom: 1rem; gap: 10px; }
    .hero-eyebrow .dash { width: 22px; }
    .hero-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.1; margin-bottom: 1.4rem; }
    .hero-arrow { width: 32px; height: 54px; font-size: 1rem; opacity: .85; }
    .hero-arrow-prev { padding-left: 6px; }
    .hero-arrow-next { padding-right: 6px; }
    .hero-dots { bottom: 22px; }
    .hero-dots span { width: 8px; height: 8px; }
    .section { padding: 60px 0; }
    .cta-reserve, .newsletter { padding: 60px 0; }
    .cta-reserve h2 { font-size: 1.6rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .post-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; gap: 8px; }
    .newsletter-form input { border-right: 1px solid var(--line); width: 100%; }
    .newsletter-form button { width: 100%; }
    .page-hero { padding: 90px 0 60px; }
    .lb-close { top: 14px; right: 14px; width: 38px; height: 38px; }
    .lb-prev, .lb-next { width: 38px; height: 56px; }
    .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .topb { min-height: 460px; }
    .hero-slide { padding: 80px 0 60px; }
    .hero-content { padding: 0 48px; }
    .hero-content h1 { font-size: clamp(1.8rem, 8.5vw, 2.4rem); margin-bottom: 1.2rem; }
    .hero-eyebrow { font-size: .62rem; letter-spacing: .18em; margin-bottom: .8rem; }
    .hero-eyebrow .dash { width: 16px; }
    .hero-arrow { width: 28px; height: 46px 0; }
    .topbar-right { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .btn-primary, .btn-outline { padding: 14px 28px; font-size: .72rem; }
    .post-card-body { padding: 20px; }
    .hero-content h1 { margin-bottom: 1.2rem; }
}

/* ============ ADMIN ============ */
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--bg); }
.admin-side {
    background: #08080a; border-right: 1px solid var(--line);
    padding: 24px 0;
}
.admin-side .brand {
    padding: 0 24px 24px; border-bottom: 1px solid var(--line);
    color: var(--gold); font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
}
.admin-side nav { padding: 16px 0; }
.admin-side nav a {
    display: block; padding: 12px 24px;
    color: var(--text); font-size: .85rem; letter-spacing: .1em;
    text-transform: uppercase; font-weight: 600; border-left: 3px solid transparent;
}
.admin-side nav a:hover, .admin-side nav a.active {
    color: var(--gold); background: rgba(201,163,107,.07); border-left-color: var(--gold);
}
.admin-main { padding: 32px 40px; }
.admin-main h1 { font-family: var(--font-sans); font-size: 1.8rem; }
.admin-card {
    background: var(--bg-2); border: 1px solid var(--line);
    padding: 28px; margin-bottom: 24px;
}
.admin-card h2 { font-size: 1.2rem; color: #fff; margin-bottom: 1rem; }
.admin-form label { display: block; margin: 14px 0 6px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.admin-form input[type=text], .admin-form input[type=email], .admin-form input[type=url], .admin-form input[type=password], .admin-form input[type=date], .admin-form textarea, .admin-form select {
    width: 100%; padding: 10px 14px;
    background: var(--bg-3); color: var(--text);
    border: 1px solid var(--line); font-family: inherit; font-size: .95rem;
}
.admin-form input:focus, .admin-form textarea:focus { outline: none; border-color: var(--gold); }
.admin-form textarea { min-height: 120px; resize: vertical; }
.admin-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-msg { background: rgba(201,163,107,.15); border-left: 3px solid var(--gold); padding: 12px 18px; color: var(--gold); margin-bottom: 20px; }
.admin-err { background: rgba(220,80,80,.15); border-left: 3px solid #dc5050; padding: 12px 18px; color: #ff8080; margin-bottom: 20px; }
.admin-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn-sm { padding: 8px 16px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; cursor: pointer; border: 1px solid var(--line); background: var(--bg-3); color: var(--text); }
.btn-sm:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm.danger { color: #ff8080; border-color: rgba(220,80,80,.4); }
.btn-sm.danger:hover { background: rgba(220,80,80,.15); }
.btn-sm.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-sm.primary:hover { background: var(--accent-2); color: #fff; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-table th { color: var(--gold); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.admin-table img { width: 60px; height: 45px; object-fit: cover; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.admin-grid figure {
    margin: 0; background: var(--bg-3); border: 1px solid var(--line); padding: 8px;
}
.admin-grid figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.admin-grid figure figcaption { display: flex; gap: 6px; padding-top: 8px; flex-wrap: wrap; }
.slide-row { display: grid; grid-template-columns: 200px 1fr auto; gap: 18px; padding: 18px; border: 1px solid var(--line); margin-bottom: 16px; background: var(--bg-3); align-items: start; }
.slide-row .preview { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--bg); }

.login-shell { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); padding: 24px; }
.login-card { background: var(--bg-2); border: 1px solid var(--line); padding: 40px; width: 100%; max-width: 420px; }
.login-card h1 { font-family: var(--font-serif); color: var(--gold); text-align: center; margin-bottom: 1.5rem; }

/* ===== Cookie banner ===== */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: #1a1a1c;
    border: 1px solid #2a2a2d;
    border-left: 3px solid #c9a36b;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,.5);
    padding: 18px 22px;
    color: #ddd;
    font-size: 13.5px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner .cookie-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.cookie-banner .cookie-text { flex: 1 1 320px; }
.cookie-banner .cookie-text strong {
    display: block;
    color: #c9a36b;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: .5px;
}
.cookie-banner .cookie-text p { margin: 0; color: #bdbdbd; }
.cookie-banner .cookie-text a { color: #c9a36b; text-decoration: underline; }
.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-banner .btn-cookie {
    background: transparent;
    border: 1px solid #3a3a3d;
    color: #ddd;
    padding: 10px 22px;
    font: 600 11px/1 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
.cookie-banner .btn-cookie:hover { border-color: #c9a36b; color: #c9a36b; }
.cookie-banner .btn-cookie.accept {
    background: #c9a36b;
    border-color: #c9a36b;
    color: #0f0f10;
}
.cookie-banner .btn-cookie.accept:hover { background: #d4b27d; border-color: #d4b27d; color: #0f0f10; }
@media (max-width: 600px) {
    .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
    .cookie-banner .cookie-actions { width: 100%; }
    .cookie-banner .btn-cookie { flex: 1; padding: 12px 14px; }
}

/* ===== Event-Raum page ===== */
.eventroom-hero {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
    padding: 120px 24px 80px;
}
.eventroom-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65));
}
.eventroom-hero > * { position: relative; z-index: 2; }
.eventroom-hero h1 { color: #fff; margin-bottom: .4rem; }
.eventroom-hero p { color: var(--gold); letter-spacing: .25em; text-transform: uppercase; font-size: .85rem; font-weight: 600; }
.eventroom-content { padding: 80px 0 100px; background: var(--bg-2); }
.eventroom-content .container { max-width: 920px; }
.eventroom-content h2 { color: #fff; margin-top: 2.2rem; }
.eventroom-content h3 { color: var(--gold); margin-top: 1.6rem; }
.eventroom-content p { color: var(--text); margin: 0 0 1rem; line-height: 1.8; }
.eventroom-content ul { color: var(--text); padding-left: 1.5rem; line-height: 1.9; }
.eventroom-content ul li { margin-bottom: .4rem; }
.eventroom-content strong { color: var(--gold); }
.eventroom-content .cta-row { margin-top: 2.5rem; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 768px) {
    .eventroom-hero { min-height: 280px; padding: 90px 16px 60px; }
    .eventroom-content { padding: 50px 0 70px; }
}
