:root {
  --ink: #232f38;
  --ink-2: #33434f;
  --orange: #ff5000;
  --orange-deep: #e54800;
  --cream: #f5efed;
  --paper: #fffaf7;
  --white: #ffffff;
  --teal: #1f9d84;
  --teal-soft: #e7f6f1;
  --line: #e5ded9;
  --muted: #6d777e;
  --danger: #d84d4d;
  --shadow: 0 18px 50px rgba(35, 47, 56, .10);
  --shadow-soft: 0 12px 30px rgba(35, 47, 56, .07);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.top-strip {
  background: var(--ink);
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: .035em;
  padding: 8px 16px;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 247, .97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(35, 47, 56, .10);
  box-shadow: 0 8px 24px rgba(35, 47, 56, .035);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { width: 186px; flex: 0 0 186px; }
.brand img { width: 100%; height: auto; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 14px;
  font-weight: 780;
}
.desktop-nav a { position: relative; white-space: nowrap; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; border-radius: 2px; background: var(--orange); transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta { margin-left: 2px; white-space: nowrap; }
.menu-btn {
  display: none;
  margin-left: 0;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 9px 10px;
}
.menu-btn span { display: block; height: 2px; border-radius: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }


.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(255, 80, 0, .22); }
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 10px 24px rgba(255, 80, 0, .30); }
.btn-secondary { background: white; color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-soft); }
.btn-dark { background: var(--ink); color: white; }
.btn-large { padding: 15px 24px; }
.btn-full { width: 100%; }

.hero { padding: 68px 0 62px; overflow: hidden; background:
  radial-gradient(circle at 92% 12%, rgba(255,80,0,.10), transparent 33%),
  linear-gradient(180deg, #fffaf7 0%, #f8f1ed 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.eyebrow { color: var(--orange); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; margin-bottom: 14px; }
.eyebrow-light { color: #ffb894; }
.hero h1, .section h2, .modal h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
  font-size: clamp(48px, 6vw, 78px);
}
.hero h1 span { color: var(--orange); }
.hero-lead { max-width: 690px; font-size: 20px; line-height: 1.55; color: #4e5c66; margin: 26px 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; font-size: 13px; color: #4d5c65; font-weight: 650; }
.hero-proof div { display: flex; align-items: center; gap: 7px; }
.proof-icon { width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-weight: 900; }

.hero-visual { min-height: 470px; position: relative; }
.hero-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #dfe3e4;
  border: 1px solid rgba(35,47,56,.10);
  box-shadow: 0 28px 60px rgba(35,47,56,.20);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
  border-radius: inherit;
  pointer-events: none;
}
.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 50%;
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(22,30,36,.72) 100%);
  pointer-events: none;
}
.hero-photo-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: white;
  display: grid;
  gap: 3px;
  text-shadow: 0 1px 10px rgba(0,0,0,.30);
}
.hero-photo-caption span {
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #ffd7c3;
}
.hero-photo-caption strong { font-size: 18px; line-height: 1.2; }
.availability-float {
  position: absolute;
  right: -14px;
  bottom: 24px;
  z-index: 4;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 11px 16px;
  font-size: 13px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.availability-float strong { color: #9df3d9; font-size: 17px; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #42d8ab; box-shadow: 0 0 0 0 rgba(66,216,171,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(66,216,171,.55);} 70%{ box-shadow:0 0 0 9px rgba(66,216,171,0);} 100%{box-shadow:0 0 0 0 rgba(66,216,171,0);} }

.need-strip { border-block: 1px solid var(--line); background: white; }
.need-strip-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 12px; overflow-x: auto; scrollbar-width: none; }
.need-strip-inner::-webkit-scrollbar { display: none; }
.need-strip span { flex: 0 0 auto; font-size: 13px; font-weight: 850; color: #56636c; }
.need-strip span::before { content: "+"; color: var(--orange); margin-right: 7px; }

.section { padding: 96px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading h2 { font-size: clamp(38px, 5vw, 60px); }
.section-heading.centered { max-width: 800px; text-align: center; margin: 0 auto 48px; }
.section-lead { color: var(--muted); font-size: 18px; max-width: 650px; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.availability-summary { background: var(--teal-soft); color: #136a58; border-radius: 999px; padding: 12px 16px; font-size: 13px; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.status-dot-green { background: var(--teal); }

.section-spaces { background: white; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.filter-chip { background: var(--cream); color: var(--ink); border: 1px solid transparent; border-radius: 999px; padding: 10px 15px; font-weight: 800; font-size: 13px; }
.filter-chip.active { background: var(--ink); color: white; }
.availability-toggle { margin-left: auto; display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; cursor: pointer; }
.availability-toggle input { width: 18px; height: 18px; accent-color: var(--orange); }
.units-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.unit-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper); transition: transform .2s ease, box-shadow .2s ease, border .2s ease; }
.unit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.unit-card.is-unavailable { opacity: .78; }
.unit-card-top { min-height: 112px; background: var(--ink); color: white; display: flex; justify-content: space-between; align-items: flex-start; padding: 20px; position: relative; overflow: hidden; }
.unit-card-top::after { content: ""; position: absolute; width: 120px; height: 120px; border: 18px solid rgba(255,255,255,.05); border-radius: 20px; right: -35px; bottom: -50px; transform: rotate(22deg); }
.unit-size { display: flex; align-items: baseline; gap: 5px; }
.unit-size strong { font-size: 48px; line-height: .9; letter-spacing: -.05em; }
.unit-size span { font-weight: 800; color: #c6d0d6; }
.unit-status { position: relative; z-index: 1; font-size: 11px; font-weight: 900; padding: 7px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.status-available { background: #dff8ef; color: #176f5b; }
.status-reserved { background: #fff0d8; color: #8f5b0c; }
.status-occupied { background: #eceff1; color: #53626c; }
.status-maintenance { background: #ffe3e3; color: #9a3e3e; }
.unit-body { padding: 20px 20px 16px; min-height: 224px; }
.unit-code { font-size: 11px; color: var(--orange); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.unit-name { margin: 5px 0 8px; font-size: 24px; letter-spacing: -.02em; }
.unit-description { color: #637078; font-size: 14px; min-height: 64px; }
.unit-features { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.unit-feature { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 6px 9px; font-size: 11px; font-weight: 750; }
.unit-footer { padding: 16px 20px 20px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; justify-content: space-between; }
.unit-price span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.unit-price strong { font-size: 22px; letter-spacing: -.02em; }
.unit-card.is-unavailable .unit-cta { background: #d9dddf; color: #5f6b72; box-shadow: none; cursor: default; }
.empty-state { border: 2px dashed var(--line); border-radius: var(--radius); padding: 46px 20px; text-align: center; background: var(--paper); }
.empty-state h3 { margin: 10px 0 4px; }
.empty-state p { color: var(--muted); max-width: 520px; margin: 0 auto 18px; }
.empty-icon { font-size: 34px; color: var(--orange); }

.size-guide { background: var(--cream); }
.size-guide-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 70px; align-items: center; }
.size-guide h2 { font-size: clamp(40px, 5vw, 62px); }
.size-slider-card { margin-top: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft); }
.size-result { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.size-result span { display: block; color: var(--muted); font-size: 12px; font-weight: 750; }
.size-result strong { display: block; font-size: 42px; letter-spacing: -.04em; line-height: 1; margin-top: 4px; }
.size-price { font-size: 13px; font-weight: 800; color: var(--orange); }
#sizeSlider { width: 100%; margin: 28px 0 5px; accent-color: var(--orange); }
.slider-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 850; }
.size-description { margin: 18px 0; padding: 14px 0; border-block: 1px solid var(--line); color: #57656e; font-size: 14px; }
.size-examples { display: grid; gap: 14px; }
.size-example { background: rgba(255,255,255,.72); border: 1px solid rgba(35,47,56,.08); border-radius: 20px; padding: 22px; display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; }
.size-example.featured { background: var(--ink); color: white; transform: translateX(-16px); box-shadow: var(--shadow); }
.size-example-num { font-size: 34px; font-weight: 900; letter-spacing: -.04em; color: var(--orange); }
.size-example-num span { font-size: 16px; }
.size-example b { font-size: 17px; }
.size-example p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.size-example.featured p { color: #b9c3c9; }

.how-it-works { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: var(--paper); min-height: 250px; position: relative; overflow: hidden; }
.step-card::after { content: ""; position: absolute; right: -35px; bottom: -35px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255,80,0,.06); }
.step-number { color: var(--orange); font-size: 14px; font-weight: 950; letter-spacing: .12em; }
.step-card h3 { margin: 60px 0 8px; font-size: 23px; }
.step-card p { margin: 0; color: var(--muted); }

.reassurance { background: var(--ink); color: white; }
.reassurance-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.reassurance h2 { font-size: clamp(42px, 5vw, 62px); }
.reassurance-copy > p { color: #c4cdd2; font-size: 18px; max-width: 640px; }
.reassurance-points { margin-top: 26px; display: grid; gap: 12px; }
.reassurance-points div { display: flex; align-items: center; gap: 10px; color: #eef1f2; }
.reassurance-points span { width: 25px; height: 25px; border-radius: 50%; display: grid; place-items: center; background: rgba(31,157,132,.18); color: #7be1c5; font-weight: 900; }
.quote-card { background: var(--orange); border-radius: 28px; padding: 36px; min-height: 360px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.quote-card::after { content:""; position:absolute; width:220px; height:220px; border:30px solid rgba(255,255,255,.08); border-radius:36px; right:-85px; bottom:-95px; transform:rotate(30deg); }
.quote-mark { font-size: 70px; line-height: .5; opacity: .35; font-family: Georgia, serif; }
.quote-card p { font-size: 26px; line-height: 1.3; font-weight: 750; letter-spacing: -.02em; margin: 26px 0; position: relative; z-index: 1; }
.quote-label { font-size: 12px; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; opacity: .85; }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-grid h2 { font-size: clamp(42px, 5vw, 62px); }
.contact-list { margin-top: 32px; display: grid; gap: 12px; }
.contact-list > a, .contact-list > div { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-icon { width: 42px; height: 42px; border-radius: 14px; background: var(--cream); color: var(--orange); display: grid; place-items: center; font-weight: 900; }
.contact-list small { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; display: block; }
.contact-list strong { display: block; font-size: 16px; }
.contact-list em { display: block; font-style: normal; color: var(--muted); font-size: 12px; margin-top: 2px; }
.quick-form, .modal form { background: white; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: var(--shadow-soft); }
.form-badge { width: fit-content; background: var(--teal-soft); color: #176f5b; border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.quick-form h3 { font-size: 28px; margin: 12px 0 20px; letter-spacing: -.02em; }
label { display: grid; gap: 7px; font-size: 12px; font-weight: 850; color: #46545d; margin-bottom: 14px; }
input, select, textarea { width: 100%; border: 1px solid #d9d2cd; border-radius: 12px; background: #fffdfa; color: var(--ink); padding: 12px 13px; outline: none; transition: border .15s ease, box-shadow .15s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,80,0,.10); }
textarea { resize: vertical; }
.form-row.two-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-note { color: var(--muted); font-size: 10px; text-align: center; margin: 10px 0 0; }
.form-message { font-size: 13px; margin-top: 12px; font-weight: 750; min-height: 20px; }
.form-message.success { color: #176f5b; }
.form-message.error { color: var(--danger); }
.hp-field { position: absolute !important; left: -99999px !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { background: #182129; color: white; padding: 54px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .65fr 1fr; gap: 50px; }
.footer-logo { width: 180px; filter: brightness(0) invert(1); opacity: .92; }
.footer-grid p, .footer-meta span { color: #aeb9c0; font-size: 13px; max-width: 390px; }
.footer-links { display: grid; gap: 10px; align-content: start; font-size: 13px; font-weight: 750; }
.footer-meta { display: grid; gap: 8px; align-content: start; }
.admin-link { color: #8fa0aa; font-size: 11px; margin-top: 12px; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.10); font-size: 11px; color: #84949e; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(20,28,34,.74); backdrop-filter: blur(6px); padding: 24px; overflow-y: auto; }
.modal-backdrop[hidden] { display: none; }
.modal { background: var(--paper); width: min(650px, 100%); margin: 24px auto; border-radius: 30px; padding: 30px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.30); }
.modal-close { position: absolute; right: 18px; top: 16px; border: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 26px; line-height: 1; }
.modal-head { padding-right: 44px; margin-bottom: 20px; }
.modal h2 { font-size: 42px; }
.modal-head p { color: var(--muted); }
.modal form { box-shadow: none; border-radius: 20px; padding: 20px; }
.selected-unit-box { background: var(--teal-soft); color: #155d4f; border-radius: 14px; padding: 12px 14px; margin-bottom: 14px; font-size: 13px; }

@media (max-width: 1080px) {
  .header-inner { gap: 16px; }
  .brand { width: 174px; flex-basis: 174px; }
  .desktop-nav { gap: 16px; font-size: 13px; }
  .hero-grid, .size-guide-grid, .reassurance-grid, .contact-grid { gap: 42px; }
  .units-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .menu-btn { display: block; }
  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 0;
    padding: 8px max(20px, calc((100% - var(--container)) / 2 + 20px)) 18px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(35,47,56,.08);
  }
  .mobile-nav a { padding: 13px 0; font-weight: 800; border-bottom: 1px solid var(--line); }
  .mobile-nav .btn { margin-top: 14px; width: 100%; }
}

@media (max-width: 820px) {
  .hero { padding-top: 44px; }
  .hero-grid, .size-guide-grid, .reassurance-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 420px; max-width: 620px; width: 100%; margin-inline: auto; }
  .availability-float { right: 16px; bottom: 18px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .size-example.featured { transform: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 200px; }
  .step-card h3 { margin-top: 36px; }
  .reassurance-copy { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .header-cta { display: none; }
  .menu-btn { margin-left: auto; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--container)); }
  .top-strip { font-size: 10px; padding: 7px 12px; }
  .header-inner { min-height: 68px; }
  .brand { width: 148px; flex-basis: 148px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: start; text-align: left; margin-left: 8px; }
  .hero-visual { min-height: 360px; }
  .hero-photo-frame { border-radius: 20px; }
  .hero-photo-caption { left: 18px; bottom: 18px; }
  .hero-photo-caption strong { font-size: 16px; }
  .availability-float { right: 12px; bottom: 12px; padding: 9px 12px; font-size: 12px; }
  .section { padding: 72px 0; }
  .section-heading h2, .size-guide h2, .reassurance h2, .contact-grid h2 { font-size: 42px; }
  .need-strip-inner { gap: 22px; }
  .units-grid { grid-template-columns: 1fr; }
  .availability-toggle { margin-left: 0; width: 100%; margin-top: 6px; }
  .unit-body { min-height: auto; }
  .unit-description { min-height: auto; }
  .size-result { align-items: flex-start; flex-direction: column; }
  .size-example { grid-template-columns: 1fr; gap: 8px; }
  .quote-card { padding: 28px; min-height: 320px; }
  .quote-card p { font-size: 22px; }
  .form-row.two-cols { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-meta { grid-column: auto; }
  .modal-backdrop { padding: 10px; }
  .modal { padding: 20px; border-radius: 22px; }
  .modal h2 { font-size: 34px; }
  .modal form { padding: 16px; }
}

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


/* ===== ADMINISTRACE (sjednoceno do jednoho stylesheetu) ===== */
.admin-body { background: #f5f2ef; min-height: 100vh; }
.login-shell { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 85% 12%, rgba(255,80,0,.13), transparent 35%), var(--ink); }
.login-card { width: min(480px,100%); background: var(--paper); border-radius: 28px; padding: 34px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.admin-brand { display: block; width: 210px; margin-bottom: 32px; }
.login-card h1 { font-size: 38px; line-height: 1.05; letter-spacing: -.04em; margin: 0 0 12px; }
.login-card > p { color: var(--muted); margin-bottom: 24px; }
.login-note { font-size: 11px; color: var(--muted); padding: 12px; background: var(--cream); border-radius: 12px; margin-top: 14px; }
.back-to-site { display: inline-block; margin-top: 18px; font-size: 12px; font-weight: 800; color: var(--muted); }

.admin-app { min-height: 100vh; }
.admin-sidebar { position: fixed; inset: 0 auto 0 0; width: 240px; background: var(--ink); color: white; z-index: 60; padding: 24px 16px; display: flex; flex-direction: column; }
.admin-logo { display: block; padding: 0 8px 26px; border-bottom: 1px solid rgba(255,255,255,.09); }
.admin-logo img { width: 170px; filter: brightness(0) invert(1); }
.admin-nav { display: grid; gap: 7px; margin-top: 24px; }
.admin-nav button { border: 0; background: transparent; color: #c4cdd2; border-radius: 12px; padding: 12px 13px; text-align: left; font-weight: 750; display: flex; align-items: center; gap: 11px; }
.admin-nav button span { width: 20px; font-size: 16px; color: #92a2ac; }
.admin-nav button:hover, .admin-nav button.active { background: rgba(255,255,255,.09); color: white; }
.admin-nav button.active span { color: var(--orange); }
.admin-nav em { margin-left: auto; background: var(--orange); color: white; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; display: inline-grid; place-items: center; font-style: normal; font-size: 10px; }
.sidebar-bottom { margin-top: auto; border-top: 1px solid rgba(255,255,255,.09); padding-top: 16px; display: grid; gap: 8px; }
.sidebar-bottom a, .sidebar-bottom button { border: 0; background: transparent; color: #98a8b1; text-align: left; padding: 9px 10px; font-size: 12px; font-weight: 750; }
.sidebar-bottom a:hover, .sidebar-bottom button:hover { color: white; }

.admin-main { margin-left: 240px; min-height: 100vh; }
.admin-topbar { height: 70px; background: rgba(255,255,255,.93); backdrop-filter: blur(12px); border-bottom: 1px solid #e4dfdc; position: sticky; top: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; }
.connection-indicator { font-size: 11px; color: #53636d; font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.connection-indicator i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(31,157,132,.12); }
.topbar-actions { display: flex; gap: 9px; align-items: center; }
.topbar-actions > span { color: #88949b; font-size: 10px; margin-right: 6px; }
.btn-small { padding: 9px 14px; font-size: 12px; }
.admin-menu-toggle { display: none; border: 0; background: transparent; font-size: 22px; }

.admin-content { padding: 32px; max-width: 1500px; margin: 0 auto; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-page-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.admin-page-head h1 { margin: 0; font-size: clamp(32px,4vw,48px); line-height: 1; letter-spacing: -.04em; }
.page-head-note { max-width: 350px; color: var(--muted); font-size: 12px; text-align: right; }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }
.stat-card, .admin-card { background: white; border: 1px solid #e5dfdb; border-radius: 20px; box-shadow: 0 8px 22px rgba(35,47,56,.035); }
.stat-card { padding: 20px; }
.stat-card > span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.stat-card strong { display: block; font-size: 34px; letter-spacing: -.04em; margin: 8px 0 2px; }
.stat-card small { color: #8b969d; font-size: 11px; }
.dashboard-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; margin-bottom: 16px; }
.dashboard-grid.lower { grid-template-columns: 1fr 1fr; }
.admin-card { padding: 22px; }
.card-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.card-head h2, .info-card h2, .password-card h2 { font-size: 20px; margin: 3px 0 0; letter-spacing: -.02em; }
.card-kicker { color: var(--orange); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.card-head > strong { font-size: 34px; letter-spacing: -.04em; }
.occupancy-bar { height: 16px; border-radius: 999px; background: #e9eeec; overflow: hidden; margin: 28px 0 20px; }
.occupancy-bar span { display: block; height: 100%; width: 0; background: var(--teal); border-radius: 999px; transition: width .4s ease; }
.occupancy-legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 11px; color: var(--muted); }
.occupancy-legend span { display: inline-flex; align-items: center; gap: 6px; }
.occupancy-legend b { color: var(--ink); }
.legend { width: 8px; height: 8px; border-radius: 50%; }
.legend.occupied { background: var(--teal); }.legend.reserved { background: #e8a83c; }.legend.available { background: #cfd7d3; }
.quick-status-list { display: grid; gap: 9px; margin-top: 18px; max-height: 270px; overflow-y: auto; padding-right: 4px; }
.quick-status-row { display: grid; grid-template-columns: 1fr 120px; gap: 8px; align-items: center; padding: 9px 0; border-bottom: 1px solid #eee9e6; }
.quick-status-row:last-child { border-bottom: 0; }
.quick-status-row b { font-size: 12px; }.quick-status-row small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.quick-status-row select { padding: 8px 9px; font-size: 11px; margin: 0; }
.text-btn { border: 0; background: transparent; color: var(--orange); font-size: 11px; font-weight: 850; }
.recent-inquiries { display: grid; gap: 8px; margin-top: 16px; }
.recent-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee9e6; }
.recent-row:last-child { border-bottom: 0; }.recent-row strong { font-size: 12px; }.recent-row small { display: block; color: var(--muted); font-size: 10px; }.recent-row time { color: #929da3; font-size: 10px; }
.price-overview { margin-top: 16px; display: grid; gap: 8px; }
.price-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 10px; align-items: center; font-size: 11px; }
.price-row .bar { height: 7px; background: #edf0ef; border-radius: 999px; overflow: hidden; }.price-row .bar i { display: block; height: 100%; background: var(--orange); border-radius: inherit; }.price-row strong { font-size: 11px; }

.admin-toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 14px; }
.search-box { flex: 1; background: white; border: 1px solid #ddd7d3; border-radius: 12px; display: flex; align-items: center; gap: 8px; padding-left: 12px; color: #909ba1; }
.search-box input { border: 0; box-shadow: none; background: transparent; padding-left: 0; margin: 0; }
.admin-toolbar select { width: auto; min-width: 170px; background: white; margin: 0; }
.import-label { cursor: pointer; }
.table-card { padding: 0; overflow: hidden; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.admin-table th { text-align: left; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; color: #869299; padding: 13px 14px; background: #faf8f6; border-bottom: 1px solid #e9e4e1; }
.admin-table td { padding: 13px 14px; border-bottom: 1px solid #eee9e6; font-size: 12px; vertical-align: middle; }
.admin-table tbody tr:hover { background: #fffaf6; }
.admin-table td strong { font-size: 12px; }.admin-table td small { color: var(--muted); display: block; font-size: 9px; }
.admin-status { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 5px 8px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.admin-status::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.admin-row-actions { display: flex; gap: 5px; justify-content: flex-end; }
.icon-btn { border: 1px solid #e1dcd8; background: white; border-radius: 9px; width: 32px; height: 32px; display: grid; place-items: center; color: #596770; }
.icon-btn:hover { border-color: var(--orange); color: var(--orange); }
.icon-btn.danger:hover { border-color: #d84d4d; color: #d84d4d; }
.web-visibility { font-size: 10px; font-weight: 850; color: #176f5b; }.web-visibility.off { color: #9aa3a8; }
.mobile-unit-list { display: none; }

.inquiries-list { display: grid; gap: 12px; }
.inquiry-card { background: white; border: 1px solid #e4dfdc; border-radius: 18px; padding: 17px 18px; display: grid; grid-template-columns: minmax(190px,1.15fr) minmax(150px,.8fr) minmax(140px,.8fr) 130px 82px; gap: 16px; align-items: center; }
.inquiry-card.is-new { border-left: 4px solid var(--orange); }
.inquiry-person strong { display: block; font-size: 13px; }.inquiry-person span, .inquiry-meta span { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }.inquiry-meta strong { font-size: 11px; }.inquiry-date { color: #8b969c; font-size: 10px; }
.inquiry-card select { margin: 0; padding: 8px 9px; font-size: 10px; }
.inquiry-open { border: 0; background: var(--cream); border-radius: 9px; padding: 9px 10px; font-size: 10px; font-weight: 850; }
.empty-admin { padding: 50px 20px; border: 2px dashed #dfd8d4; border-radius: 18px; text-align: center; color: var(--muted); display: grid; gap: 4px; }.empty-admin strong { color: var(--ink); }

.settings-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 16px; align-items: start; }
.settings-form { padding: 26px; }
.settings-section-title { margin: 8px 0 16px; padding-top: 20px; border-top: 1px solid #eee9e6; font-size: 12px; font-weight: 900; }.settings-section-title:first-child { padding-top: 0; border-top: 0; }
.settings-side { display: grid; gap: 16px; }
.info-card p { font-size: 12px; color: var(--muted); }.info-card code { background: var(--cream); border-radius: 6px; padding: 2px 4px; font-size: 10px; }
.info-ok { margin-top: 14px; background: var(--teal-soft); color: #176f5b; border-radius: 12px; padding: 11px; font-size: 11px; font-weight: 800; }
.password-card form { margin-top: 16px; }

.admin-modal-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(17,24,29,.72); backdrop-filter: blur(5px); padding: 24px; overflow-y: auto; }
.admin-modal-backdrop[hidden] { display: none; }
.admin-modal { width: min(700px,100%); background: var(--paper); margin: 28px auto; border-radius: 24px; padding: 28px; position: relative; box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.admin-modal h2 { margin: 0 0 22px; font-size: 34px; letter-spacing: -.04em; }
.form-row.three-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.checkbox-field { display: flex; flex-direction: row; align-items: center; gap: 8px; padding-top: 24px; }.checkbox-field input { width: 18px; height: 18px; accent-color: var(--orange); }.checkbox-field span { font-size: 11px; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }
.inquiry-detail-modal { width: min(760px,100%); }
.detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 14px 0; }
.detail-item { background: white; border: 1px solid #e8e1dd; border-radius: 12px; padding: 12px; }.detail-item span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .07em; font-weight: 850; display: block; }.detail-item strong { display: block; font-size: 12px; margin-top: 3px; word-break: break-word; }
.detail-message { background: white; border: 1px solid #e8e1dd; border-radius: 12px; padding: 14px; margin: 12px 0; white-space: pre-wrap; font-size: 12px; color: #4e5c65; }
.detail-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }.detail-actions select { width: auto; min-width: 160px; }

.toast { position: fixed; right: 22px; bottom: 22px; z-index: 200; background: var(--ink); color: white; border-radius: 12px; padding: 12px 16px; font-size: 11px; font-weight: 800; box-shadow: 0 15px 40px rgba(0,0,0,.2); opacity: 0; transform: translateY(10px); pointer-events: none; transition: .2s; }
.toast.show { opacity: 1; transform: translateY(0); }.toast.error { background: #a63b3b; }

@media(max-width:1100px){
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .dashboard-grid,.dashboard-grid.lower,.settings-grid{grid-template-columns:1fr}
  .inquiry-card{grid-template-columns:1fr 1fr 1fr}.inquiry-card > :nth-child(4),.inquiry-card > :nth-child(5){justify-self:start}
}
@media(max-width:780px){
  .admin-sidebar{transform:translateX(-100%);transition:transform .2s}.admin-sidebar.open{transform:none}
  .admin-main{margin-left:0}.admin-menu-toggle{display:inline-block}.admin-content{padding:20px 14px}.admin-topbar{padding:0 14px}.connection-indicator{display:none}.topbar-actions>span,#refreshBtn{display:none}
  .admin-page-head{align-items:flex-start;flex-direction:column}.page-head-note{text-align:left}.stats-grid{grid-template-columns:1fr 1fr}.admin-toolbar{flex-wrap:wrap}.search-box{flex-basis:100%}.admin-toolbar select{flex:1}
  .table-card{display:none}.mobile-unit-list{display:grid;gap:10px}.mobile-unit-card{background:white;border:1px solid #e5dfdb;border-radius:16px;padding:15px}.mobile-unit-card-head{display:flex;justify-content:space-between;gap:12px}.mobile-unit-card h3{font-size:16px;margin:2px 0}.mobile-unit-card p{font-size:10px;color:var(--muted);margin:4px 0 12px}.mobile-unit-card-bottom{display:flex;justify-content:space-between;align-items:center;gap:12px}.mobile-unit-card-actions{display:flex;gap:5px}
  .inquiry-card{grid-template-columns:1fr 1fr}.inquiry-card > :last-child{justify-self:end}.settings-form{padding:18px}.form-row.three-cols{grid-template-columns:1fr}.admin-modal-backdrop{padding:10px}.admin-modal{padding:20px}.detail-grid{grid-template-columns:1fr}
}
@media(max-width:520px){
  .stats-grid{grid-template-columns:1fr}.topbar-actions #quickAddBtn{font-size:0;padding:9px 13px}.topbar-actions #quickAddBtn::after{content:"+ Kóje";font-size:11px}.inquiry-card{grid-template-columns:1fr}.inquiry-card > :last-child{justify-self:start}.form-row.two-cols{grid-template-columns:1fr}.quick-status-row{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr}
}


/* ===== STABILIZAČNÍ OPRAVY ===== */
.admin-body .admin-sidebar { box-shadow: 12px 0 35px rgba(17,24,29,.08); }
.admin-body .admin-topbar { min-width: 0; }
@media (max-width: 780px) {
  .admin-sidebar.open { box-shadow: 16px 0 55px rgba(17,24,29,.32); }
  .admin-topbar { gap: 10px; }
  .topbar-actions { min-width: 0; }
}


/* ===== V4: TYPOGRAFIE + HERO + MOBILNI CTA ===== */
h1, h2, h3, .btn, .desktop-nav, .mobile-nav, .eyebrow, .unit-size, .unit-price strong, .step-number, .top-strip {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2, h3 { font-weight: 700; }

.hero-situations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
  max-width: 720px;
}
.hero-situations span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(35,47,56,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #4d5c65;
  font-size: 12px;
  font-weight: 700;
}
.hero-situations span::before { content: "✓"; color: var(--teal); font-weight: 900; }

#footerOperatorPhone { color: white; font-size: 14px; font-weight: 700; width: fit-content; }

.mobile-scroll-cta { display: none; }

@media (max-width: 1080px) and (min-width: 821px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-situations { justify-content: center; margin-inline: auto; }
}

@media (max-width: 700px) {
  .mobile-scroll-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(24,33,41,.96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(17,24,29,.28);
    backdrop-filter: blur(14px);
    transform: translateY(calc(100% + 32px));
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .24s ease;
  }
  .mobile-scroll-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-scroll-cta a,
  .mobile-scroll-cta button {
    min-height: 48px;
    border: 0;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    font-weight: 700;
  }
  .mobile-scroll-call { background: white; color: var(--ink); }
  .mobile-scroll-inquiry { background: var(--orange); color: white; }
  body.modal-open .mobile-scroll-cta { transform: translateY(calc(100% + 32px)); opacity: 0; pointer-events: none; }
}

@media (max-width: 600px) {
  .hero-situations { justify-content: flex-start; margin-left: 8px; }
  .hero-situations span { font-size: 11px; }
}


/* ===== V5: MONTSERRAT + CISTA VAHOVA HIERARCHIE ===== */
body,
button,
input,
select,
textarea {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { font-weight: 400; }
p, li, input, select, textarea, .hero-lead { font-weight: 400; }

/* Běžná navigace a pomocné prvky zůstávají čitelné, ale ne přehnaně tučné. */
.desktop-nav,
.mobile-nav,
.top-strip,
.hero-proof,
.need-strip span,
label,
.footer-links,
.back-to-site,
.admin-nav button,
.sidebar-bottom a,
.sidebar-bottom button,
.connection-indicator,
.stat-card > span,
.web-visibility,
.detail-item span {
  font-weight: 600;
}

/* Klíčové prvky webu. */
h1, h2, h3,
.hero h1,
.section h2,
.modal h2 {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
}

.btn,
.eyebrow,
.unit-size,
.unit-price strong,
.step-number,
.unit-code,
.unit-status,
.form-badge,
.settings-section-title,
.admin-status,
#footerOperatorPhone,
.mobile-scroll-cta a,
.mobile-scroll-cta button {
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.hero-situations span,
.unit-feature,
.size-result span,
.size-price,
.form-message,
.text-btn,
.inquiry-open,
.info-ok,
.toast {
  font-weight: 600;
}

.quote-card p { font-weight: 600; }


/* ===== V6: CELOSIRKOVY FOTO HERO ===== */
.hero {
  position: relative;
  min-height: 690px;
  padding: 0;
  overflow: hidden;
  background: #202a31 url("hero-keys.webp") 50% 50% / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16,24,31,.88) 0%, rgba(16,24,31,.72) 32%, rgba(16,24,31,.34) 53%, rgba(16,24,31,.05) 75%, rgba(16,24,31,0) 100%);
}
.hero-grid {
  min-height: 690px;
  display: flex;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 62%);
  padding: 72px 0;
  color: #fff;
  text-align: left;
}
.hero .eyebrow { color: #ff8a52; }
.hero h1 { color: #fff; text-shadow: 0 3px 24px rgba(0,0,0,.22); }
.hero h1 span { color: var(--orange); }
.hero-lead { color: rgba(255,255,255,.88); max-width: 680px; }
.hero-situations { margin-inline: 0; }
.hero-situations span {
  background: rgba(19,29,36,.56);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.hero-situations span::before { color: #72dfbf; }
.hero .btn-secondary {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.65);
}
.hero-proof { color: rgba(255,255,255,.86); }
.hero .proof-icon { background: rgba(31,157,132,.2); color: #8ef0d4; border: 1px solid rgba(142,240,212,.25); }
.hero-availability {
  position: static;
  width: fit-content;
  margin-top: 24px;
  background: rgba(20,29,36,.82);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}

@media (max-width: 1080px) {
  .hero { background-position: 56% 50%; }
  .hero-copy { width: min(680px, 64%); }
}
@media (max-width: 820px) {
  .hero {
    min-height: 680px;
    background-position: 65% 50%;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(15,23,29,.91) 0%, rgba(15,23,29,.73) 55%, rgba(15,23,29,.28) 100%);
  }
  .hero-grid { min-height: 680px; }
  .hero-copy {
    width: min(620px, 82%);
    padding: 58px 0;
    text-align: left;
  }
  .hero-lead { margin-inline: 0; }
  .hero-actions, .hero-proof, .hero-situations { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .hero {
    min-height: 720px;
    background-position: 68% 50%;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(13,20,26,.93) 0%, rgba(13,20,26,.78) 64%, rgba(13,20,26,.38) 100%);
  }
  .hero-grid { min-height: 720px; align-items: flex-end; }
  .hero-copy { width: 100%; padding: 48px 0 42px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero-lead { font-size: 16px; line-height: 1.5; max-width: 94%; }
  .hero-situations { margin-left: 0; }
  .hero-actions .btn { width: auto; }
  .hero-proof { margin-left: 0; }
}

/* ===== V7: HERO 1140 PX + ČISTÁ BÍLÁ LIŠTA ===== */
.hero {
  width: min(1140px, calc(100% - 40px));
  min-height: 640px;
  margin: 24px auto 0;
  border-radius: 24px 24px 0 0;
  background-position: 50% 50%;
  background-size: cover;
}
.hero::before {
  background: linear-gradient(90deg, rgba(13,20,26,.90) 0%, rgba(13,20,26,.74) 33%, rgba(13,20,26,.34) 55%, rgba(13,20,26,.04) 76%, rgba(13,20,26,0) 100%);
}
.hero .hero-grid {
  width: 100%;
  min-height: 640px;
  margin: 0;
  padding: 0 56px;
}
.hero-copy {
  width: min(630px, 58%);
  padding: 64px 0;
}
.hero-lead {
  max-width: 610px;
}

/* Původní tmavé situační štítky už v hero nepoužíváme. */
.hero-situations { display: none !important; }

.need-strip {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: #fff;
  overflow: hidden;
}
.need-strip-inner {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: visible;
}
.need-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 18px 20px;
  border-right: 1px solid var(--line);
}
.need-item:last-child { border-right: 0; }
.need-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1ea;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.need-item strong {
  display: block;
  margin: 1px 0 5px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 700;
}
.need-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 400;
}
.need-strip span::before { content: none; }

@media (max-width: 1080px) {
  .hero {
    min-height: 620px;
    background-position: 56% 50%;
  }
  .hero .hero-grid { min-height: 620px; padding-inline: 44px; }
  .hero-copy { width: min(600px, 62%); }
  .need-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .need-item:nth-child(2) { border-right: 0; }
  .need-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .hero {
    min-height: 680px;
    background-position: 64% 50%;
  }
  .hero .hero-grid {
    min-height: 680px;
    padding-inline: 30px;
  }
  .hero-copy { width: min(600px, 76%); padding: 54px 0; }
}

@media (max-width: 600px) {
  .hero,
  .need-strip {
    width: calc(100% - 24px);
  }
  .hero {
    min-height: 720px;
    margin-top: 12px;
    border-radius: 18px 18px 0 0;
    /* Na úzkém displeji držíme výřez výše, aby zůstala vidět celá kšiltovka s logem. */
    background-position: 68% 50%;
  }
  .hero .hero-grid {
    min-height: 720px;
    padding-inline: 20px;
    align-items: flex-end;
  }
  .hero-copy { width: 100%; padding: 42px 0 36px; }
  .need-strip { border-radius: 0 0 18px 18px; }
  .need-strip-inner { grid-template-columns: 1fr; }
  .need-item,
  .need-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .need-item:last-child { border-bottom: 0; }
  .need-item { padding: 17px 16px; }
  .need-item strong { font-size: 13px; }
  .need-item p { font-size: 11.5px; }
}

/* ===== V8: ANTRACITOVY BLOK POD HERO + PLYNULE FOTO ZLEVA ===== */
.need-strip {
  border-color: rgba(255,255,255,.10);
  background:
    linear-gradient(90deg,
      rgba(32,42,49,.30) 0%,
      rgba(32,42,49,.52) 22%,
      rgba(32,42,49,.82) 43%,
      #202a31 63%,
      #202a31 100%),
    url("hero-storage.webp") left 54% / 62% auto no-repeat,
    #202a31;
}
.need-item {
  border-right-color: rgba(255,255,255,.11);
}
.need-icon {
  background: rgba(255,255,255,.10);
  color: #ff7a3d;
  border: 1px solid rgba(255,255,255,.12);
}
.need-item strong {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
}
.need-item p {
  color: rgba(255,255,255,.70);
  text-shadow: 0 1px 12px rgba(0,0,0,.18);
}

@media (max-width: 1080px) {
  .need-item:nth-child(-n+2) {
    border-bottom-color: rgba(255,255,255,.11);
  }
}

@media (max-width: 600px) {
  .need-strip {
    background:
      linear-gradient(90deg,
        rgba(32,42,49,.42) 0%,
        rgba(32,42,49,.74) 48%,
        #202a31 88%,
        #202a31 100%),
      url("hero-storage.webp") 18% 52% / auto 100% no-repeat,
      #202a31;
  }
  .need-item,
  .need-item:nth-child(2) {
    border-bottom-color: rgba(255,255,255,.11);
  }
}

/* ===== V9: SPODNI POLOZKY HERO BEZ PODKLADU ===== */
.need-strip {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.need-item {
  border-right-color: var(--line);
}
.need-icon {
  background: #fff1ea;
  color: var(--orange);
  border-color: transparent;
}
.need-item strong {
  color: var(--ink);
  text-shadow: none;
}
.need-item p {
  color: var(--muted);
  text-shadow: none;
}

@media (max-width: 1080px) {
  .need-item:nth-child(-n+2) {
    border-bottom-color: var(--line);
  }
}

@media (max-width: 600px) {
  .need-strip {
    background: transparent;
  }
  .need-item,
  .need-item:nth-child(2) {
    border-bottom-color: var(--line);
  }
}

/* ===== V10: ANTRACITOVA IDENTITA + PLYNULY HERO ===== */
body:not(.admin-body) {
  --brand-anthracite: #2b3033;
  --brand-anthracite-deep: #202528;
  --brand-anthracite-soft: #3a4044;
  --brand-surface: #f4f4f1;
  --brand-surface-2: #ecece8;
  --brand-line: #d9d9d3;
  background: var(--brand-surface);
  color: #252a2d;
}

body:not(.admin-body) .top-strip {
  background: var(--brand-anthracite-deep);
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

body:not(.admin-body) .site-header {
  background: rgba(250,250,248,.96);
  border-bottom-color: rgba(43,48,51,.10);
  box-shadow: 0 8px 28px rgba(32,37,40,.05);
}
body:not(.admin-body) .desktop-nav { color: #34393c; }
body:not(.admin-body) .desktop-nav a::after { height: 3px; }
body:not(.admin-body) .menu-btn {
  border-color: rgba(43,48,51,.14);
  background: #fff;
}

body:not(.admin-body) .btn {
  border-radius: 12px;
  font-weight: 700;
}
body:not(.admin-body) .btn-primary {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255,80,0,.20);
}
body:not(.admin-body) .btn-primary:hover {
  box-shadow: 0 13px 28px rgba(255,80,0,.28);
}
body:not(.admin-body) .btn-dark {
  background: var(--brand-anthracite);
}

/* Hero: vlevo cisty antracit, doprava plynule odhalena fotografie. */
body:not(.admin-body) .hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 26px auto 0;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 26px 70px rgba(32,37,40,.16);
  background:
    linear-gradient(90deg,
      #2b3033 0%,
      #2b3033 34%,
      rgba(43,48,51,.99) 41%,
      rgba(43,48,51,.96) 47%,
      rgba(43,48,51,.79) 56%,
      rgba(43,48,51,.46) 65%,
      rgba(43,48,51,.13) 75%,
      rgba(43,48,51,0) 84%),
    url("hero-keys.webp") 58% 50% / cover no-repeat;
}
body:not(.admin-body) .hero::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(12,15,17,.08) 0%, rgba(12,15,17,0) 55%, rgba(12,15,17,.18) 100%);
  pointer-events: none;
}
body:not(.admin-body) .hero .hero-grid {
  min-height: 650px;
  padding: 0 58px;
  position: relative;
  z-index: 1;
}
body:not(.admin-body) .hero-copy {
  width: min(610px, 57%);
  padding: 66px 0;
}
body:not(.admin-body) .hero .eyebrow {
  color: #ff8a52;
  letter-spacing: .17em;
}
body:not(.admin-body) .hero h1 {
  max-width: 590px;
  font-size: clamp(50px, 5.7vw, 76px);
  letter-spacing: -.055em;
  text-shadow: none;
}
body:not(.admin-body) .hero h1 span { color: #ff6420; }
body:not(.admin-body) .hero-lead {
  max-width: 585px;
  color: rgba(255,255,255,.79);
  font-size: 18px;
  line-height: 1.58;
}
body:not(.admin-body) .hero .btn-secondary {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
body:not(.admin-body) .hero .btn-secondary:hover {
  background: rgba(255,255,255,.16);
  box-shadow: none;
}
body:not(.admin-body) .hero-proof {
  color: rgba(255,255,255,.72);
  gap: 16px;
}
body:not(.admin-body) .hero .proof-icon {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  color: #77e2c3;
}
body:not(.admin-body) .hero-availability {
  margin-top: 22px;
  background: rgba(20,24,26,.72);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

/* Spodni situace zustavaji bez podkladove fotografie, jen ciste napojene na hero. */
body:not(.admin-body) .need-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
body:not(.admin-body) .need-strip-inner {
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
body:not(.admin-body) .need-item {
  padding: 24px 18px 22px;
  border-right-color: var(--brand-line);
}
body:not(.admin-body) .need-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--brand-anthracite);
  color: #ff7130;
}
body:not(.admin-body) .need-item strong { color: #303538; }
body:not(.admin-body) .need-item p { color: #72777a; }

body:not(.admin-body) .section { padding: 92px 0; }
body:not(.admin-body) .section-spaces {
  background: #fafaf8;
  border-top: 1px solid rgba(43,48,51,.06);
  border-bottom: 1px solid rgba(43,48,51,.06);
}
body:not(.admin-body) .section-heading h2,
body:not(.admin-body) .contact-grid h2 {
  color: #272c2f;
  letter-spacing: -.045em;
}
body:not(.admin-body) .eyebrow { color: #e84b08; }
body:not(.admin-body) .heading-accent { color: var(--orange); }
body:not(.admin-body) .heading-line { display: block; }
body:not(.admin-body) .availability-summary {
  background: #e8f2ee;
  color: #276b5c;
  border: 1px solid #d2e5df;
}

body:not(.admin-body) .units-grid { gap: 20px; }
body:not(.admin-body) .unit-card {
  background: #fff;
  border-color: var(--brand-line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(32,37,40,.035);
}
body:not(.admin-body) .unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(32,37,40,.11);
}
body:not(.admin-body) .unit-card-top {
  min-height: 122px;
  background: linear-gradient(135deg, #303538 0%, #252a2d 100%);
}
body:not(.admin-body) .unit-card-top::after {
  border-radius: 8px;
  border-color: rgba(255,255,255,.045);
}
body:not(.admin-body) .unit-feature {
  background: #f4f4f1;
  border-color: #e5e5df;
}
body:not(.admin-body) .unit-footer { border-top-color: #e6e6e0; }

body:not(.admin-body) .how-it-works {
  background: var(--brand-surface);
}
body:not(.admin-body) .step-card {
  min-height: 245px;
  border-radius: 18px;
  background: #fff;
  border-color: var(--brand-line);
  box-shadow: 0 8px 24px rgba(32,37,40,.035);
}
body:not(.admin-body) .step-card::after {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  background: rgba(43,48,51,.045);
  transform: rotate(18deg);
}
body:not(.admin-body) .step-number {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  color: #555b5f;
}
body:not(.admin-body) .step-card h3 { margin-top: 52px; }

/* Kontakt jako druhy hlavni antracitovy blok webu. */
body:not(.admin-body) .contact-section {
  background: var(--brand-anthracite);
  color: #fff;
}
body:not(.admin-body) .contact-section .eyebrow { color: #ff8a52; }
body:not(.admin-body) .contact-grid h2 { color: #fff; }
body:not(.admin-body) .contact-section .section-lead { color: rgba(255,255,255,.66); }
body:not(.admin-body) .contact-list > a,
body:not(.admin-body) .contact-list > div {
  border-bottom-color: rgba(255,255,255,.12);
}
body:not(.admin-body) .contact-icon {
  background: rgba(255,255,255,.08);
  color: #ff7a3d;
  border: 1px solid rgba(255,255,255,.10);
}
body:not(.admin-body) .contact-list small,
body:not(.admin-body) .contact-list em { color: rgba(255,255,255,.53); }
body:not(.admin-body) .contact-list strong { color: #fff; }
body:not(.admin-body) .quick-form {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 26px 64px rgba(8,10,11,.22);
}
body:not(.admin-body) .quick-form .form-badge {
  background: #eef1ef;
  color: #436158;
}

body:not(.admin-body) .site-footer {
  background: #181c1f;
  border-top: 1px solid rgba(255,255,255,.06);
}
body:not(.admin-body) .footer-grid p,
body:not(.admin-body) .footer-meta span { color: #9fa7ac; }

@media (max-width: 1080px) {
  body:not(.admin-body) .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg,
        #2b3033 0%,
        #2b3033 33%,
        rgba(43,48,51,.98) 43%,
        rgba(43,48,51,.83) 55%,
        rgba(43,48,51,.40) 69%,
        rgba(43,48,51,.05) 84%),
      url("hero-keys.webp") 61% 50% / cover no-repeat;
  }
  body:not(.admin-body) .hero .hero-grid { min-height: 620px; padding-inline: 44px; }
  body:not(.admin-body) .hero-copy { width: min(590px, 61%); }
}

@media (max-width: 820px) {
  body:not(.admin-body) .hero {
    min-height: 680px;
    background:
      linear-gradient(90deg,
        rgba(43,48,51,.99) 0%,
        rgba(43,48,51,.97) 38%,
        rgba(43,48,51,.82) 60%,
        rgba(43,48,51,.42) 82%,
        rgba(43,48,51,.24) 100%),
      url("hero-keys.webp") 67% 50% / cover no-repeat;
  }
  body:not(.admin-body) .hero .hero-grid { min-height: 680px; padding-inline: 30px; }
  body:not(.admin-body) .hero-copy { width: min(600px, 82%); }
  body:not(.admin-body) .need-item:nth-child(-n+2) { border-bottom-color: var(--brand-line); }
}

@media (max-width: 600px) {
  body:not(.admin-body) .hero,
  body:not(.admin-body) .need-strip {
    width: calc(100% - 24px);
  }
  body:not(.admin-body) .hero {
    min-height: 700px;
    margin-top: 12px;
    border-radius: 18px;
    background:
      linear-gradient(180deg,
        rgba(35,40,43,.30) 0%,
        rgba(35,40,43,.47) 34%,
        rgba(35,40,43,.92) 67%,
        #23282b 100%),
      url("hero-keys.webp") 69% 42% / auto 68% no-repeat,
      #2b3033;
  }
  body:not(.admin-body) .hero::before {
    background: linear-gradient(90deg, rgba(35,40,43,.32), rgba(35,40,43,.06));
  }
  body:not(.admin-body) .hero .hero-grid {
    min-height: 700px;
    padding-inline: 20px;
    align-items: flex-end;
  }
  body:not(.admin-body) .hero-copy { width: 100%; padding: 44px 0 34px; }
  body:not(.admin-body) .hero h1 { font-size: clamp(43px, 13vw, 57px); }
  body:not(.admin-body) .hero-lead { max-width: 100%; font-size: 16px; }
  body:not(.admin-body) .hero-actions { gap: 9px; }
  body:not(.admin-body) .hero-actions .btn { width: 100%; }
  body:not(.admin-body) .need-strip { margin-top: 10px; }
  body:not(.admin-body) .need-strip-inner { border-top-color: var(--brand-line); }
  body:not(.admin-body) .need-item,
  body:not(.admin-body) .need-item:nth-child(2) { border-bottom-color: var(--brand-line); }
  body:not(.admin-body) .section { padding: 72px 0; }
  body:not(.admin-body) .quick-form { border-radius: 16px; }
}

/* ===== V11: FULL-WIDTH ANTRACITOVY HERO ===== */
body:not(.admin-body) .hero {
  width: 100%;
  min-height: 650px;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    linear-gradient(90deg,
      #2b3033 0%,
      #2b3033 39%,
      rgba(43,48,51,.995) 46%,
      rgba(43,48,51,.94) 54%,
      rgba(43,48,51,.72) 63%,
      rgba(43,48,51,.38) 74%,
      rgba(43,48,51,.10) 86%,
      rgba(43,48,51,0) 100%),
    url("hero-keys.webp") right center / auto 100% no-repeat,
    #2b3033;
}
body:not(.admin-body) .hero .hero-grid {
  min-height: 650px;
  padding-inline: 20px;
}
body:not(.admin-body) .hero-copy {
  width: min(610px, 55%);
}

@media (max-width: 1080px) {
  body:not(.admin-body) .hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
    min-height: 620px;
    background:
      linear-gradient(90deg,
        #2b3033 0%,
        #2b3033 38%,
        rgba(43,48,51,.98) 48%,
        rgba(43,48,51,.82) 61%,
        rgba(43,48,51,.42) 76%,
        rgba(43,48,51,.08) 91%,
        rgba(43,48,51,0) 100%),
      url("hero-keys.webp") right center / auto 100% no-repeat,
      #2b3033;
  }
  body:not(.admin-body) .hero .hero-grid {
    min-height: 620px;
    padding-inline: 20px;
  }
  body:not(.admin-body) .hero-copy { width: min(590px, 61%); }
}

@media (max-width: 820px) {
  body:not(.admin-body) .hero {
    width: 100%;
    min-height: 680px;
    margin: 0;
    border-radius: 0;
    background:
      linear-gradient(90deg,
        rgba(43,48,51,1) 0%,
        rgba(43,48,51,.99) 42%,
        rgba(43,48,51,.88) 62%,
        rgba(43,48,51,.53) 82%,
        rgba(43,48,51,.25) 100%),
      url("hero-keys.webp") right center / auto 100% no-repeat,
      #2b3033;
  }
  body:not(.admin-body) .hero .hero-grid {
    min-height: 680px;
    padding-inline: 16px;
  }
  body:not(.admin-body) .hero-copy { width: min(600px, 82%); }
}

@media (max-width: 600px) {
  body:not(.admin-body) .hero {
    width: 100%;
    min-height: 700px;
    margin: 0;
    border-radius: 0;
    background:
      linear-gradient(180deg,
        rgba(35,40,43,.24) 0%,
        rgba(35,40,43,.42) 34%,
        rgba(35,40,43,.91) 67%,
        #23282b 100%),
      url("hero-keys.webp") 69% 36% / auto 66% no-repeat,
      #2b3033;
  }
  body:not(.admin-body) .hero .hero-grid {
    min-height: 700px;
    padding-inline: 14px;
  }
}

/* ===== V12: FULL-WIDTH ANTRACIT, OBSAH HERO V SIRCE STRANKY ===== */
body:not(.admin-body) .hero {
  position: relative;
  background: #2b3033;
  isolation: isolate;
}

/* Fotografie je uvnitr stejneho horizontalniho limitu jako obsah webu. */
body:not(.admin-body) .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: max(20px, calc((100% - var(--container)) / 2));
  width: min(760px, calc(50% + 150px));
  background:
    linear-gradient(90deg,
      #2b3033 0%,
      rgba(43,48,51,.995) 8%,
      rgba(43,48,51,.94) 18%,
      rgba(43,48,51,.74) 30%,
      rgba(43,48,51,.42) 44%,
      rgba(43,48,51,.15) 58%,
      rgba(43,48,51,0) 72%),
    url("hero-keys.webp") right center / auto 100% no-repeat;
  pointer-events: none;
}

body:not(.admin-body) .hero::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(12,15,17,.05), transparent 55%, rgba(12,15,17,.10));
  pointer-events: none;
}

body:not(.admin-body) .hero .hero-grid {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding-inline: 0;
  position: relative;
  z-index: 2;
}

body:not(.admin-body) .hero-copy {
  width: min(610px, 54%);
}

@media (max-width: 1080px) {
  body:not(.admin-body) .hero::after {
    right: 20px;
    width: min(700px, calc(57% + 80px));
  }
  body:not(.admin-body) .hero .hero-grid {
    width: calc(100% - 40px);
    padding-inline: 0;
  }
  body:not(.admin-body) .hero-copy { width: min(590px, 60%); }
}

@media (max-width: 820px) {
  body:not(.admin-body) .hero::after {
    right: 20px;
    width: min(620px, calc(72% + 40px));
    background:
      linear-gradient(90deg,
        #2b3033 0%,
        rgba(43,48,51,.98) 18%,
        rgba(43,48,51,.82) 38%,
        rgba(43,48,51,.48) 60%,
        rgba(43,48,51,.14) 82%,
        rgba(43,48,51,0) 100%),
      url("hero-keys.webp") right center / auto 100% no-repeat;
  }
  body:not(.admin-body) .hero .hero-grid {
    width: calc(100% - 40px);
    padding-inline: 0;
  }
  body:not(.admin-body) .hero-copy { width: min(600px, 80%); }
}

@media (max-width: 600px) {
  body:not(.admin-body) .hero::after {
    top: 0;
    bottom: auto;
    right: 14px;
    width: calc(100% - 28px);
    height: 66%;
    background:
      linear-gradient(180deg,
        rgba(43,48,51,.06) 0%,
        rgba(43,48,51,.12) 42%,
        rgba(43,48,51,.78) 78%,
        #2b3033 100%),
      url("hero-keys.webp") 69% 36% / auto 100% no-repeat;
  }
  body:not(.admin-body) .hero::before { display: none; }
  body:not(.admin-body) .hero .hero-grid {
    width: calc(100% - 28px);
    padding-inline: 0;
  }
  body:not(.admin-body) .hero-copy { width: 100%; }
}

/* Anchor offset for header CTA -> Aktualni nabidka */
#prostory { scroll-margin-top: 96px; }


/* ===== V13: SAMOSTATNY BLOK PROVOZOVATELE + MINIMALNI ZAPATI ===== */
body:not(.admin-body) .operator-section {
  background: #f1f0ed;
  padding: 58px 0;
  border-top: 1px solid #e2dfda;
}

body:not(.admin-body) .operator-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.5fr);
  gap: 34px 64px;
  align-items: start;
}

body:not(.admin-body) .operator-heading .eyebrow {
  margin-bottom: 10px;
}

body:not(.admin-body) .operator-heading h2 {
  margin: 0;
  max-width: 390px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--brand-anthracite);
}

body:not(.admin-body) .operator-details {
  display: grid;
  grid-template-columns: .55fr 1.25fr .85fr;
  gap: 0;
  border-top: 1px solid #d6d3ce;
  border-bottom: 1px solid #d6d3ce;
}

body:not(.admin-body) .operator-detail {
  min-height: 112px;
  padding: 22px 24px;
  border-left: 1px solid #d6d3ce;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body:not(.admin-body) .operator-detail:first-child {
  border-left: 0;
  padding-left: 0;
}

body:not(.admin-body) .operator-detail:last-child {
  padding-right: 0;
}

body:not(.admin-body) .operator-detail small {
  display: block;
  margin-bottom: 7px;
  color: #7d8589;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body:not(.admin-body) .operator-detail strong,
body:not(.admin-body) .operator-detail a {
  color: #252b2e;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 750;
}

body:not(.admin-body) .operator-detail a {
  width: fit-content;
  text-decoration: none;
}

body:not(.admin-body) .operator-detail a:hover {
  color: var(--orange);
}

body:not(.admin-body) .operator-foot {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body:not(.admin-body) .operator-foot p {
  margin: 0;
  max-width: 690px;
  color: #747d81;
  font-size: 11px;
  line-height: 1.55;
}

body:not(.admin-body) .operator-foot .admin-link {
  flex: 0 0 auto;
  margin: 0;
  color: #7b8387;
  font-size: 10px;
}

body:not(.admin-body) .site-footer {
  background: #181c1f;
  padding: 26px 0;
  border-top: 0;
}

body:not(.admin-body) .footer-simple {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

body:not(.admin-body) .footer-logo {
  width: 146px;
  height: auto;
  margin: 0;
  filter: brightness(0) invert(1);
  opacity: .88;
}

body:not(.admin-body) .footer-copyright {
  color: #7f898e;
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 900px) {
  body:not(.admin-body) .operator-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body:not(.admin-body) .operator-heading h2 { max-width: none; }
  body:not(.admin-body) .operator-foot { grid-column: 1; }
}

@media (max-width: 650px) {
  body:not(.admin-body) .operator-section { padding: 44px 0; }
  body:not(.admin-body) .operator-details {
    grid-template-columns: 1fr;
  }
  body:not(.admin-body) .operator-detail,
  body:not(.admin-body) .operator-detail:first-child,
  body:not(.admin-body) .operator-detail:last-child {
    min-height: 0;
    padding: 17px 0;
    border-left: 0;
    border-bottom: 1px solid #d6d3ce;
  }
  body:not(.admin-body) .operator-detail:last-child { border-bottom: 0; }
  body:not(.admin-body) .operator-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  body:not(.admin-body) .site-footer { padding: 24px 0; }
  body:not(.admin-body) .footer-simple {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  body:not(.admin-body) .footer-logo { width: 136px; }
  body:not(.admin-body) .footer-copyright { text-align: left; }
}

/* ===== V14: POZNAMKA U NABIDKY + ADMIN IKONA V ZAPATI ===== */
body:not(.admin-body) .rental-terms {
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid #dfddd8;
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

body:not(.admin-body) .rental-terms-title {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}

body:not(.admin-body) .rental-terms p {
  margin: 0;
  color: #707a80;
  font-size: 12px;
  line-height: 1.65;
}

body:not(.admin-body) .operator-grid {
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.5fr);
}

body:not(.admin-body) .footer-simple {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

body:not(.admin-body) .footer-admin-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 9px;
  color: #788287;
  text-decoration: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

body:not(.admin-body) .footer-admin-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

body:not(.admin-body) .footer-admin-icon:hover {
  color: #fff;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.05);
}

@media (max-width: 650px) {
  body:not(.admin-body) .footer-simple {
    grid-template-columns: 1fr auto;
    gap: 14px 18px;
  }
  body:not(.admin-body) .footer-logo { grid-column: 1; }
  body:not(.admin-body) .footer-admin-icon { grid-column: 2; grid-row: 1; }
  body:not(.admin-body) .footer-copyright {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 650px) {
  body:not(.admin-body) .rental-terms {
    margin-top: 26px;
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

/* ===== V16: Uvedeni situacniho bloku pod hero ===== */
body:not(.admin-body) .use-cases-section {
  padding: 60px 0 72px;
  background: var(--brand-surface);
}
body:not(.admin-body) .use-cases-wrap {
  width: min(1180px, calc(100% - 40px));
}
body:not(.admin-body) .use-cases-heading {
  max-width: 720px;
  margin-bottom: 28px;
}
body:not(.admin-body) .use-cases-heading .eyebrow {
  margin-bottom: 10px;
}
body:not(.admin-body) .use-cases-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
body:not(.admin-body) .use-cases-section .need-strip {
  width: 100%;
  margin: 0;
  border: 1px solid var(--brand-line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  overflow: hidden;
}
body:not(.admin-body) .use-cases-section .need-item {
  padding: 24px 18px 22px;
}
body:not(.admin-body) .use-cases-section + .section-spaces {
  padding-top: 72px;
}

@media (max-width: 1080px) {
  body:not(.admin-body) .use-cases-section .need-item:nth-child(-n+2) {
    border-bottom-color: var(--brand-line);
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .use-cases-section {
    padding: 44px 0 48px;
  }
  body:not(.admin-body) .use-cases-wrap {
    width: calc(100% - 24px);
  }
  body:not(.admin-body) .use-cases-heading {
    margin-bottom: 20px;
    padding-inline: 4px;
  }
  body:not(.admin-body) .use-cases-heading h2 {
    font-size: 32px;
  }
  body:not(.admin-body) .use-cases-section .need-strip {
    width: 100%;
    border-radius: 16px;
  }
  body:not(.admin-body) .use-cases-section + .section-spaces {
    padding-top: 56px;
  }
}

/* ===== V18: Oranzovy telefon v bloku provozovatele ===== */
body:not(.admin-body) #footerOperatorPhone {
  color: var(--orange);
}
body:not(.admin-body) #footerOperatorPhone:hover,
body:not(.admin-body) #footerOperatorPhone:focus-visible {
  color: var(--orange-deep);
}


/* ===== V19: Situační body ve dvou sloupcích ===== */
body:not(.admin-body) .use-cases-section .need-strip-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body:not(.admin-body) .use-cases-section .need-item {
  min-height: 150px;
  padding: 28px 30px;
  gap: 16px;
}
body:not(.admin-body) .use-cases-section .need-item:nth-child(even) {
  border-right: 0;
}
body:not(.admin-body) .use-cases-section .need-item:nth-child(-n+2) {
  border-bottom: 1px solid var(--brand-line);
}
body:not(.admin-body) .use-cases-section .need-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
body:not(.admin-body) .use-cases-section .need-item strong {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.3;
}
body:not(.admin-body) .use-cases-section .need-item p {
  max-width: 470px;
  font-size: 13px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  body:not(.admin-body) .use-cases-section .need-strip-inner {
    grid-template-columns: 1fr;
  }
  body:not(.admin-body) .use-cases-section .need-item,
  body:not(.admin-body) .use-cases-section .need-item:nth-child(even) {
    min-height: 0;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--brand-line);
  }
  body:not(.admin-body) .use-cases-section .need-item:last-child {
    border-bottom: 0;
  }
}

/* ===== V20: Situacni sekce s fotografii a body napravo ===== */
body:not(.admin-body) .use-cases-section {
  padding: 72px 0 80px;
  background: var(--brand-surface);
}
body:not(.admin-body) .use-cases-wrap {
  width: min(1180px, calc(100% - 40px));
}
body:not(.admin-body) .use-cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(42px, 5vw, 72px);
  align-items: stretch;
}
body:not(.admin-body) .use-cases-main {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 22px 55px rgba(35, 40, 43, .13);
  isolation: isolate;
}
body:not(.admin-body) .use-cases-main img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
body:not(.admin-body) .use-cases-main-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 23, 25, .04) 26%, rgba(19, 23, 25, .16) 48%, rgba(19, 23, 25, .88) 100%),
    linear-gradient(90deg, rgba(19, 23, 25, .18), transparent 55%);
}
body:not(.admin-body) .use-cases-main .use-cases-heading {
  position: absolute;
  z-index: 2;
  left: clamp(26px, 4vw, 44px);
  right: clamp(26px, 4vw, 44px);
  bottom: clamp(28px, 4vw, 42px);
  max-width: 600px;
  margin: 0;
}
body:not(.admin-body) .use-cases-main .use-cases-heading .eyebrow {
  margin-bottom: 12px;
  color: #ff6a21;
}
body:not(.admin-body) .use-cases-main .use-cases-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(35px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}
body:not(.admin-body) .use-cases-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
body:not(.admin-body) .use-case-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0 25px;
  border-bottom: 1px solid var(--brand-line);
}
body:not(.admin-body) .use-case-item:first-child {
  padding-top: 4px;
}
body:not(.admin-body) .use-case-item:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}
body:not(.admin-body) .use-case-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
}
body:not(.admin-body) .use-case-item h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.02em;
}
body:not(.admin-body) .use-case-item p {
  margin: 0;
  max-width: 500px;
  color: #68737a;
  font-size: 13.5px;
  line-height: 1.62;
}
body:not(.admin-body) .use-cases-section + .section-spaces {
  padding-top: 76px;
}

@media (max-width: 980px) {
  body:not(.admin-body) .use-cases-layout {
    grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr);
    gap: 36px;
  }
  body:not(.admin-body) .use-cases-main {
    min-height: 540px;
  }
  body:not(.admin-body) .use-case-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0 21px;
  }
}

@media (max-width: 800px) {
  body:not(.admin-body) .use-cases-section {
    padding: 56px 0 62px;
  }
  body:not(.admin-body) .use-cases-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  body:not(.admin-body) .use-cases-main {
    min-height: 470px;
  }
  body:not(.admin-body) .use-cases-list {
    padding-inline: 4px;
  }
  body:not(.admin-body) .use-case-item:first-child {
    padding-top: 0;
  }
  body:not(.admin-body) .use-case-item:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .use-cases-section {
    padding: 44px 0 50px;
  }
  body:not(.admin-body) .use-cases-wrap {
    width: calc(100% - 24px);
  }
  body:not(.admin-body) .use-cases-main {
    min-height: 440px;
    border-radius: 18px;
  }
  body:not(.admin-body) .use-cases-main img {
    object-position: 56% center;
  }
  body:not(.admin-body) .use-cases-main .use-cases-heading {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }
  body:not(.admin-body) .use-cases-main .use-cases-heading h2 {
    font-size: clamp(32px, 9.6vw, 42px);
  }
  body:not(.admin-body) .use-case-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 20px 0;
  }
  body:not(.admin-body) .use-case-number {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 11px;
  }
  body:not(.admin-body) .use-case-item h3 {
    font-size: 16px;
  }
  body:not(.admin-body) .use-case-item p {
    font-size: 13px;
    line-height: 1.58;
  }
  body:not(.admin-body) .use-cases-section + .section-spaces {
    padding-top: 56px;
  }
}


/* ===== V16: RESPONZIVNI LOGO V HLAVICCE ===== */
/* Na mensich sirkách zustava puvodni kompaktni/dvouradkove logo. */
body:not(.admin-body) .brand-logo-wide { display: none; }
body:not(.admin-body) .brand-logo-compact { display: block; }

/* Velky desktop: siroke horizontalni logo v maximalni rozumne velikosti. */
@media (min-width: 1200px) {
  body:not(.admin-body) .header-inner {
    min-height: 92px;
    gap: 24px;
  }

  body:not(.admin-body) .brand {
    width: 420px;
    flex: 0 0 420px;
  }

  body:not(.admin-body) .brand-logo-wide {
    display: block;
    width: 100%;
    height: auto;
  }

  body:not(.admin-body) .brand-logo-compact { display: none; }
}

/* ===== V21: SJEDNOCENA TYPOGRAFICKA HIERARCHIE =====
   Verejna cast webu pouziva jednu centralni skalu misto mnoha nahodnych velikosti.
   Administrace zustava kompaktni jako pracovni rozhrani. */
body:not(.admin-body) {
  --type-meta: 12px;
  --type-small: 14px;
  --type-body: 16px;
  --type-lead: 18px;
  --type-h3: 22px;
  --type-h2: clamp(40px, 4.4vw, 56px);
  --type-h1: clamp(52px, 5.6vw, 76px);
  font-size: var(--type-body);
}

/* Hlavni titulky */
body:not(.admin-body) .hero h1 {
  font-size: var(--type-h1);
}
body:not(.admin-body) .section-heading h2,
body:not(.admin-body) .contact-grid h2,
body:not(.admin-body) .use-cases-main .use-cases-heading h2 {
  font-size: var(--type-h2);
}
body:not(.admin-body) .operator-heading h2 {
  font-size: clamp(30px, 3vw, 36px);
}

/* Nadpisy treti urovne */
body:not(.admin-body) .unit-name,
body:not(.admin-body) .step-card h3,
body:not(.admin-body) .use-case-item h3,
body:not(.admin-body) .empty-state h3 {
  font-size: var(--type-h3);
  line-height: 1.25;
}

/* Uvodni / zvyraznene odstavce */
body:not(.admin-body) .hero-lead,
body:not(.admin-body) .section-lead {
  font-size: var(--type-lead);
  line-height: 1.6;
}

/* Bezny text */
body:not(.admin-body) .unit-description,
body:not(.admin-body) .step-card p,
body:not(.admin-body) .empty-state p,
body:not(.admin-body) .use-case-item p,
body:not(.admin-body) .modal-head p {
  font-size: var(--type-body);
  line-height: 1.6;
}

/* Mensi doprovodny text a navigacni prvky */
body:not(.admin-body) .top-strip,
body:not(.admin-body) .desktop-nav,
body:not(.admin-body) .mobile-nav,
body:not(.admin-body) .btn,
body:not(.admin-body) .hero-proof,
body:not(.admin-body) .availability-float,
body:not(.admin-body) .availability-summary,
body:not(.admin-body) .availability-toggle,
body:not(.admin-body) .contact-list em,
body:not(.admin-body) .rental-terms p,
body:not(.admin-body) .operator-detail strong,
body:not(.admin-body) .operator-detail a,
body:not(.admin-body) #footerOperatorPhone,
body:not(.admin-body) .form-message {
  font-size: var(--type-small);
}

/* Meta informace, stitky a mikrotext */
body:not(.admin-body) .eyebrow,
body:not(.admin-body) .unit-status,
body:not(.admin-body) .unit-code,
body:not(.admin-body) .unit-feature,
body:not(.admin-body) .unit-price span,
body:not(.admin-body) .form-badge,
body:not(.admin-body) .contact-list small,
body:not(.admin-body) .rental-terms-title,
body:not(.admin-body) .operator-detail small,
body:not(.admin-body) .footer-copyright,
body:not(.admin-body) .use-case-number {
  font-size: var(--type-meta);
}

/* Kontaktni udaje drzi stejnou zakladni velikost jako obsah webu. */
body:not(.admin-body) .contact-list strong {
  font-size: var(--type-body);
  line-height: 1.4;
}

/* Ciselne udaje jsou zamerne display prvky, ne dalsi textova uroven. */
body:not(.admin-body) .unit-size strong { font-size: 48px; }
body:not(.admin-body) .unit-price strong { font-size: var(--type-h3); }
body:not(.admin-body) .availability-float strong { font-size: var(--type-body); }

/* Kontaktni formular: vetsi a citelnejsi text i ovladaci prvky. */
body:not(.admin-body) .quick-form,
body:not(.admin-body) .modal form {
  padding: 34px;
}
body:not(.admin-body) .quick-form h3 {
  margin: 12px 0 24px;
  font-size: 28px;
  line-height: 1.2;
}
body:not(.admin-body) label {
  gap: 9px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}
body:not(.admin-body) input,
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  padding: 14px 15px;
  font-size: var(--type-body);
  line-height: 1.45;
}
body:not(.admin-body) textarea {
  min-height: 118px;
}
body:not(.admin-body) .quick-form .btn,
body:not(.admin-body) .modal form .btn {
  min-height: 52px;
  font-size: var(--type-body);
}
body:not(.admin-body) .form-note {
  margin-top: 14px;
  font-size: var(--type-meta);
  line-height: 1.55;
}
body:not(.admin-body) .form-message {
  min-height: 22px;
  line-height: 1.45;
}

@media (max-width: 600px) {
  body:not(.admin-body) {
    --type-h1: clamp(44px, 12vw, 54px);
    --type-h2: clamp(36px, 9vw, 42px);
    --type-h3: 20px;
  }

  body:not(.admin-body) .top-strip {
    font-size: var(--type-meta);
  }

  body:not(.admin-body) .quick-form,
  body:not(.admin-body) .modal form {
    padding: 22px;
  }

  body:not(.admin-body) .quick-form h3 {
    font-size: 24px;
  }
}

/* ===== V22: FULL SERVIS / DOPLNKOVE SLUZBY ===== */
body:not(.admin-body) .full-service-panel {
  margin-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: clamp(34px, 4vw, 52px);
  border: 1px solid var(--brand-line, #e3e1dc);
  border-radius: 22px;
  background: #292f32;
  color: #fff;
  box-shadow: 0 18px 46px rgba(32, 37, 40, .10);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
body:not(.admin-body) .full-service-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  right: -170px;
  top: -170px;
  border: 42px solid rgba(255, 80, 0, .10);
  border-radius: 50%;
}
body:not(.admin-body) .full-service-intro .eyebrow {
  color: #ff8a52;
  margin-bottom: 13px;
}
body:not(.admin-body) .full-service-intro h3 {
  margin: 0;
  max-width: 470px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.06;
  letter-spacing: -.04em;
  text-wrap: balance;
}
body:not(.admin-body) .full-service-intro > p {
  margin: 20px 0 0;
  max-width: 500px;
  color: rgba(255, 255, 255, .72);
  font-size: var(--type-body, 16px);
  line-height: 1.65;
}
body:not(.admin-body) .full-service-intro > small {
  display: block;
  margin-top: 18px;
  max-width: 500px;
  color: rgba(255, 255, 255, .48);
  font-size: var(--type-meta, 12px);
  line-height: 1.55;
}
body:not(.admin-body) .full-service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
body:not(.admin-body) .full-service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
body:not(.admin-body) .full-service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange);
  color: #fff;
}
body:not(.admin-body) .full-service-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}
body:not(.admin-body) .full-service-item h4 {
  margin: 1px 0 6px;
  color: #fff;
  font-size: var(--type-h3, 22px);
  line-height: 1.25;
  letter-spacing: -.025em;
}
body:not(.admin-body) .full-service-item p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .65);
  font-size: var(--type-body, 16px);
  line-height: 1.58;
}

@media (max-width: 900px) {
  body:not(.admin-body) .full-service-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  body:not(.admin-body) .full-service-intro h3,
  body:not(.admin-body) .full-service-intro > p,
  body:not(.admin-body) .full-service-intro > small {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  body:not(.admin-body) .full-service-panel {
    margin-top: 34px;
    padding: 26px 22px;
    border-radius: 18px;
  }
  body:not(.admin-body) .full-service-intro h3 {
    font-size: 30px;
  }
  body:not(.admin-body) .full-service-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 19px 0;
  }
  body:not(.admin-body) .full-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  body:not(.admin-body) .full-service-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ===== V7: zjednodušená nabídka + evidence skladů ===== */
body:not(.admin-body) .unit-card-simple .unit-body {
  min-height: 190px;
}
body:not(.admin-body) .unit-card-simple .unit-description {
  min-height: 0;
}
body:not(.admin-body) .unit-availability-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #46605a;
}
body:not(.admin-body) .selected-space-field {
  margin: 0 0 18px;
  padding: 14px 15px;
  border: 1px solid #e6dfda;
  border-radius: 15px;
  background: #faf7f4;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
body:not(.admin-body) .selected-space-field > span {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #7c878d;
}
body:not(.admin-body) .selected-space-field > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
body:not(.admin-body) .selected-space-field strong {
  font-size: 15px;
  line-height: 1.35;
}
body:not(.admin-body) .selected-space-field.has-selection {
  border-color: rgba(31,157,132,.4);
  background: var(--teal-soft);
  box-shadow: 0 0 0 3px rgba(31,157,132,.07);
}
body:not(.admin-body) .selected-space-field.has-selection strong {
  color: #155d4f;
}
body:not(.admin-body) .selected-space-clear {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  padding: 5px 0;
}

.admin-body .admin-status.available { background: #dff8ef; color: #176f5b; }
.admin-body .admin-status.occupied { background: #fff0d8; color: #8f5b0c; }
.admin-body .admin-status.maintenance { background: #eceff1; color: #59666e; }
.admin-body .stat-card.stat-free { border-top: 4px solid #1f9d84; }
.admin-body .stat-card.stat-occupied { border-top: 4px solid #e8a83c; }
.admin-body .stat-card.stat-maintenance { border-top: 4px solid #7f8a90; }
.admin-body .admin-simple-dashboard { grid-template-columns: 1.2fr .8fr; }
.admin-body .dashboard-unit-list { display: grid; margin-top: 18px; }
.admin-body .dashboard-unit-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #eee9e6;
  background: transparent;
  display: grid;
  grid-template-columns: 110px 120px minmax(150px,1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px 12px 12px;
  text-align: left;
  border-left: 4px solid transparent;
  cursor: pointer;
}
.admin-body .dashboard-unit-row:hover { background: #fffaf6; }
.admin-body .dashboard-unit-row.status-available { border-left-color: #1f9d84; }
.admin-body .dashboard-unit-row.status-occupied { border-left-color: #e8a83c; }
.admin-body .dashboard-unit-row.status-maintenance { border-left-color: #7f8a90; }
.admin-body .dashboard-unit-row > span:first-child strong { display: block; font-size: 13px; }
.admin-body .dashboard-unit-row > span:first-child small { display: block; color: var(--muted); font-size: 10px; margin-top: 2px; }
.admin-body .dashboard-tenant { font-size: 11px; color: #4f5d65; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-body .dashboard-date { font-size: 10px; color: #7c878d; white-space: nowrap; }
.admin-body .dashboard-more { margin-top: 14px; }
.admin-body .admin-help-list { margin-top: 18px; display: grid; gap: 12px; }
.admin-body .admin-help-list p { margin: 0; display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--muted); }
.admin-body .admin-units-table { min-width: 1080px; }
.admin-body .admin-units-table tbody tr.status-available td:first-child { box-shadow: inset 4px 0 0 #1f9d84; }
.admin-body .admin-units-table tbody tr.status-occupied td:first-child { box-shadow: inset 4px 0 0 #e8a83c; }
.admin-body .admin-units-table tbody tr.status-maintenance td:first-child { box-shadow: inset 4px 0 0 #7f8a90; }
.admin-body .cell-contact,
.admin-body .cell-note { display: block; max-width: 190px; font-size: 11px; line-height: 1.35; word-break: break-word; }
.admin-body .cell-note { color: var(--muted); }
.admin-body .lease-value { font-size: 11px; white-space: nowrap; }
.admin-body .lease-value.is-expired { color: var(--danger); font-weight: 850; }
.admin-body .settings-hint { margin: -3px 0 18px; font-size: 11px; line-height: 1.55; color: var(--muted); }
.admin-body .settings-hint code { background: var(--cream); border-radius: 5px; padding: 2px 4px; }
.admin-body .date-warning { margin-top: 12px; background: #fff0d8; color: #80520f; border-radius: 12px; padding: 11px 13px; font-size: 11px; font-weight: 750; }
.admin-body .mobile-unit-card.status-available { border-left: 4px solid #1f9d84; }
.admin-body .mobile-unit-card.status-occupied { border-left: 4px solid #e8a83c; }
.admin-body .mobile-unit-card.status-maintenance { border-left: 4px solid #7f8a90; }
.admin-body .mobile-unit-card-bottom > span { font-size: 10px; color: var(--muted); }
.admin-body.modal-open { overflow: hidden; }

@media(max-width:1100px){
  .admin-body .admin-simple-dashboard { grid-template-columns: 1fr; }
}
@media(max-width:900px){
  .admin-body .dashboard-unit-row { grid-template-columns: 95px 110px 1fr; }
  .admin-body .dashboard-date { grid-column: 3; }
}
@media(max-width:620px){
  body:not(.admin-body) .selected-space-field > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .admin-body .dashboard-unit-row { grid-template-columns: 1fr auto; gap: 8px; }
  .admin-body .dashboard-tenant, .admin-body .dashboard-date { grid-column: 1 / -1; white-space: normal; }
}
@media(max-width:520px){
  .admin-body .topbar-actions #quickAddBtn::after { content: "+ Prostor"; }
}

/* ============================================================
   FAQ — samostatny blok pred kontaktem
   ============================================================ */
body:not(.admin-body) #faq,
body:not(.admin-body) #prostory,
body:not(.admin-body) #jak-to-funguje,
body:not(.admin-body) #kontakt {
  scroll-margin-top: 96px;
}

body:not(.admin-body) .faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,80,0,.08), transparent 28%),
    #fff;
  border-top: 1px solid rgba(35,47,56,.07);
}
body:not(.admin-body) .faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}
body:not(.admin-body) .faq-heading {
  position: sticky;
  top: 118px;
}
body:not(.admin-body) .faq-heading h2 {
  margin: 0;
  max-width: 600px;
  font-size: clamp(42px, 5vw, 60px);
  line-height: .98;
  letter-spacing: -.045em;
}
body:not(.admin-body) .faq-heading .section-lead {
  margin: 24px 0 0;
  max-width: 500px;
}
body:not(.admin-body) .faq-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 5px;
}
body:not(.admin-body) .faq-contact-link span {
  color: var(--orange);
  transition: transform .2s ease;
}
body:not(.admin-body) .faq-contact-link:hover span { transform: translateX(4px); }
body:not(.admin-body) .faq-list {
  border-top: 1px solid #ded8d4;
}
body:not(.admin-body) .faq-item {
  border-bottom: 1px solid #ded8d4;
}
body:not(.admin-body) .faq-item summary {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 2px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  cursor: pointer;
}
body:not(.admin-body) .faq-item summary::-webkit-details-marker { display: none; }
body:not(.admin-body) .faq-item summary:hover { color: var(--orange); }
body:not(.admin-body) .faq-plus {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #dcd4cf;
  border-radius: 50%;
  background: #fffaf7;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
body:not(.admin-body) .faq-plus::before,
body:not(.admin-body) .faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
body:not(.admin-body) .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}
body:not(.admin-body) .faq-item[open] .faq-plus {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(180deg);
}
body:not(.admin-body) .faq-item[open] .faq-plus::before { background: #fff; }
body:not(.admin-body) .faq-item[open] .faq-plus::after {
  background: #fff;
  transform: translate(-50%, -50%) rotate(0deg);
}
body:not(.admin-body) .faq-answer {
  padding: 0 58px 24px 2px;
}
body:not(.admin-body) .faq-answer p {
  margin: 0;
  color: #647179;
  font-size: 16px;
  line-height: 1.72;
  max-width: 720px;
}
body:not(.admin-body) .faq-section + .contact-section {
  border-top: 0;
}

@media(max-width: 900px) {
  body:not(.admin-body) .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  body:not(.admin-body) .faq-heading { position: static; }
  body:not(.admin-body) .faq-heading .section-lead { max-width: 680px; }
}

@media(max-width: 620px) {
  body:not(.admin-body) .faq-heading h2 { font-size: 42px; }
  body:not(.admin-body) .faq-item summary {
    padding: 20px 0;
    font-size: 16px;
    gap: 16px;
  }
  body:not(.admin-body) .faq-plus {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
  body:not(.admin-body) .faq-answer { padding: 0 42px 20px 0; }
  body:not(.admin-body) .faq-answer p { font-size: 15px; }
}

/* ===== V25: OFFSET KOTVY FULL SERVIS =====
   Pri prokliku z menu nechame blok pod sticky hlavickou s dostatecnym odstupem,
   aby byl hned videt nadpis i prava cast se sluzbami. */
body:not(.admin-body) #full-servis {
  scroll-margin-top: 128px;
}

@media (max-width: 940px) {
  body:not(.admin-body) #full-servis {
    scroll-margin-top: 92px;
  }
}

/* ===== ADMIN V8: SIRKA A TYPOGRAFIE SJEDNOCENA S WEBEM ===== */
.admin-body {
  font-size: 16px;
  line-height: 1.5;
}

/* Stejna maximalni sirka obsahu jako verejny web */
.admin-body .admin-content {
  width: min(var(--container), calc(100% - 40px));
  max-width: var(--container);
  margin-inline: auto;
  padding: 42px 0 56px;
}

.admin-body .admin-topbar {
  padding-inline: max(28px, calc((100% - var(--container)) / 2));
  min-height: 78px;
  height: auto;
}

/* Navigace a horni lista */
.admin-body .admin-sidebar { width: 260px; padding: 28px 18px; }
.admin-body .admin-main { margin-left: 260px; }
.admin-body .admin-logo img { width: 186px; }
.admin-body .admin-nav button { font-size: 15px; padding: 14px 15px; }
.admin-body .admin-nav button span { font-size: 18px; }
.admin-body .sidebar-bottom a,
.admin-body .sidebar-bottom button { font-size: 14px; padding: 11px 10px; }
.admin-body .connection-indicator { font-size: 13px; }
.admin-body .topbar-actions > span { font-size: 12px; }
.admin-body .btn-small { padding: 11px 16px; font-size: 14px; }

/* Nadpisy a doprovodny text */
.admin-body .admin-page-head { margin-bottom: 34px; }
.admin-body .admin-page-head h1 { font-size: clamp(40px, 4vw, 56px); }
.admin-body .page-head-note { max-width: 420px; font-size: 15px; line-height: 1.55; }
.admin-body .eyebrow { font-size: 13px; }

/* Karty a statistiky */
.admin-body .stats-grid { gap: 18px; margin-bottom: 20px; }
.admin-body .stat-card,
.admin-body .admin-card { border-radius: 24px; }
.admin-body .stat-card { padding: 24px; }
.admin-body .stat-card > span { font-size: 13px; }
.admin-body .stat-card strong { font-size: 42px; margin: 9px 0 4px; }
.admin-body .stat-card small { font-size: 13px; line-height: 1.45; }
.admin-body .dashboard-grid { gap: 20px; margin-bottom: 20px; }
.admin-body .admin-card { padding: 26px; }
.admin-body .card-head h2,
.admin-body .info-card h2,
.admin-body .password-card h2 { font-size: 24px; }
.admin-body .card-kicker { font-size: 12px; }
.admin-body .text-btn { font-size: 14px; }
.admin-body .info-card p,
.admin-body .admin-help-list p { font-size: 15px; line-height: 1.6; }
.admin-body .info-card code { font-size: 13px; }
.admin-body .info-ok { padding: 14px 15px; font-size: 14px; line-height: 1.5; }

/* Formulare a ovladaci prvky */
.admin-body label { font-size: 14px; gap: 8px; margin-bottom: 17px; }
.admin-body input,
.admin-body select,
.admin-body textarea { font-size: 15px; padding: 13px 14px; }
.admin-body .btn { font-size: 15px; }
.admin-body .settings-section-title { font-size: 15px; }
.admin-body .settings-hint { font-size: 14px; line-height: 1.55; }
.admin-body .form-message { font-size: 14px; }

/* Toolbar a tabulka */
.admin-body .admin-toolbar { gap: 12px; margin-bottom: 18px; }
.admin-body .search-box { font-size: 17px; }
.admin-body .admin-toolbar select { min-width: 190px; }
.admin-body .admin-table { min-width: 1060px; }
.admin-body .admin-table th { font-size: 11px; padding: 15px 16px; }
.admin-body .admin-table td { font-size: 14px; padding: 15px 16px; line-height: 1.45; }
.admin-body .admin-table td strong { font-size: 14px; }
.admin-body .admin-table td small { font-size: 12px; margin-top: 3px; }
.admin-body .admin-status { font-size: 11px; padding: 6px 9px; }
.admin-body .web-visibility { font-size: 12px; }
.admin-body .icon-btn { width: 38px; height: 38px; font-size: 15px; }

/* Dynamicky generovany obsah prehledu */
.admin-body .quick-status-row { grid-template-columns: 1fr 150px; padding: 12px 0; }
.admin-body .quick-status-row b { font-size: 14px; }
.admin-body .quick-status-row small { font-size: 12px; }
.admin-body .quick-status-row select { font-size: 13px; padding: 10px; }
.admin-body .recent-row { padding: 12px 0; }
.admin-body .recent-row strong { font-size: 14px; }
.admin-body .recent-row small,
.admin-body .recent-row time { font-size: 12px; }
.admin-body .price-row,
.admin-body .price-row strong { font-size: 13px; }

/* Modal */
.admin-body .admin-modal { width: min(760px, 100%); padding: 34px; }
.admin-body .admin-modal h2 { font-size: 40px; }
.admin-body .checkbox-field span { font-size: 14px; }
.admin-body .toast { font-size: 14px; padding: 14px 18px; }

/* Prihlaseni */
.admin-body .login-card { width: min(540px, 100%); padding: 40px; }
.admin-body .login-card h1 { font-size: 44px; }
.admin-body .login-card > p { font-size: 16px; line-height: 1.6; }
.admin-body .login-note { font-size: 13px; padding: 14px; }
.admin-body .back-to-site { font-size: 14px; }

@media (max-width: 1100px) {
  .admin-body .admin-content { width: min(var(--container), calc(100% - 32px)); }
}

@media (max-width: 780px) {
  .admin-body .admin-sidebar { width: 280px; }
  .admin-body .admin-main { margin-left: 0; }
  .admin-body .admin-topbar { min-height: 70px; padding: 0 16px; }
  .admin-body .admin-content { width: 100%; padding: 28px 16px 42px; }
  .admin-body .admin-page-head h1 { font-size: clamp(36px, 10vw, 46px); }
  .admin-body .page-head-note { font-size: 14px; }
  .admin-body .mobile-unit-card { padding: 18px; }
  .admin-body .mobile-unit-card h3 { font-size: 19px; }
  .admin-body .mobile-unit-card p { font-size: 13px; line-height: 1.5; }
  .admin-body .settings-form { padding: 22px; }
  .admin-body .admin-modal { padding: 24px; }
}

/* 2026-08-20: slouceni Prehledu a Spravy prostoru */
.admin-body .dashboard-help-inline { margin-top: 20px; }
.admin-body .dashboard-help-inline .admin-help-list { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.admin-body .dashboard-help-inline .admin-help-list p { margin: 0; }

/* V7: nabídka prostorů – neúplný poslední řádek je vystředěný */
body:not(.admin-body) .units-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
body:not(.admin-body) .units-grid > .unit-card {
  flex: 0 1 calc((100% - 40px) / 3);
  width: calc((100% - 40px) / 3);
}
@media (max-width: 900px) {
  body:not(.admin-body) .units-grid > .unit-card {
    flex-basis: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 640px) {
  body:not(.admin-body) .units-grid > .unit-card {
    flex-basis: 100%;
    width: 100%;
  }
}


/* SEO obsahové odkazy v patičce */
body:not(.admin-body) .footer-seo-links {
  display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px 18px; margin-left:auto;
  font-size:11px; line-height:1.4;
}
body:not(.admin-body) .footer-seo-links a { color:#aeb9c0; text-decoration:underline; text-underline-offset:3px; }
body:not(.admin-body) .footer-seo-links a:hover { color:#fff; }
@media (max-width:700px) {
  body:not(.admin-body) .footer-seo-links { justify-content:flex-start; margin-left:0; width:100%; }
}

/* ===== V16: ADMIN IKONA V JEDNOM RADKU PATICKY ===== */
@media (min-width: 701px) {
  body:not(.admin-body) .footer-simple {
    grid-template-columns: auto minmax(240px, 1fr) auto auto;
    gap: 18px 24px;
  }
  body:not(.admin-body) .footer-copyright {
    text-align: center;
  }
  body:not(.admin-body) .footer-seo-links {
    margin-left: 0;
    white-space: nowrap;
  }
  body:not(.admin-body) .footer-admin-icon {
    width: 28px;
    height: 28px;
    border-color: rgba(255,255,255,.08);
    color: #667176;
  }
  body:not(.admin-body) .footer-admin-icon svg {
    width: 13px;
    height: 13px;
  }
}


/* v17: dominant unit number on public cards */
body:not(.admin-body) .unit-number {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
body:not(.admin-body) .unit-number span {
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff5a00;
}
body:not(.admin-body) .unit-number strong {
  display: block;
  font-size: 62px;
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.055em;
  color: #fff;
}
body:not(.admin-body) .unit-card-top {
  align-items: flex-start;
}
body:not(.admin-body) .unit-status {
  position: relative;
  z-index: 1;
}
