/* ==========================================================================
   PrimeFusion — Wrocław
   Kierunek wizualny: ciemna sala wieczorem · grotesk + antykwa kursywą
   miedź i jadeit · duże zdjęcia · asymetryczna siatka
   ========================================================================== */

/* ---------- 1. Tokeny ---------- */
:root {
    --bg:        #0C0F12;
    --bg-2:      #12171B;
    --bg-3:      #182027;
    --deep:      #06080A;
    --sand:      #F2EFE9;
    --sand-2:    #E6E1D7;
    --ink:       #14181C;
    --text:      #E9E7E2;
    --muted:     #99A2A8;
    --muted-d:   #5E676E;
    --line:      rgba(233, 231, 226, .14);
    --line-2:    rgba(233, 231, 226, .28);
    --line-d:    rgba(20, 24, 28, .16);
    --copper:    #D08A46;
    --copper-2:  #B47134;
    --jade:      #4E9C86;

    --sans:  "Helvetica Neue", Helvetica, Arial, "Segoe UI", Roboto, sans-serif;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;

    --gut:  30px;
    --edge: 36px;
    --sec:  120px;

    --dur:  .5s;
    --ease: cubic-bezier(.22, .68, .28, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -.02em; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
code {
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    font-size: .88em;
    background: rgba(208, 138, 70, .12);
    padding: 2px 6px;
    border-radius: 3px;
}

/* ---------- 3. Siatka ---------- */
.wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--edge);
}
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gut);
}
.grid > *, .stats > *, .info-grid > *,
.feature-grid > *, .gallery > * { min-width: 0; }

/* end-span, а не шорткат: иначе .start-N обнуляет конец и колонка сжимается до одной */
.col-4 { grid-column-end: span 4; }
.col-5 { grid-column-end: span 5; }
.col-6 { grid-column-end: span 6; }
.col-7 { grid-column-end: span 7; }
.start-7 { grid-column-start: 7; }
.start-8 { grid-column-start: 8; }
.start-9 { grid-column-start: 9; }

.section { padding: var(--sec) 0; }
.section--tight { padding: 84px 0; }
.section--dark { background: var(--deep); }
.section--light { background: var(--sand); color: var(--ink); }

/* ---------- 4. Typografia ---------- */
.display {
    font-size: clamp(52px, 9vw, 124px);
    line-height: .94;
    letter-spacing: -.045em;
    font-weight: 300;
}
.display em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--copper);
    letter-spacing: -.02em;
}
.h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.06; }
.h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.12; }
.h3 { font-size: clamp(21px, 2vw, 27px); line-height: 1.26; }
.h4 { font-size: 19px; line-height: 1.4; font-weight: 600; letter-spacing: -.005em; }

.lead {
    font-size: clamp(19px, 1.55vw, 23px);
    line-height: 1.55;
    color: #CFD4D8;
}
.section--light .lead { color: #3B4348; }
.small { font-size: 15px; line-height: 1.65; }
.muted { color: var(--muted); }
.section--light .muted { color: #6C757B; }

.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}
.section--light .eyebrow { color: var(--muted-d); }

.sec-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--copper);
}

.sec-head {
    display: flex;
    align-items: baseline;
    gap: 26px;
    padding-bottom: 26px;
    margin-bottom: 58px;
    border-bottom: 1px solid var(--line);
}
.section--light .sec-head { border-color: var(--line-d); }
.sec-head__title { flex: 1; }
.sec-head .eyebrow { text-align: right; }

/* ---------- 5. Przyciski i linki ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    background: var(--copper);
    color: #0C0F12;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid var(--copper);
    border-radius: 2px;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: var(--copper-2); border-color: var(--copper-2); }
.btn--lg { min-height: 56px; padding: 16px 34px; font-size: 15px; }
.btn--outline { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--outline:hover { background: rgba(233, 231, 226, .08); border-color: var(--text); }
.btn--ghost { background: transparent; color: var(--text); border-color: transparent; text-decoration: underline; text-underline-offset: 4px; }
.btn--ghost:hover { background: rgba(233, 231, 226, .07); }
.btn--dark { background: var(--ink); color: var(--sand); border-color: var(--ink); }
.btn--dark:hover { background: #000; border-color: #000; }
.btn--outline-dark { background: transparent; color: var(--ink); border-color: var(--line-d); }
.btn--outline-dark:hover { background: rgba(20, 24, 28, .06); border-color: var(--ink); }
.btn--light { background: var(--sand); color: var(--ink); border-color: var(--sand); }
.btn--light:hover { background: #fff; border-color: #fff; }
.btn--outline-light { background: transparent; color: var(--sand); border-color: rgba(242, 239, 233, .4); }
.btn--outline-light:hover { background: rgba(242, 239, 233, .12); border-color: var(--sand); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn-row--tight { margin-top: 24px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--copper);
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(208, 138, 70, .4);
    transition: gap var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.link-arrow::after { content: "→"; font-weight: 400; }
.link-arrow:hover { gap: 14px; border-color: var(--copper); }
.link-arrow--light { color: var(--sand); border-color: rgba(242, 239, 233, .4); }
.link-arrow--light:hover { border-color: var(--sand); }

/* ---------- 6. Górny pasek nagłówka ---------- */
.header-top {
    background: var(--deep);
    border-bottom: 1px solid var(--line);
    max-height: 44px;
    overflow: hidden;
    transition: max-height .45s var(--ease), opacity .35s var(--ease);
}
.header-top__inner {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 43px;
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-d);
    white-space: nowrap;
}
.header-top__item { position: relative; flex: 0 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; padding-right: 22px; }
.header-top__item::after {
    content: "";
    position: absolute;
    right: 0; top: 50%;
    width: 1px; height: 11px;
    margin-top: -5.5px;
    background: var(--line);
}
.header-top__item--tel::after { display: none; }   /* последний пункт — без разделителя */
a.header-top__item:hover { color: var(--copper); }

.compliance {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: none;                 /* бейдж не сжимается — обрезаются левые пункты */
    margin-left: auto;
    color: var(--muted);
    font-size: 10.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.compliance i {
    flex: none;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--copper);
    border: 1px solid rgba(208, 138, 70, .45);
    border-radius: 2px;
    padding: 3px 7px;
}

/* ---------- 7. Nagłówek ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(12, 15, 18, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); background: rgba(12, 15, 18, .97); }
.site-header.is-stuck .header-top { max-height: 0; opacity: 0; }

.header-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 88px;
}
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
    padding-right: 34px;
}
.logo b {
    display: block;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: -.03em;
    line-height: 1.1;
}
.logo b span { font-family: var(--serif); font-style: italic; color: var(--copper); }
.logo small {
    display: block;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted-d);
    margin-top: 3px;
}

.nav { display: flex; align-items: stretch; }
.nav a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 0 20px;
    color: #C3CAD0;
    border-left: 1px solid var(--line);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav a em {
    font-style: normal;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--muted-d);
    transition: color var(--dur) var(--ease);
}
.nav a span { font-size: 14px; letter-spacing: -.005em; }
.nav a::after {
    content: "";
    position: absolute;
    left: -1px; right: -1px; bottom: 0;
    height: 2px;
    background: var(--copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.nav a:hover { color: var(--text); background: rgba(233, 231, 226, .04); }
.nav a:hover em { color: var(--copper); }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--text); }
.nav a.is-active em { color: var(--copper); }

.header-cta {
    align-self: center;
    min-height: 46px;
    margin-left: 26px;
    padding: 12px 24px;
    font-size: 13px;
}

.burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; }
.burger i { display: block; height: 1.5px; width: 22px; background: var(--text); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.burger.is-open i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open i:nth-child(2) { opacity: 0; }
.burger.is-open i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: 0 var(--edge) 26px; border-top: 1px solid var(--line); }
.mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 15px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
}
.mobile-nav a em {
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--muted-d);
}
.mobile-nav a.is-active { color: var(--copper); }
.mobile-nav a.is-active em { color: var(--copper); }
.mobile-nav .btn { margin-top: 22px; border-bottom: 0; }
.mobile-nav.is-open { display: flex; }

/* ---------- 8. Hero ---------- */
.hero { position: relative; min-height: 82vh; display: flex; flex-direction: column; justify-content: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,15,18,.72) 0%, rgba(12,15,18,.5) 40%, rgba(12,15,18,.94) 100%);
}
.hero__inner { position: relative; padding: 140px 0 76px; }
.hero .display { margin: 20px 0 26px; }
.hero__lead { max-width: 640px; }

.hero__bar { position: relative; border-top: 1px solid var(--line); background: rgba(6, 8, 10, .68); }
.hero__bar-inner { display: flex; flex-wrap: wrap; gap: 46px; padding: 22px var(--edge); }
.hero__bar-inner b { display: block; font-weight: 500; font-size: 16px; margin-top: 5px; }

/* ---------- 9. Nagłówki podstron ---------- */
.page-hero { position: relative; }
.page-hero__media { position: absolute; inset: 0; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,15,18,.78) 0%, rgba(12,15,18,.86) 100%);
}
.page-hero__inner { position: relative; padding: 92px 0 82px; }
.page-hero--short .page-hero__inner { padding: 72px 0 58px; border-bottom: 1px solid var(--line); }
.page-hero .h1 { margin: 14px 0 24px; max-width: 15ch; }
.page-hero__lead { max-width: 760px; }
.page-hero--casino .page-hero__media::after {
    background: linear-gradient(180deg, rgba(12,15,18,.6) 0%, rgba(6,8,10,.92) 100%);
}
.page-hero--casino .h1 { max-width: 20ch; }

.breadcrumb { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); display: flex; gap: 10px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--copper); }

/* ---------- 10. Figury ---------- */
.figure { margin: 0; }
.figure img { width: 100%; }
.figure figcaption {
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--muted-d);
}
.section--light .figure figcaption { color: var(--muted-d); }
.figure--wide img { aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- 11. Karty dań (główna) ---------- */
.dish-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gut); }
.dish { border-top: 1px solid var(--line-d); padding-top: 24px; }
.dish__media { overflow: hidden; margin-bottom: 22px; }
.dish__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .9s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.05); }
.dish__body .h3 { margin: 10px 0 12px; }
.price {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--copper-2);
}

/* ---------- 12. Atuty ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature { background: var(--bg); padding: 38px 32px 34px; display: flex; flex-direction: column; }
.feature__num { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--muted-d); }
.feature .h4 { margin: 16px 0 12px; }
.feature p { color: var(--muted); font-size: 15.5px; }
.feature .link-arrow { margin-top: auto; padding-top: 22px; align-self: flex-start; }
.feature--accent { background: var(--bg-3); }
.feature--accent .feature__num { color: var(--copper); }

/* ---------- 13. Teaser strefy rozrywki ---------- */
.ent-teaser .h2 { margin: 16px 0 22px; }
.ent-media { position: relative; }
.ent-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.badge-18 {
    position: absolute;
    top: 18px; right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border: 1.5px solid var(--sand);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    background: rgba(6, 8, 10, .55);
    color: var(--sand);
}

/* ---------- 14. Opinie ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gut); }
.quote { margin: 0; padding: 32px 0 0; border-top: 1px solid var(--line-d); }
.quote p { font-family: var(--serif); font-size: 20px; line-height: 1.55; font-style: italic; }
.quote cite {
    display: block;
    margin-top: 18px;
    font-size: 12px;
    font-style: normal;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted-d);
}
.quote-inline { margin-top: 34px; padding: 26px 0 0; border-top: 1px solid var(--line-d); }
.quote-inline p { font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.6; }
.quote-inline cite { display: block; margin-top: 14px; font-size: 12px; font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-d); }

/* ---------- 15. Statystyki ---------- */
.stats-band { background: var(--bg-2); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gut); }
.stat { text-align: center; }
.stat b {
    display: block;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--copper);
}
.stat span { display: block; margin-top: 12px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- 16. CTA ---------- */
.cta-section { background: var(--bg-2); }
.cta-band { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 40px; }
.cta-band .h2 { margin: 14px 0 18px; }
.cta-band .lead { max-width: 560px; }
.cta-band .btn-row { margin-top: 0; }

/* ---------- 17. Pasek faktów ---------- */
.factbar { background: var(--bg-3); border-bottom: 1px solid var(--line); }
.factbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gut); padding: 30px var(--edge); }
.factbar b { display: block; font-size: 32px; font-weight: 300; letter-spacing: -.03em; color: var(--copper); }
.factbar span { display: block; margin-top: 4px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- 18. Gry ---------- */
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gut) var(--gut); }
.game { border-top: 1px solid var(--line); padding-top: 22px; }
.game__media { overflow: hidden; margin-bottom: 20px; }
.game__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; filter: saturate(.85); transition: transform .9s var(--ease), filter .9s var(--ease); }
.game:hover .game__media img { transform: scale(1.04); filter: saturate(1); }
.game__body .h3 { margin: 8px 0 12px; }
.game__body p { color: var(--muted); font-size: 15.5px; }

/* ---------- 19. Oś czasu ---------- */
.timeline { border-top: 1px solid var(--line); }
.section--light .timeline { border-color: var(--line-d); }
.timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.section--light .timeline li { border-color: var(--line-d); }
.timeline b { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); padding-top: 4px; }
.timeline strong { font-size: 19px; font-weight: 500; }
.timeline .muted { display: block; margin-top: 6px; font-size: 15.5px; }

/* ---------- 20. Bloki informacyjne ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px var(--gut); }
.info-grid--tight { grid-template-columns: repeat(2, 1fr); gap: 32px var(--gut); margin-top: 34px; }
.info-grid .h4 { margin-bottom: 10px; padding-top: 18px; border-top: 1px solid var(--line); }
.section--light .info-grid .h4 { border-color: var(--line-d); }
.info-grid p { color: var(--muted); font-size: 15.5px; }
.section--light .info-grid p { color: #5C6469; }

.contact-block { border-top: 1px solid var(--line); padding-top: 26px; }
.section--light .contact-block { border-color: var(--line-d); }
.contact-block dt { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-d); }
.contact-block dd { margin: 8px 0 24px; }
.contact-block dd:last-child { margin-bottom: 0; }
.contact-block a { border-bottom: 1px solid var(--line-2); }
.contact-block a:hover { border-color: var(--copper); }

.notice { margin-top: 52px; padding: 30px 32px; border-left: 2px solid var(--copper); background: rgba(208, 138, 70, .07); }
.notice a { border-bottom: 1px solid var(--line-d); }

.callout { border: 1px solid var(--line-d); padding: 32px 30px; }
.section--dark .callout, body > .callout { border-color: var(--line); }
.callout--tight { margin-top: 30px; padding: 26px; border-color: var(--line); }
.callout .h4 { margin-bottom: 16px; }

.helpline { border: 1px solid var(--line); padding: 30px 30px 26px; background: var(--bg-2); }
.helpline .h4 { margin-bottom: 16px; }
.helpline p { font-size: 15.5px; }
.helpline a { color: var(--copper); border-bottom: 1px solid rgba(208, 138, 70, .35); }
.helpline a:hover { border-color: var(--copper); }
.helpline--light { background: rgba(20, 24, 28, .04); border-color: var(--line-d); margin: 34px 0; }

.ticks { display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 26px; font-size: 15.5px; }
.ticks li::before { content: "—"; position: absolute; left: 0; color: var(--copper); }

/* ---------- 21. Karta dań (podstrona) ---------- */
.menu-block { margin-bottom: 46px; }
.menu-block:last-child { margin-bottom: 0; }
.menu-block__title {
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--muted);
}
.section--light .menu-block__title { border-color: var(--line-d); color: var(--muted-d); }
.menu-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.section--light .menu-list li { border-color: var(--line-d); }
.menu-list li:last-child { border-bottom: 0; }
.menu-list__name { font-size: 17px; }
.menu-list__price { font-size: 15px; font-weight: 700; color: var(--copper-2); white-space: nowrap; }
.menu-list__desc { grid-column: 1 / -1; font-size: 14.5px; color: var(--muted); }
.section--light .menu-list__desc { color: #6C757B; }
.menu-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 46px var(--gut); }

.set-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gut); }
.set { border: 1px solid var(--line); padding: 34px 30px; display: flex; flex-direction: column; }
.set .h3 { margin: 12px 0 14px; }
.set p { color: var(--muted); font-size: 15.5px; }
.set .ticks { margin: 22px 0 26px; }
.set--featured { border-color: var(--copper); background: rgba(208, 138, 70, .06); }
.set__price { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.set__price b { display: block; font-size: 30px; font-weight: 300; letter-spacing: -.03em; color: var(--copper); }
.set__price span { font-size: 13px; letter-spacing: .06em; color: var(--muted); }

.pair-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px var(--gut); }
.pair { border-top: 1px solid var(--line); padding-top: 18px; }
.pair b { display: block; font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.pair span { font-size: 15.5px; color: var(--muted); }
.center-note { margin-top: 46px; }

/* ---------- 22. Wydarzenia ---------- */
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gut); }
.room { border-top: 2px solid var(--copper); padding-top: 26px; }
.room .h3 { margin: 12px 0 14px; }
.room p { color: var(--muted); font-size: 15.5px; }
.specs { margin: 24px 0 0; }
.specs > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.specs dt { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-d); margin: 0; }
.specs dd { margin: 0; font-size: 15px; text-align: right; }

.schedule { border-top: 1px solid var(--line); }
.section--light .schedule { border-color: var(--line-d); }
.schedule__row { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.section--light .schedule__row { border-color: var(--line-d); }
.schedule__row > b { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); padding-top: 4px; }
.schedule__row strong { display: block; font-size: 18px; font-weight: 500; margin-bottom: 5px; }
.schedule__row .muted { font-size: 15.5px; }

/* ---------- 23. Zespół ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gut); }
.team { border-top: 1px solid var(--line-d); padding-top: 22px; }
.team b { display: block; margin: 12px 0 10px; font-size: 22px; font-weight: 400; letter-spacing: -.02em; }
.team p { font-size: 15px; color: #6C757B; }

/* ---------- 24. Galeria ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 2px;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--line-2); }
.filter.is-active { color: var(--bg); background: var(--sand); border-color: var(--sand); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gut); }
.gal { margin: 0; }
.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gal--wide { grid-column: span 2; }
.gal--wide img { aspect-ratio: 16 / 9; }
.gal figcaption { margin-top: 10px; font-size: 13px; color: var(--muted-d); }

/* ---------- 25. Formularz ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px var(--gut); }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.field input, .field select, .field textarea {
    min-height: 50px;
    padding: 13px 15px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 2px;
    font-size: 16px;
    transition: border-color var(--dur) var(--ease);
}
.field textarea { min-height: auto; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); }
.field__err { display: none; margin-top: 7px; font-size: 13px; color: #E0705E; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #E0705E; }
.field.has-error .field__err { display: block; }

.check { display: flex; gap: 13px; margin-top: 22px; align-items: flex-start; }
.check input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--copper); }
.check label { font-size: 15px; color: var(--muted); line-height: 1.6; }
.check label a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.check.has-error label { color: #E0705E; }

.form-note { margin-top: 28px; font-size: 13.5px; color: var(--muted-d); }
.alert { padding: 16px 20px; margin-bottom: 30px; border-left: 2px solid #E0705E; background: rgba(224, 112, 94, .1); font-size: 15px; }

.thanks { padding-top: 96px; }
.thanks .h1 { margin: 16px 0 24px; }
.thanks .small a { border-bottom: 1px solid var(--line-2); }

/* ---------- 26. Strony prawne ---------- */
.legal { max-width: 860px; }
.legal h2 { margin: 46px 0 16px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 28px 0 12px; color: var(--copper); }
.legal p { color: #C6CCD1; }
.legal a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.legal a:hover { border-color: var(--copper); }
.legal-list { display: grid; gap: 10px; margin: 0 0 1.15em; }
.legal-list li { position: relative; padding-left: 24px; color: #C6CCD1; }
.legal-list li::before { content: "—"; position: absolute; left: 0; color: var(--copper); }
.legal__note { margin-top: 40px; padding: 22px 26px; border-left: 2px solid var(--copper); background: rgba(208, 138, 70, .07); }
.legal__updated { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--muted-d); }

/* ---------- 27. Stopka ---------- */
.site-footer { background: var(--deep); padding: 84px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px var(--gut); }
.footer-logo { font-size: 24px; font-weight: 300; letter-spacing: -.03em; margin-bottom: 18px; }
.footer-logo span { font-family: var(--serif); font-style: italic; color: var(--copper); }
.footer-about { font-size: 15px; color: var(--muted); max-width: 42ch; }
.site-footer h4 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 18px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer li { font-size: 15px; color: var(--muted); }
.site-footer li a:hover { color: var(--copper); }
.footer-ent { margin-top: 16px; color: var(--text); }

.footer-disclaimer { margin-top: 62px; padding-top: 30px; border-top: 1px solid var(--line); }
.footer-disclaimer p { font-size: 14px; color: var(--muted); max-width: 92ch; }
.footer-disclaimer a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.footer-disclaimer strong { color: var(--text); font-weight: 600; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px 30px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--muted-d);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom a:hover, .footer-bottom button:hover { color: var(--copper); }
.footer-bottom button { font-size: 13px; color: var(--muted-d); padding: 0; }

/* ---------- 28. Cookies ---------- */
.cookie-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    background: rgba(6, 8, 10, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform .45s var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.cookie-bar p { font-size: 14px; color: var(--muted); max-width: 74ch; }
.cookie-bar a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.cookie-bar .btn-row { margin-top: 0; flex: none; }
.cookie-bar .btn { min-height: 44px; padding: 11px 20px; font-size: 13px; }

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 8, 10, .8);
}
.modal.is-open { display: flex; }
.modal__box {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 86vh;
    overflow-y: auto;
    padding: 40px 38px 34px;
    background: var(--bg-2);
    border: 1px solid var(--line);
}
.modal__box .h3 { margin-bottom: 12px; }
.modal__close { position: absolute; top: 14px; right: 18px; font-size: 30px; line-height: 1; color: var(--muted); }
.modal__close:hover { color: var(--text); }
.cookie-opt { display: flex; gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cookie-opt input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--copper); }
.cookie-opt b { display: block; margin-bottom: 5px; font-weight: 600; }
.cookie-opt p { font-size: 14px; color: var(--muted); }
.modal .btn-row { margin-top: 26px; }

/* ---------- 29. Animacje ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 30. Responsywność ---------- */
@media (max-width: 1340px) {
    .header-top__item--tel { display: none; }
    .header-top__item--addr::after { display: none; }
}

@media (max-width: 1220px) {
    .nav a { padding: 0 14px; }
    .nav a span { font-size: 13px; }
    .logo { padding-right: 22px; }
    .header-cta { margin-left: 18px; padding: 12px 18px; }
    .header-top__item--addr { display: none; }
}

@media (max-width: 1000px) {
    :root { --sec: 88px; --edge: 26px; --gut: 24px; }

    .nav, .header-cta { display: none; }
    .burger { display: flex; }
    .header-inner { min-height: 74px; }
    .header-top__item { display: none; }
    .header-top { max-height: 110px; }
    .header-top__inner { height: auto; padding: 9px 0; white-space: normal; }
    .compliance { margin-left: 0; flex: 1 1 auto; min-width: 0; }

    .col-4, .col-5, .col-6, .col-7 { grid-column: 1 / -1; }
    .start-7, .start-8, .start-9 { grid-column-start: 1; }

    .hero { min-height: 74vh; }
    .hero__inner { padding: 90px 0 56px; }
    .hero__bar-inner { gap: 26px; }

    .dish-cards, .game-grid, .set-grid, .room-grid, .pair-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-grid, .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .factbar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .cta-band { align-items: flex-start; }
    .section--tight { padding: 64px 0; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    :root { --sec: 66px; --edge: 20px; }

    .compliance { font-size: 9.5px; letter-spacing: .1em; line-height: 1.5; gap: 8px; }
    .compliance i { padding: 2px 5px; }

    .sec-head { flex-wrap: wrap; gap: 8px 18px; margin-bottom: 40px; }
    .sec-head__title { flex-basis: 100%; order: 3; }
    .sec-head .eyebrow { text-align: left; }

    .hero { min-height: 0; }
    .hero__inner { padding: 66px 0 44px; }
    .hero__bar-inner { flex-direction: column; gap: 18px; }

    .page-hero__inner { padding: 60px 0 52px; }
    .page-hero--short .page-hero__inner { padding: 48px 0 40px; }

    .dish-cards, .game-grid, .set-grid, .room-grid, .pair-grid,
    .feature-grid, .feature-grid--4, .info-grid, .info-grid--tight,
    .team-grid, .gallery, .menu-cols, .quote-grid,
    .form-grid, .footer-grid, .factbar__inner, .stats {
        grid-template-columns: 1fr;
    }
    .stats { gap: 34px; }
    .gal--wide { grid-column: span 1; }
    .gal--wide img { aspect-ratio: 4 / 3; }

    .timeline li, .schedule__row { grid-template-columns: 1fr; gap: 8px; }
    .feature { padding: 28px 22px; }
    .notice, .callout, .helpline, .modal__box { padding-left: 22px; padding-right: 22px; }
    .set { padding: 26px 22px; }

    .btn, .btn--lg { width: 100%; }
    .btn-row { gap: 10px; }
    .cookie-bar .btn { width: 100%; }
    .cookie-bar__inner { padding-top: 16px; padding-bottom: 16px; }
    .cookie-bar .btn-row { width: 100%; }

    .footer-bottom { flex-direction: column; }
    .footer-bottom nav { gap: 14px 20px; }

    .filters { gap: 8px; }
    .filter { padding: 10px 15px; font-size: 12px; }
}
