* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #0b0b0d;
    --card: #101114;
    --text: #f3f3f3;
    --muted: #b8b8b8;
    --gold: #c7a45a;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .55);
    --line: rgba(255, 255, 255, .10);
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background:
        radial-gradient(900px 600px at 20% -10%, rgba(199, 164, 90, .22), transparent 60%),
        radial-gradient(800px 550px at 85% 10%, rgba(255, 255, 255, .10), transparent 55%),
        linear-gradient(180deg, #070708, #0b0b0d);
    color: var(--text);
    min-height: 100vh;
    padding: clamp(16px, 3vw, 40px);
    display: grid;
    place-items: center;
}

.wrap {
    width: min(1100px, 100%);
    display: grid;
    gap: clamp(14px, 2vw, 28px);
}

/* HERO */
.hero {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    height: clamp(240px, 40vh, 520px);
    background: #000;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.05);
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .06)),
        radial-gradient(900px 500px at 20% 110%, rgba(199, 164, 90, .25), transparent 60%);
    pointer-events: none;
}

/* BADGE w rogu (subtelne) */
.badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(10, 10, 12, .35);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    max-width: calc(100% - 36px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 164, 90, .18);
    flex: 0 0 auto;
}

.badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, .88);
    letter-spacing: .02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CARD */
.card {
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03)),
        var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: clamp(18px, 3.2vw, 34px);
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4.4vw, 44px);
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.1;
}

.rule {
    margin-top: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(199, 164, 90, .85), rgba(199, 164, 90, 0));
    width: 140px;
    border-radius: 999px;
}

.subtitle {
    margin-top: 12px;
    color: var(--muted);
    font-size: clamp(13px, 1.3vw, 15px);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.notice {
    margin-top: 18px;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
}

.desc {
    margin-top: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
    max-width: 60ch;
}

/* CTA */
.cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(199, 164, 90, .55);
    background:
        radial-gradient(900px 120px at 20% -60%, rgba(199, 164, 90, .35), transparent 60%),
        linear-gradient(180deg, rgba(199, 164, 90, .18), rgba(199, 164, 90, .06));
    color: rgba(255, 255, 255, .92);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);

}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(199, 164, 90, .85);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .45);
}

.btn svg {
    width: 18px;
    height: 18px;
    opacity: .92
}

/* MAP */
.map {
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0b0b0d;
    height: clamp(220px, 32vh, 360px);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: contrast(1.05) saturate(1.0);
}

/* DESKTOP layout */
@media (min-width: 980px) {
    .wrap {
        grid-template-columns: 1.05fr .95fr;
        align-items: stretch;
    }

    .hero {
        height: 100%
    }

    .card {
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .map {
        margin-top: auto
    }
}