:root {
  --bg: #f4efe4;
  --bg-2: #ebe4d4;
  --paper: #fbf8f2;
  --ink: #1a241c;
  --muted: #3f4d45;
  --line: #d4ccb8;
  --forest: #1e3a2f;
  --forest-2: #163028;
  --gold: #c4a35a;
  --gold-2: #7a5e24;
  --danger: #8a3b2b;
  --ok: #2d5a3d;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(26, 36, 28, 0.08);
  --max: 1080px;
  --header: 72px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
}

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

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-2); }

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--forest);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 8px; }

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f4efe4;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img { width: 40px; height: 40px; }
.brand span { font-size: 15px; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

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

.nav a, .nav-drop > button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 10px;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
}
.nav a:hover, .nav-drop > button:hover,
.nav a.is-active { background: var(--bg-2); }

.nav-drop { position: relative; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 30;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu { display: grid; }
.nav-drop-menu a { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  background: var(--forest);
}
.btn:hover { background: var(--forest-2); color: #fff; }
.btn-gold { background: var(--gold); color: var(--forest-2); }
.btn-gold:hover { background: var(--gold-2); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--bg-2); color: var(--forest); }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

.media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.media::before {
  content: "";
  position: absolute;
  inset: -16px;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.08);
}
.media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-media {
  aspect-ratio: 3 / 2;
  margin: -22px -22px 16px;
  border-bottom: 1px solid var(--line);
}

.page-media {
  aspect-ratio: 3 / 2;
  max-width: 720px;
  margin: 20px 0 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.grid-2 > div > .page-media {
  max-width: none;
  margin-top: 0;
}

.media-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.media-mosaic .media {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.lqip-hero { background-image: url("../img/hero-lqip.webp"); }
.lqip-sportbar { background-image: url("../img/sportbar-lqip.webp"); }
.lqip-klub { background-image: url("../img/klub-lqip.webp"); }
.lqip-hotel { background-image: url("../img/hotel-lqip.webp"); }
.lqip-meetup { background-image: url("../img/meetup-lqip.webp"); }
.lqip-iroda { background-image: url("../img/iroda-lqip.webp"); }

.kicker {
  color: var(--forest);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 12px;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.35rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 42rem; }

.section { padding: 56px 0; }
.section-head { margin-bottom: 28px; max-width: 40rem; }

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card p:last-child { margin-bottom: 0; }
.icon-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 14px;
}

.steps { counter-reset: step; padding: 0; margin: 0; display: grid; gap: 12px; }
.steps li {
  list-style: none;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tab {
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.tab.is-on, .tab[aria-selected="true"] {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}
.panel[hidden] { display: none; }
.map-link { display: inline-block; margin-top: 8px; }

.hours { display: grid; gap: 8px; margin: 0; }
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed var(--line);
  padding: 8px 0;
}

details.acc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
}
details.acc + details.acc { margin-top: 10px; }
details.acc summary {
  cursor: pointer;
  min-height: 52px;
  display: flex;
  align-items: center;
  font-weight: 650;
  list-style: none;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 400;
}
details.acc[open] summary::after { content: "–"; }
details.acc .acc-body { padding: 0 0 16px; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

label { display: block; font-size: 14px; font-weight: 650; margin: 0 0 6px; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  margin-bottom: 14px;
}
textarea { min-height: 120px; resize: vertical; }
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  margin: 4px 0 16px;
}
.check input { width: 18px; height: 18px; min-height: 18px; margin: 2px 0 0; }

.form-msg {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.form-msg.is-ok { display: block; background: #e4efe8; color: var(--ok); }
.form-msg.is-err { display: block; background: #f6e6e2; color: var(--danger); }

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--forest);
  color: #e7e1d4;
  padding: 40px 0 24px;
  margin-top: 24px;
}
.site-footer a { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.05rem; }
.foot-links { display: grid; gap: 6px; }
.legal-row {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  font-size: 13px;
  color: #c9c2b2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}

.cookie-bar {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 60;
  background: var(--forest-2);
  color: #f4efe4;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  display: none;
  max-width: 720px;
  margin-inline: auto;
  left: 12px;
  right: 12px;
}
.cookie-bar.is-show { display: block; }
.cookie-bar p { margin: 0 0 12px; font-size: 14px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }

dialog.modal {
  border: 0;
  border-radius: 16px;
  padding: 0;
  width: min(92vw, 520px);
  background: var(--paper);
  box-shadow: var(--shadow);
}
dialog.modal::backdrop { background: rgba(26, 36, 28, .45); }
.modal-in { padding: 22px; }
.modal-x {
  float: right;
  border: 0;
  background: var(--bg-2);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

.page-hero { padding: 40px 0 12px; }
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.15rem; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
}
table.data th, table.data td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th { width: 38%; background: var(--bg-2); }

.job-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
  }
  .nav.is-open { display: flex; }
  .nav-drop-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 8px;
    display: none;
  }
  .nav-drop.is-open .nav-drop-menu { display: grid; }
  .grid-4, .grid-3, .grid-2, .contact-grid, .footer-grid, .hero-grid { grid-template-columns: 1fr; }
  .media-mosaic { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 32px; }
  .hero-grid { gap: 24px; }
  .legal-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .media::before { content: none; filter: none; transform: none; }
}
