/* Golden Lounge Polska — arkusz stylów */

:root {
  --bg: #0e1512;
  --bg-2: #121b17;
  --panel: #17211c;
  --panel-2: #1c2822;
  --line: rgba(201, 162, 39, 0.22);
  --line-soft: rgba(237, 234, 227, 0.1);
  --gold: #c9a227;
  --gold-lt: #e6cb7c;
  --ink: #eceae4;
  --ink-dim: #a8b0a8;
  --ink-mute: #7d867e;
  --ok: #6fbf8f;
  --err: #e08b7a;
  --radius: 4px;
  --wrap: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: break-word;
  /* clip zamiast hidden — nie tworzy kontenera przewijania, więc sticky header działa */
  overflow-x: clip;
}

body.is-locked { overflow: hidden; }

img,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: var(--gold-lt); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: 0.45em; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #10160f;
  padding: 10px 16px;
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Nagłówek ---------- */

.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(14, 21, 18, 0.94);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: saturate(140%) blur(8px);
}

.hdr__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand img { width: 38px; height: 38px; }

.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav a:not(.btn) {
  display: block;
  padding: 9px 12px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  border-radius: var(--radius);
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); background: rgba(201, 162, 39, 0.08); }
.nav a:not(.btn)[aria-current="page"] { color: var(--gold-lt); }

.nav__group { position: relative; }

.nav__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  background: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav__toggle:hover { color: var(--ink); background: rgba(201, 162, 39, 0.08); }
.nav__toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"]::after { transform: translateY(1px) rotate(-135deg); }

.nav__drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 232px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
}
.nav__drop[data-open="true"] { display: block; }
.nav__drop a { padding: 10px 12px; font-size: 0.9rem; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.6px;
  background: var(--gold-lt);
  transition: transform 0.22s var(--ease), opacity 0.18s var(--ease);
}
.burger::before { top: 15px; }
.burger span { top: 21px; }
.burger::after { top: 27px; }
.burger[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span { opacity: 0; }
.burger[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Przyciski ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #12180f;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: #12180f;
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--gold-lt);
  border-color: var(--line);
}
.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-lt);
  border-color: var(--gold);
}

.btn--sm { padding: 10px 18px; font-size: 0.76rem; }
.btn--wide { width: 100%; }

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 84px 0;
  border-bottom: 1px solid var(--line-soft);
}
.hero--sub { min-height: 340px; padding: 64px 0; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(9, 14, 12, 0.95) 8%, rgba(9, 14, 12, 0.78) 48%, rgba(9, 14, 12, 0.55) 100%);
}

.hero__inner { max-width: 660px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.08rem;
  color: var(--ink-dim);
  max-width: 60ch;
}

/* ---------- Sekcje ---------- */

.sec { padding: 76px 0; }
.sec--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.sec--tight { padding: 52px 0; }

.sec__head { max-width: 720px; margin-bottom: 40px; }
.sec__head--mid { margin-inline: auto; text-align: center; }
.sec__head--mid .eyebrow { justify-content: center; }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.split--wide { grid-template-columns: 1.15fr 1fr; }

.card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.4em; }
.card p:last-child { margin-bottom: 0; }

.card__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.stat {
  text-align: center;
  padding: 26px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1.1;
}
.stat span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.media {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.media img { width: 100%; }

.note {
  border-left: 2px solid var(--gold);
  background: rgba(201, 162, 39, 0.06);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--ink-dim);
}
.note p:last-child { margin-bottom: 0; }

/* ---------- Galeria ---------- */

.gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gal__item {
  position: relative;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
  display: block;
  width: 100%;
}
.gal__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.gal__item:hover img { transform: scale(1.05); opacity: 0.86; }

.gal__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(8, 12, 10, 0.9));
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-align: left;
}

/* ---------- Akordeon ---------- */

.acc {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.acc + .acc { margin-top: 12px; }

.acc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.06rem;
  list-style: none;
  transition: background 0.18s var(--ease);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: rgba(201, 162, 39, 0.06); }
.acc summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.22s var(--ease);
}
.acc[open] summary::after { transform: translateY(2px) rotate(-135deg); }
.acc__body { padding: 0 22px 20px; color: var(--ink-dim); }
.acc__body > :last-child { margin-bottom: 0; }

/* ---------- Zakładki ---------- */

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px;
}

.tabs__btn {
  font: inherit;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink-dim);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.tabs__btn:hover { color: var(--ink); background: rgba(201, 162, 39, 0.07); }
.tabs__btn[aria-selected="true"] {
  color: var(--gold-lt);
  border-color: var(--line);
  background: rgba(201, 162, 39, 0.1);
}

.tabs__panel[hidden] { display: none; }

/* ---------- Lokalizacje / kontakt ---------- */

.venue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.venue img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.venue__body { padding: 24px 24px 26px; }
.venue__city {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.venue__tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.dl { margin: 0; font-size: 0.95rem; }
.dl div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid var(--line-soft);
}
.dl div:first-child { border-top: 0; }
.dl dt { color: var(--ink-mute); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.dl dd { margin: 0; color: var(--ink-dim); }
.dl dd a { color: var(--gold-lt); }

.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line-soft);
}
.contact-list li:first-child { border-top: 0; }
.contact-list span {
  flex: 0 0 106px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 3px;
}
.contact-list strong { font-weight: 500; }

/* ---------- Formularze ---------- */

.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }

.field label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); outline: none; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.field option { background: var(--bg-2); color: var(--ink); }

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
}
.field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); }
.field--check label {
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  line-height: 1.5;
}

.field__err {
  font-size: 0.8rem;
  color: var(--err);
  min-height: 0;
}
.field__err:empty { display: none; }

.form__msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  border: 1px solid var(--line-soft);
}
.form__msg[data-state="ok"] { border-color: rgba(111, 191, 143, 0.5); color: var(--ok); }
.form__msg[hidden] { display: none; }

.form__hint { font-size: 0.83rem; color: var(--ink-mute); margin: 0; }

/* ---------- Stopka ---------- */

.ftr {
  background: #0a100d;
  border-top: 1px solid var(--line-soft);
  padding: 58px 0 26px;
  font-size: 0.92rem;
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-soft);
}

.ftr h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 9px; }
.ftr a { color: var(--ink-dim); }
.ftr a:hover { color: var(--gold-lt); }
.ftr p { color: var(--ink-mute); }

.ftr__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  color: var(--ink-mute);
  font-size: 0.82rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  flex: 0 0 auto;
}

/* ---------- Okna modalne ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(6, 10, 8, 0.86);
  backdrop-filter: blur(4px);
}
.modal[data-open="true"] { display: flex; }

.modal__box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 34px 32px;
  text-align: center;
  animation: pop 0.24s var(--ease);
}
.modal__box--wide { max-width: 640px; text-align: left; }
.modal__box--media { max-width: 1060px; padding: 14px; background: #0a100d; }
.modal__box--media img { width: 100%; border-radius: var(--radius); }

@keyframes pop {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(14, 21, 18, 0.8);
  color: var(--gold-lt);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s var(--ease);
}
.modal__close:hover { border-color: var(--gold); }

.modal__cap {
  color: var(--ink-dim);
  font-size: 0.88rem;
  padding: 10px 6px 4px;
  margin: 0;
  text-align: center;
}

.gate__mark { width: 62px; height: 62px; margin: 0 auto 18px; }
.gate h2 { font-size: 1.6rem; margin-bottom: 0.5em; }
.gate p { color: var(--ink-dim); font-size: 0.95rem; }
.gate .btn-row { justify-content: center; margin-top: 24px; }
.gate .btn { flex: 1 1 160px; }
.gate__deny {
  display: none;
  margin-top: 20px;
  color: var(--err);
  font-size: 0.9rem;
}
.gate__deny[data-show="true"] { display: block; }

/* ---------- Pasek cookies ---------- */

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: var(--wrap);
  margin: 0 auto;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
}
.cookie[data-open="true"] { display: flex; }
.cookie p { margin: 0; font-size: 0.9rem; color: var(--ink-dim); flex: 1 1 340px; }
.cookie__acts { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Do góry ---------- */

.totop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(23, 33, 28, 0.94);
  color: var(--gold-lt);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s var(--ease);
}
.totop[data-show="true"] { opacity: 1; visibility: visible; transform: none; }
.totop:hover { border-color: var(--gold); }
.totop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 10px;
  height: 10px;
  border-left: 1.6px solid currentColor;
  border-top: 1.6px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- Treść prawna ---------- */

.legal { max-width: 820px; }
.legal h2 { margin-top: 1.8em; }
.legal h3 { margin-top: 1.4em; }
.legal ul { color: var(--ink-dim); }
.legal p { color: var(--ink-dim); }

.toc {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 34px;
}
.toc h4 { margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; color: var(--ink-dim); }

.crumbs {
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.crumbs a { color: var(--ink-dim); }
.crumbs span { margin: 0 7px; opacity: 0.5; }

.tbl-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-bottom: 1.2em;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  color: var(--ink-dim);
}
th {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--panel);
}

/* ---------- CTA ---------- */

.cta {
  text-align: center;
  background: linear-gradient(rgba(10, 16, 13, 0.9), rgba(10, 16, 13, 0.9)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 54px 30px;
}
.cta .btn-row { justify-content: center; }
.cta p { color: var(--ink-dim); max-width: 56ch; margin-inline: auto; }

/* ---------- Oferty pracy ---------- */

.job {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.2s var(--ease);
}
.job:hover { border-color: var(--line); }
.job__meta { flex: 1 1 320px; }
.job h3 { margin-bottom: 6px; }
.job__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.job__tags i {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- Menu restauracji ---------- */

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { margin: 0 0 3px; font-family: var(--serif); }
.menu-item p { margin: 0; font-size: 0.88rem; color: var(--ink-mute); }
.menu-item b {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--gold-lt);
  white-space: nowrap;
}

/* ---------- Responsywność ---------- */

@media (max-width: 1000px) {
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .burger { display: block; }

  /* Uwaga: backdrop-filter na .hdr tworzy blok zawierający dla potomków,
     dlatego menu pozycjonujemy absolutnie względem nagłówka, a nie okna. */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    z-index: 55;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px 40px;
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
    overflow-y: auto;
    /* Przesunięcie w górę, a nie w bok — dzięki temu zamknięte menu
       nie powiększa szerokości dokumentu i nie tworzy poziomego przewijania. */
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.24s var(--ease), opacity 0.2s var(--ease), visibility 0.24s;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; visibility: visible; }
  .nav a:not(.btn) { padding: 14px 4px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__group { width: 100%; }
  .nav__toggle { width: 100%; justify-content: space-between; padding: 14px 4px; font-size: 1rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav__drop {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    background: rgba(201, 162, 39, 0.05);
    padding: 0 0 0 14px;
  }
  .nav__drop[data-open="true"] { display: block; }
  .nav .btn { margin-top: 20px; }

  .split, .split--wide, .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 480px; padding: 62px 0; }
  .sec { padding: 58px 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .gal { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 28px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav .btn { width: 100%; }
  .dl div { grid-template-columns: 1fr; gap: 2px; }
  .contact-list li { flex-direction: column; gap: 3px; }
  .contact-list span { flex: none; }
  .modal__box { padding: 32px 22px 26px; }
  .cookie { padding: 16px; }
  .cookie__acts { width: 100%; }
  .cookie .btn { flex: 1 1 auto; }
  .brand__name { font-size: 1rem; }
  .job .btn { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
