/* ================================================================
   LUŽEC AREÁL — styles.css  v=1
   Design: dark-industrial, steel-blue accent
   Fonts:  Familjen Grotesk (headings) + Inter (body)
================================================================ */

/* ── RESET + ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:          #07090d;
  --ink2:         #0e1219;
  --steel:        #2F1E84;
  --steel-light:  #ED7900;
  --steel-pale:   rgba(47,30,132,0.08);
  --steel-pale2:  rgba(47,30,132,0.12);
  --accent:       #ED7900;
  --accent-dark:  #C96700;
  --accent-pale:  rgba(237,121,0,0.10);
  --bg:           #f0f2f5;
  --bg2:          #e6e9ed;
  --white:        #ffffff;
  --text:         #0c1320;
  --text-mid:     #374255;
  --text-muted:   #7a8596;
  --border:       rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.05);
  --border-dark:  rgba(255,255,255,0.07);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;
  --radius-pill:  999px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ─────────────────────────────────────────────────────────────
   NAV PILL (light)
───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1240px;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 0 10px 0 16px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 500;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, top 0.3s;
}
#navbar.scrolled {
  top: 10px;
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Clusters */
.nav-left, .nav-right {
  display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-right { gap: 6px; justify-content: flex-end; }

/* Wordmark */
.nav-wordmark {
  display: flex; align-items: center; gap: 3px;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; flex-shrink: 0;
  white-space: nowrap;
}
.wordmark-main { color: var(--text); }
.wordmark-sub  { color: var(--steel); }
.wordmark-znak { height: 26px; width: auto; display: block; }
.nav-wordmark, .drawer-wordmark, .footer-wordmark { display: inline-flex; align-items: center; gap: 9px; }

/* Nav links */
.nav-link {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.79rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 12px; border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
  background: none; border: none; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(0,0,0,0.05); }

/* Chevron */
.chevron { width: 8px; height: 8px; flex-shrink: 0; opacity: 0.30; transition: transform 0.25s, opacity 0.2s; }

/* Dropdown (kept for mobile drawer compatibility) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; user-select: none; }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-dropdown.open .chevron { transform: rotate(180deg); opacity: 0.6; }

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 6px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.14);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 9px 13px;
  font-size: 0.78rem; color: var(--text-mid);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--text); }
.nav-dropdown-menu a.active { color: var(--steel); font-weight: 600; }
.dropdown-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 4px 6px; }

/* CTA */
.nav-cta {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  background: var(--accent);
  color: #1a1200; padding: 9px 17px; border-radius: var(--radius-pill);
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 4px 14px rgba(240,168,0,0.30);
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(240,168,0,0.40); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm); cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.08); }
.nav-hamburger span {
  display: block; width: 15px; height: 1.5px;
  background: var(--text-mid); border-radius: 2px;
  transition: transform 0.3s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   MOBILE DRAWER
───────────────────────────────────────────────────────────── */
#drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 600; opacity: 0; pointer-events: none;
  transition: opacity 0.32s;
}
#drawer-overlay.visible { opacity: 1; pointer-events: all; }

#drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: #080b11;
  z-index: 700;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.07);
}
#drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.drawer-wordmark {
  display: flex; align-items: center;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none;
}
.drawer-wordmark .wordmark-main { color: #fff; }
.drawer-wordmark .wordmark-sub  { color: var(--steel-light); }
.drawer-close {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.10); background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.07); color: #fff; }
.drawer-close svg { width: 16px; height: 16px; }

/* Nav inside drawer */
.drawer-nav {
  flex: 1; padding: 12px 12px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 1px;
}

/* Flat drawer link */
.drawer-link {
  display: block;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.56);
  text-decoration: none; padding: 11px 13px; border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.drawer-link:hover, .drawer-link.active { color: #fff; background: rgba(255,255,255,0.05); }

/* Accordion group */
.drawer-group { }
.drawer-group-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.56);
  padding: 11px 13px; border-radius: var(--radius);
  background: none; border: none; cursor: pointer; text-align: left;
  transition: color 0.2s, background 0.2s;
}
.drawer-group-toggle:hover { color: #fff; background: rgba(255,255,255,0.05); }
.drawer-group.open .drawer-group-toggle { color: #fff; background: rgba(255,255,255,0.05); }
.drawer-group-toggle .chevron { width: 10px; height: 10px; transition: transform 0.3s, opacity 0.2s; }
.drawer-group.open .drawer-group-toggle .chevron { transform: rotate(180deg); opacity: 0.85; }

.drawer-group-menu {
  overflow: hidden; max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column; gap: 1px;
  padding: 0 0 0 8px;
}
.drawer-sub-link {
  display: block; font-size: 0.83rem; font-weight: 400;
  color: rgba(255,255,255,0.40); text-decoration: none;
  padding: 9px 13px; border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.drawer-sub-link:hover, .drawer-sub-link.active { color: #fff; background: rgba(255,255,255,0.04); }

/* Drawer footer */
.drawer-footer {
  padding: 14px 14px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-cta {
  display: block; text-align: center;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  background: var(--accent); color: #1a1200;
  padding: 13px; border-radius: var(--radius); text-decoration: none;
  transition: background 0.2s;
}
.drawer-cta:hover { background: var(--accent-dark); }
.drawer-contact { display: flex; flex-direction: column; gap: 5px; padding-top: 2px; }
.drawer-contact a {
  font-size: 0.77rem; color: rgba(255,255,255,0.3);
  text-decoration: none; transition: color 0.2s;
}
.drawer-contact a:hover { color: rgba(255,255,255,0.7); }

/* ─────────────────────────────────────────────────────────────
   HERO (homepage)
───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 0 40px 90px; overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/areal/aerial-01.jpg') center/cover no-repeat;
  z-index: 0; opacity: 0; transition: opacity 0.4s;
}
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; z-index: 0;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,9,13,0.68) 0%,
    rgba(7,9,13,0.30) 40%,
    rgba(7,9,13,0.12) 100%);
}
.hero.no-video .hero-bg { opacity: 1; }
.hero.no-video .hero-video-wrap { display: none; }

.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--steel-light); }
.hero-h1 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 700; line-height: 0.96; letter-spacing: -0.025em;
  color: #fff; margin-bottom: 34px;
}
.hero-h1 strong { color: var(--steel-light); font-weight: 700; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.hero-left { max-width: 480px; }
.hero-desc { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,1); line-height: 1.78; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; padding-bottom: 4px; flex-shrink: 0; }
.hero-stat-num {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.85rem; font-weight: 700; color: #fff; line-height: 1;
}
.hero-stat-label { font-size: 0.64rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; margin-top: 6px; }

/* ─────────────────────────────────────────────────────────────
   PAGE HERO (sub-pages)
───────────────────────────────────────────────────────────── */
.page-hero {
  padding: 152px 40px 74px;
  background: var(--ink2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(237,121,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero-h1 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 18px;
}
.page-hero-h1 strong { color: var(--steel-light); }
.page-hero-desc { font-size: 0.94rem; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.74; max-width: 580px; }

/* ─────────────────────────────────────────────────────────────
   AVAILABLE STRIP
───────────────────────────────────────────────────────────── */
.avail-strip {
  background: var(--steel); padding: 12px 40px;
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
}
.avail-label {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.58);
}
.avail-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.avail-item { display: flex; align-items: center; gap: 7px; }
.avail-dot { width: 6px; height: 6px; border-radius: 50%; background: #6ee7b7; flex-shrink: 0; }
.avail-name { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.81rem; font-weight: 600; color: #fff; }
.avail-size { font-size: 0.72rem; color: rgba(255,255,255,0.52); }

/* ─────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.section { padding: 96px 40px; }
.section-dark   { background: var(--ink); }
.section-dark2  { background: var(--ink2); }
.section-light  { background: var(--bg); }
.section-white  { background: var(--white); }
.wrap { max-width: 1200px; margin: 0 auto; }

.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(47,30,132,0.18), transparent); }

/* Eyebrow */
.eyebrow {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; }
.ey-steel  { color: var(--steel); }      .ey-steel::before  { background: var(--steel); }
.ey-blue   { color: var(--steel-light); } .ey-blue::before  { background: var(--steel-light); }
.ey-muted  { color: var(--text-muted); }  .ey-muted::before { background: var(--text-muted); }
.ey-ghost  { color: rgba(255,255,255,0.35); } .ey-ghost::before { background: rgba(255,255,255,0.35); }

/* Section headings */
.sh { font-family: 'Familjen Grotesk', sans-serif; font-weight: 700; letter-spacing: -0.02em; line-height: 1.04; }
.sh-xl  { font-size: clamp(1.9rem, 3.8vw, 3.1rem); }
.sh-lg  { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.sh-md  { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.sh-dark  { color: var(--text); }
.sh-light { color: #fff; }
.sh strong      { color: var(--steel); }
.sh-light strong { color: var(--steel-light); }

/* Lead text */
.lead { font-size: 0.94rem; font-weight: 300; line-height: 1.78; margin-top: 14px; }
.lead-mid   { color: var(--text-mid); }
.lead-ghost { color: rgba(255,255,255,0.50); }
.lead-muted { color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.86rem; font-weight: 700;
  background: var(--accent); color: #1a1200;
  padding: 12px 22px; border-radius: var(--radius-sm); text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(240,168,0,0.28);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(240,168,0,0.40); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.86rem; font-weight: 700;
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 12px 22px; border-radius: var(--radius-sm); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.50); background: rgba(255,255,255,0.05); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.86rem; font-weight: 700;
  background: transparent; color: var(--text-mid);
  padding: 12px 22px; border-radius: var(--radius-sm); text-decoration: none;
  border: 1px solid rgba(12,19,32,0.18);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: rgba(12,19,32,0.35); background: var(--bg); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700;
  background: #fff; color: var(--steel);
  padding: 13px 26px; border-radius: var(--radius-sm); text-decoration: none;
  white-space: nowrap; transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.14); }

.btn-accent {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.86rem; font-weight: 700;
  background: var(--accent); color: #1a1200;
  padding: 12px 22px; border-radius: var(--radius-sm); text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(240,168,0,0.28);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.split-img:hover img { transform: scale(1.03); }
.split-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--steel); color: #fff;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 13px; border-radius: var(--radius-sm);
}

/* ─────────────────────────────────────────────────────────────
   BODY TEXT
───────────────────────────────────────────────────────────── */
.body-text p { font-size: 0.9rem; font-weight: 300; line-height: 1.84; color: var(--text-mid); margin-bottom: 14px; }
.body-text p:last-child { margin-bottom: 0; }
.body-text-ghost p { color: rgba(255,255,255,0.52); }

/* ─────────────────────────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2px;
  background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px;
}
.svc-item { background: var(--white); padding: 32px 28px; transition: background 0.2s; }
.svc-item:hover { background: var(--bg); }
.svc-num { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.59rem; font-weight: 600; letter-spacing: 0.18em; color: var(--steel-light); margin-bottom: 12px; }
.svc-title { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-text { font-size: 0.81rem; font-weight: 300; color: var(--text-mid); line-height: 1.72; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.77rem; font-weight: 600; color: var(--steel); text-decoration: none; margin-top: 13px; transition: gap 0.2s; }
.svc-link:hover { gap: 9px; }

/* Icon cards (3-col) */
.icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.icon-card { padding: 26px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); }
.icon-card-light { padding: 26px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.icon-wrap { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--steel-pale2); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.icon-wrap svg { stroke: var(--steel-light); }
.icon-title      { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 7px; }
.icon-title-dark { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.icon-text      { font-size: 0.76rem; font-weight: 300; color: rgba(255,255,255,0.42); line-height: 1.64; }
.icon-text-dark { font-size: 0.76rem; font-weight: 300; color: var(--text-muted); line-height: 1.64; }

/* ─────────────────────────────────────────────────────────────
   HALLS / SPACES TABLE
───────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin-top: 44px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--ink); }
thead th {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.61rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.44);
  padding: 13px 20px; text-align: left; white-space: nowrap;
}
tbody tr { border-top: 1px solid var(--border-light); transition: background 0.15s; }
tbody tr:hover { background: var(--bg); }
tbody td { font-size: 0.81rem; font-weight: 300; color: var(--text-mid); padding: 12px 20px; vertical-align: middle; }
td.hall-name { font-family: 'Familjen Grotesk', sans-serif; font-weight: 700; color: var(--text); font-size: 0.86rem; white-space: nowrap; }
td.hall-size { font-family: 'Familjen Grotesk', sans-serif; font-weight: 600; color: var(--steel); white-space: nowrap; }
.badge-free  { display: inline-flex; align-items: center; gap: 5px; font-size: 0.67rem; font-weight: 600; color: #059669; background: #d1fae5; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.badge-free::before  { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #059669; }
.badge-taken { display: inline-flex; align-items: center; gap: 5px; font-size: 0.67rem; font-weight: 400; color: var(--text-muted); background: var(--bg2); padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.badge-taken::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted); }
.badge-partial { display: inline-flex; align-items: center; gap: 5px; font-size: 0.67rem; font-weight: 500; color: #d97706; background: #fef3c7; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
.badge-partial::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #d97706; }

/* Table filters */
.table-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.table-filter-btn {
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  background: var(--bg); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: var(--radius-pill); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.table-filter-btn.active,
.table-filter-btn:hover { background: var(--steel); color: #fff; border-color: var(--steel); }

/* ─────────────────────────────────────────────────────────────
   FULFILLMENT STEPS
───────────────────────────────────────────────────────────── */
.ff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.ff-steps { display: flex; flex-direction: column; }
.ff-step { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.ff-step:first-child { padding-top: 0; }
.ff-step:last-child  { border-bottom: none; }
.ff-num   { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.59rem; font-weight: 600; letter-spacing: 0.12em; color: var(--steel-light); min-width: 26px; padding-top: 2px; }
.ff-title { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ff-text  { font-size: 0.79rem; font-weight: 300; color: rgba(255,255,255,0.46); line-height: 1.66; }
.ff-box   { background: rgba(237,121,0,0.06); border: 1px solid rgba(237,121,0,0.18); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.ff-box-title { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.97rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ff-box-text  { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.50); line-height: 1.72; margin-bottom: 18px; }
.ff-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.ff-tag  { font-size: 0.69rem; font-weight: 500; color: var(--steel-light); background: rgba(237,121,0,0.10); border: 1px solid rgba(237,121,0,0.22); padding: 5px 11px; border-radius: var(--radius-sm); }

/* ─────────────────────────────────────────────────────────────
   FEATURE / INFO GRID
───────────────────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; list-style: none; }
.feature-list li { font-size: 0.86rem; font-weight: 300; color: var(--text-mid); line-height: 1.6; display: flex; gap: 10px; }
.feature-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--steel); margin-top: 9px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 8px; margin-top: 44px;
}
.g-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.rlz-tag {
  position: absolute; z-index: 1; top: 10px; left: 10px;
  background: rgba(7,9,13,0.78); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; pointer-events: none;
}
.rlz-tag--po { background: var(--steel, #2F1E84); }

/* Enlarged P4 map spot */
.map-spot[data-hall="parkovani-kamionu"] { width: 72px; height: 72px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
.g-item:hover img { transform: scale(1.04); }

/* LIGHTBOX */
.lb {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(0,0,0,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.lb.is-open { opacity: 1; pointer-events: all; }
.lb-img {
  max-width: min(90vw, 1200px); max-height: 86vh;
  object-fit: contain; border-radius: 4px;
  display: block; user-select: none;
}
.lb-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: #fff; width: 48px; height: 72px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-counter {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.8rem; letter-spacing: 0.05em; white-space: nowrap;
}
@media (max-width: 600px) {
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
  .lb-prev, .lb-next { width: 36px; height: 56px; }
}

/* ─────────────────────────────────────────────────────────────
   STAT / NUMBERS ROW
───────────────────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 44px; }
.stat-item { background: var(--white); padding: 28px 24px; }
.stat-num  { font-family: 'Familjen Grotesk', sans-serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--steel); line-height: 1; }
.stat-label { font-size: 0.74rem; font-weight: 300; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }
.stats-row-dark { background: rgba(255,255,255,0.04); }
.stats-row-dark .stat-item { background: transparent; }
.stats-row-dark .stat-num { color: var(--steel-light); }
.stats-row-dark .stat-label { color: rgba(255,255,255,0.36); }

/* ─────────────────────────────────────────────────────────────
   LOCATION
───────────────────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.distances { margin-top: 28px; }
.dist-item { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.dist-item:last-child { border-bottom: none; }
.dist-place { font-size: 0.88rem; color: var(--text); }
.dist-val { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.77rem; font-weight: 600; color: var(--steel); background: var(--steel-pale); padding: 4px 11px; border-radius: var(--radius-sm); white-space: nowrap; }
.loc-map { border-radius: var(--radius-lg); overflow: hidden; height: 340px; border: 1px solid var(--border); margin-top: 68px; }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─────────────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--steel-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { stroke: var(--steel); }
.contact-lbl { font-size: 0.59rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact-val { font-size: 0.9rem; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.2s; line-height: 1.4; display: block; }
a.contact-val:hover { color: var(--steel); }
.contact-sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }

/* Form */
.form-box { background: var(--bg); border-radius: var(--radius-lg); padding: 32px; }
.form-title { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 13px; }
.form-label { display: block; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 300; color: var(--text);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; width: 100%; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--steel-light); box-shadow: 0 0 0 3px rgba(237,121,0,0.12);
}
.form-textarea { min-height: 104px; resize: vertical; }
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 10px; line-height: 1.55; }
.form-success { font-size: 0.88rem; color: #059669; background: #d1fae5; border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 12px; display: none; }
.form-error   { font-size: 0.88rem; color: #dc2626; background: #fee2e2; border-radius: var(--radius-sm); padding: 12px 16px; margin-top: 12px; display: none; }

/* ─────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 2px; margin-top: 44px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: var(--white); border: none; cursor: pointer; text-align: left;
  font-family: 'Familjen Grotesk', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-question { background: var(--bg); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer-inner {
  padding: 4px 22px 18px;
  font-size: 0.86rem; font-weight: 300; color: var(--text-mid);
  line-height: 1.74; background: var(--bg);
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────────────────────────────
   REFERENCE QUOTES
───────────────────────────────────────────────────────────── */
.ref-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 44px; }
.ref-box {
  background: var(--ink2); border-radius: var(--radius-lg); padding: 38px 38px 34px;
  position: relative; border-left: 3px solid var(--steel-light);
}
.ref-mark {
  font-family: 'Familjen Grotesk', sans-serif; font-size: 5rem; color: var(--steel-light);
  opacity: 0.18; position: absolute; top: 14px; left: 28px; line-height: 1; pointer-events: none;
}
.ref-text { font-size: 0.93rem; font-weight: 300; line-height: 1.84; color: rgba(255,255,255,0.68); position: relative; z-index: 1; }
.ref-name { font-family: 'Familjen Grotesk', sans-serif; font-weight: 700; color: #fff; font-size: 0.88rem; margin-top: 24px; }
.ref-role { font-size: 0.75rem; color: rgba(255,255,255,0.36); margin-top: 3px; }

/* ─────────────────────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; margin-top: 44px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 1px; background: rgba(47,30,132,0.20); }
.timeline-item { position: relative; margin-bottom: 38px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -28px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--steel); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--steel); }
.timeline-year { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--steel); margin-bottom: 5px; }
.timeline-title { font-family: 'Familjen Grotesk', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.timeline-text { font-size: 0.84rem; font-weight: 300; color: var(--text-mid); line-height: 1.72; }

/* ─────────────────────────────────────────────────────────────
   RESIDENTIAL
───────────────────────────────────────────────────────────── */
.byt-features { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.byt-feature { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; font-weight: 300; color: var(--text-mid); }
.byt-feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--steel); flex-shrink: 0; }
.byt-price { background: var(--steel-pale); border: 1px solid rgba(30,90,138,0.14); border-radius: var(--radius); padding: 20px 22px; margin-top: 20px; }
.byt-price-num { font-family: 'Familjen Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--steel); }
.byt-price-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 5px; line-height: 1.5; }

/* ─────────────────────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────────────────────── */
.cta-banner { background: var(--steel); padding: 72px 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-h { font-family: 'Familjen Grotesk', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; color: #fff; line-height: 1.1; }
.cta-sub { font-size: 0.86rem; font-weight: 300; color: rgba(255,255,255,0.68); margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
#footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px;
  padding: 56px 40px 48px;
}
.footer-wordmark {
  display: inline-flex; align-items: center;
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: 0.01em;
  text-decoration: none; margin-bottom: 12px;
}
.footer-tagline { font-size: 0.77rem; font-weight: 300; color: #444; line-height: 1.66; max-width: 240px; margin-top: 8px; }

.footer-col h4 {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 0.63rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #888; margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.78rem; font-weight: 300; color: #333; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #000; }

.footer-col--contact address { font-style: normal; }
.footer-col--contact address p { font-size: 0.78rem; font-weight: 300; color: #333; line-height: 1.7; margin-bottom: 14px; }
.footer-col--contact address p:last-child { margin-bottom: 0; }
.footer-col--contact address strong { color: #111; font-weight: 500; }
.footer-col--contact address a { color: #333; text-decoration: none; transition: color 0.2s; }
.footer-col--contact address a:hover { color: #000; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding: 18px 40px;
}
.footer-bottom-inner span { font-size: 0.71rem; color: #888; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.71rem; color: #888; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #444; }

/* ─────────────────────────────────────────────────────────────
   INTERACTIVE AREA MAP
───────────────────────────────────────────────────────────── */
/* ── Map placeholder (interactive version TBD) ── */
.amap-placeholder {
  position: relative; line-height: 0;
}
.amap-placeholder-badge {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(15,23,42,0.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 9px 20px; border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.14);
  white-space: nowrap; pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.visible { opacity: 1; transform: none; }

/* Staggered delay helpers */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Switch to drawer navigation */
  .nav-left  { display: none; }
  .nav-cta   { display: none; }
  /* Hide contact link in nav-right too — all nav is in drawer */
  .nav-right .nav-link { display: none; }
  .nav-hamburger { display: flex; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 44px 32px 40px; }
  .footer-bottom-inner { padding: 16px 32px; }
  .icon-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .split, .ff-grid, .loc-grid, .contact-grid, .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 26px; }
  .ref-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { padding: 0 22px 66px; }
  .section { padding: 60px 22px; }
  .avail-strip { padding: 11px 22px; gap: 10px; }
  .cta-banner { padding: 50px 22px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  #footer { }
  .footer-inner { padding: 36px 22px 32px; }
  .footer-bottom-inner { padding: 14px 22px; }
  #navbar { width: calc(100% - 28px); }
  .page-hero { padding: 122px 22px 54px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .icon-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ── INTERACTIVE HALL MAP ───────────────────────────────────── */
.amap-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  line-height: 0;
}
.amap-img {
  width: 100%;
  display: block;
}
.map-spot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2.5px solid transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.map-spot:hover,
.map-spot:focus-visible {
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 5px rgba(255,255,255,0.22);
  outline: none;
}
.map-spot--free:hover,
.map-spot--free:focus-visible {
  border-color: #4ade80;
  box-shadow: 0 0 0 5px rgba(74,222,128,0.25);
}
.map-spot-label { display: none; }
.map-spot--mini {
  width: 22px;
  height: 22px;
}
.map-spot--mini:hover,
.map-spot--mini:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.22);
}
.map-spot--mini.map-spot--free:hover,
.map-spot--mini.map-spot--free:focus-visible {
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
}

/* ── AMAP WRAP RESTRUCTURE ──────────────────────────────────── */
.amap-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  line-height: 0;
}

/* ── HALL PANEL ─────────────────────────────────────────────── */

/* Mobile: classic bottom sheet */
.hall-panel {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 201;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.22);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1);
  max-height: 88vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.hall-panel.is-open {
  transform: translateY(0);
}
.hall-panel-inner {
  padding: 20px 22px 36px;
}
.hall-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hall-panel-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hall-panel-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hall-panel-badge.is-free   { background: #dcfce7; color: #15803d; }
.hall-panel-badge.is-taken  { background: #f1f5f9; color: #64748b; }
.hall-panel-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #475569;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hall-panel-close:hover { background: #e2e8f0; }
.hall-panel-title {
  font-family: 'Familjen Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}
.hall-panel-size {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Familjen Grotesk', sans-serif;
  color: var(--steel);
  margin: 6px 0 18px;
  line-height: 1;
}
.hall-photos {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -22px;
  padding: 0 22px 16px;
}
.hall-photos::-webkit-scrollbar { display: none; }
.hall-photos img {
  flex-shrink: 0;
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
  cursor: pointer;
}
.hall-photos-empty {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  width: 100%;
  padding: 18px 16px;
  margin: 0 0 16px;
  background: var(--surface, #f8f9fa);
  border-radius: 8px;
  text-align: center;
  flex-shrink: 0;
}
.hall-sheet-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0 0 20px;
}
.hall-pdf-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}
.btn-pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--steel);
  background: var(--surface, #f1f5f9);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.btn-pdf-download:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}
.hall-sheet-cta { margin-top: 4px; }

/* Desktop: side panel overlaying the map */
@media (min-width: 720px) {
  .hall-panel {
    position: absolute;
    top: 0;
    bottom: auto;
    left: auto;
    right: auto;
    width: 340px;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(0);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.32,0.72,0,1);
    overflow-y: auto;
  }
  .hall-panel.side-right {
    right: 0;
    left: auto;
    border-radius: 0 10px 10px 0;
    transform: translateX(100%);
    box-shadow: -4px 0 32px rgba(0,0,0,0.18);
  }
  .hall-panel.side-left {
    left: 0;
    right: auto;
    border-radius: 10px 0 0 10px;
    transform: translateX(-100%);
    box-shadow: 4px 0 32px rgba(0,0,0,0.18);
  }
  .hall-panel.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .hall-panel-inner {
    padding: 24px 22px 36px;
  }
  .hall-panel-title { font-size: 1.4rem; }
  .hall-panel-size  { font-size: 2.4rem; }
  .hall-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow-x: visible;
    margin: 0 0 16px;
    padding: 0;
    scroll-snap-type: none;
  }
  .hall-photos img {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    flex-shrink: unset;
    scroll-snap-align: unset;
  }
  .hall-photos img:first-child:last-child,
  .hall-photos img:first-child:nth-last-child(3) {
    grid-column: 1 / -1;
    height: 160px;
  }
  .hall-photos-empty {
    grid-column: 1 / -1;
    margin: 0 0 16px;
  }
}
