/* ============================================================
   MEZONETY DOJČ – Custom Ghost Theme
   Paleta: Antracit #2C3035 · Champagne #EDE5CF · Sage #7A9E6A
   Fonty: Cormorant Garamond (headings) · DM Sans (body)
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --anthracite:      #2C3035;
  --anthracite-80:   rgba(44, 48, 53, 0.80);
  --anthracite-50:   rgba(44, 48, 53, 0.50);
  --anthracite-light:#3d4349;
  --champagne:       #EDE5CF;
  --champagne-dark:  #d6cdb4;
  --champagne-light: #f5f0e6;
  --sage:            #7A9E6A;
  --sage-dark:       #5d7e50;
  --sage-light:      #a3c494;
  --warm-white:      #F8F6F1;
  --text:            #1A1C1F;
  --text-muted:      #5a5e65;
  --text-light:      #8a8f98;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:    68px;
  --radius:   4px;
  --max-w:    1140px;
  --gap:      clamp(24px, 4vw, 48px);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Koenig Editor – wide & full width ─────────────────────── */
.kg-width-wide {
  max-width: min(1040px, calc(100vw - 2 * var(--gap)));
  margin-left: auto;
  margin-right: auto;
}
.kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.kg-width-wide img,
.kg-width-full img {
  width: 100%;
}

/* ── Base Typography ────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--text);
  background: var(--warm-white);
  padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p { max-width: 68ch; }
strong { font-weight: 500; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section { padding-block: clamp(64px, 8vw, 112px); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: clamp(36px, 5vw, 56px);
  color: var(--anthracite);
}


/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--anthracite);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: var(--max-w);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--champagne);
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--sage);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--champagne);
}

.logo-text em {
  font-style: italic;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline-start: auto;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(237, 229, 207, 0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--champagne);
  background: rgba(255,255,255,0.07);
}

.nav-link--cta {
  margin-inline-start: 8px;
  background: var(--sage);
  color: #fff !important;
  padding: 8px 18px;
}

.nav-link--cta:hover {
  background: var(--sage-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
  color: var(--champagne);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ── Hero (Homepage) ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  background-color: var(--anthracite);
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26, 28, 31, 0.72) 0%,
    rgba(44, 48, 53, 0.50) 60%,
    rgba(26, 28, 31, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: clamp(60px, 8vw, 100px);
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--champagne);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 44px;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  translate: -50% 0;
  color: rgba(255,255,255,0.4);
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { translate: -50% 0; }
  50% { translate: -50% 8px; }
}


/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--anthracite);
  border-color: var(--anthracite);
}
.btn-outline:hover { background: var(--anthracite); color: var(--champagne); }

.btn-outline-light {
  background: transparent;
  color: var(--champagne);
  border-color: rgba(237,229,207,0.5);
}
.btn-outline-light:hover { background: rgba(237,229,207,0.1); border-color: var(--champagne); }


/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--anthracite);
  padding-block: 0;
}

.stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 32px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--champagne);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,229,207,0.5);
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin-block: 16px;
}


/* ── Features Grid ──────────────────────────────────────────── */
.features-section { background: var(--warm-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.feature-card {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.feature-icon {
  color: var(--sage);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--anthracite);
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: none;
}


/* ── Layout Section ─────────────────────────────────────────── */
.layout-section--alt { background: var(--champagne-light); }

.layout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.layout-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 52ch;
}

.layout-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--champagne-dark);
}

.layout-list li {
  display: flex;
  gap: 20px;
  padding-block: 16px;
  border-bottom: 1px solid var(--champagne-dark);
}

.floor-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--anthracite);
  min-width: 95px;
  flex-shrink: 0;
  padding-top: 2px;
}

.floor-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Floor Diagram */
.floor-diagram {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fd-floor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  gap: 4px;
  border-radius: var(--radius);
}

.fd-floor span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.fd-floor em {
  font-style: normal;
  font-size: 13px;
  opacity: 0.7;
}

.fd-roof   { background: var(--anthracite-80); color: var(--champagne); height: 80px; }
.fd-upper  { background: var(--anthracite); color: var(--champagne); height: 110px; }
.fd-ground { background: var(--sage); color: #fff; height: 130px; }


/* ── CTA Section ────────────────────────────────────────────── */
.cta-section { background: var(--anthracite); }

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--champagne);
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(237,229,207,0.65);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}


/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: clamp(260px, 35vw, 440px);
  display: flex;
  align-items: flex-end;
  background-color: var(--anthracite);
  background-image: var(--page-hero-bg, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,28,31,0.85) 0%, rgba(26,28,31,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 48px;
}

.page-header {
  background: var(--anthracite);
  padding-block: clamp(40px, 6vw, 72px);
}

.page-header--dark { background: var(--anthracite); }

.page-title {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--champagne);
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(237,229,207,0.65);
  font-weight: 300;
  max-width: 60ch;
}


/* ── Page Content (generic) ─────────────────────────────────── */
.page-content {
  padding-block: clamp(48px, 7vw, 88px);
}

.gh-content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--anthracite);
  margin-top: 48px;
  margin-bottom: 20px;
}

.gh-content h2:first-child { margin-top: 0; }

.gh-content p {
  margin-bottom: 18px;
  color: var(--text);
}

.gh-content ul, .gh-content ol {
  margin-bottom: 20px;
  padding-inline-start: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gh-content ul li {
  position: relative;
  padding-inline-start: 20px;
  font-size: 15px;
  color: var(--text);
}

.gh-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.gh-content strong { color: var(--anthracite); }


/* ── Cenník Page ────────────────────────────────────────────── */

/* Image Map */
.imagemap-hint-bar {
  background: var(--anthracite-light);
  text-align: center;
  padding: 10px 20px;
}

.imagemap-hint-text {
  font-size: 13px;
  color: rgba(237,229,207,0.6);
  letter-spacing: 0.04em;
}

.imagemap-wrapper {
  background: var(--anthracite);
  position: relative;
}

.imagemap-figure {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 0;
  cursor: crosshair;
}

.imagemap-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s var(--ease-out);
  user-select: none;
}

.imagemap-photo.is-lit {
  filter: brightness(1.15) contrast(1.03);
}

.imagemap-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.unit-zone {
  fill: transparent;
  stroke: transparent;
  cursor: pointer;
  outline: none;
  transition: fill 0.2s, stroke 0.2s;
}

.unit-zone:hover,
.unit-zone.is-active {
  fill: rgba(122, 158, 106, 0.35);
  stroke: rgba(122, 158, 106, 0.85);
  stroke-width: 3;
}

.unit-zone:focus-visible {
  fill: rgba(122, 158, 106, 0.25);
  stroke: var(--sage);
  stroke-width: 3;
}

/* Tooltip */
.imagemap-tooltip {
  position: absolute;
  background: var(--anthracite);
  color: var(--champagne);
  border-radius: var(--radius);
  padding: 10px 16px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 12px));
  transition: opacity 0.15s;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.imagemap-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  translate: -50% 0;
  width: 10px;
  height: 10px;
  background: var(--anthracite);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.imagemap-tooltip.is-visible { opacity: 1; }

.tooltip-unit {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.tooltip-type {
  font-size: 12px;
  color: rgba(237,229,207,0.6);
}

.tooltip-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--sage-light);
}

/* Unit Nav Buttons */
.imagemap-unit-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--anthracite-light);
}

.unit-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(237,229,207,0.25);
  color: rgba(237,229,207,0.6);
  font-family: var(--font-display);
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.unit-nav-btn:hover,
.unit-nav-btn.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

/* Cenník Content */
.cennik-content { padding-top: clamp(48px, 6vw, 80px); }

/* Pricing Intro */
.pricing-intro {
  max-width: 72ch;
  margin-bottom: 48px;
}

.pricing-intro p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-intro p strong { color: var(--anthracite); }

/* Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

.pricing-table thead {
  background: var(--anthracite);
  color: var(--champagne);
}

.pricing-table th {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}

.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
}

.pricing-table tbody tr {
  transition: background 0.2s;
}

.pricing-table tbody tr:hover {
  background: var(--champagne-light);
}

.pricing-table tbody tr:last-child td { border-bottom: none; }

.pricing-table tbody tr.is-highlighted {
  background: rgba(122, 158, 106, 0.12);
  outline: 2px solid var(--sage);
  outline-offset: -2px;
  transition: background 0.1s;
}

.unit-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--anthracite);
  width: 48px;
}

.unit-type {
  font-weight: 400;
  color: var(--anthracite);
}

.unit-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--anthracite);
  white-space: nowrap;
}

.price-note { font-size: 14px; color: var(--sage); }

.unit-status {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  white-space: nowrap;
}

.unit-status.available {
  background: rgba(122, 158, 106, 0.12);
  color: var(--sage-dark);
}

.unit-status.reserved {
  background: rgba(237, 229, 207, 0.5);
  color: var(--text-muted);
}

.unit-status.sold {
  background: rgba(200, 100, 80, 0.1);
  color: #c86450;
}

.price-footnote {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 48px;
}

/* Pricing Includes */
.pricing-includes { margin-top: 64px; }

.pricing-includes h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--anthracite);
  margin-bottom: 28px;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.includes-grid li {
  position: relative;
  padding: 16px 20px 16px 44px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--text);
}

.includes-grid li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--sage);
  font-weight: 500;
}

/* Buyer Resolves */
.buyer-resolves { margin-top: 40px; }

.buyer-resolves h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--text-muted);
  margin-bottom: 20px;
}

.buyer-resolves ul li {
  padding-inline-start: 20px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.buyer-resolves ul li::before {
  background: var(--champagne-dark);
}


/* ── Page-specific Styles ───────────────────────────────────── */

/* Lokalita */
.distance-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-block: 40px;
}

.dist-card {
  background: var(--anthracite);
  color: var(--champagne);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 160px;
  text-align: center;
  flex: 1;
}

.dist-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 4px;
}

.dist-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

.map-container {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-block: 28px;
}

.amenity-list li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  font-size: 14.5px;
}

/* Vybavenie */
.vybavenie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 56px;
}

.vybavenie-col h2 {
  margin-bottom: 20px;
}

.tech-specs {
  background: var(--anthracite);
  color: var(--champagne);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-top: 48px;
}

.tech-specs h2 { color: #fff; margin-bottom: 28px; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.tech-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(237,229,207,0.5);
  margin-bottom: 6px;
}

.tech-item span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--champagne);
}

/* Financovanie */
.fin-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-block: 40px;
  counter-reset: step;
}

.fin-step {
  display: flex;
  gap: 32px;
  padding-block: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fin-step:last-child { border-bottom: none; }

.fin-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--champagne-dark);
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}

.fin-step h3 {
  font-size: 22px;
  color: var(--anthracite);
  margin-bottom: 10px;
}

.fin-step p {
  font-size: 15px;
  color: var(--text-muted);
}

.fin-highlight {
  background: var(--sage);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 40px;
  margin-top: 48px;
}

.fin-highlight h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.fin-highlight p { color: rgba(255,255,255,0.85); }

/* Kontakt */
.contact-card {
  background: var(--anthracite);
  color: var(--champagne);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  max-width: 540px;
}

.contact-name {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
  margin-bottom: 6px;
}

.contact-role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-family: var(--font-display);
  color: var(--champagne);
  transition: color 0.2s;
}

.contact-link:hover { color: var(--sage-light); }

.contact-link svg { color: var(--sage); flex-shrink: 0; }

.contact-company {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(237,229,207,0.5);
}


/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--anthracite);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(40px, 6vw, 72px);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(237,229,207,0.45);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(237,229,207,0.55);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--champagne); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--champagne);
  margin-bottom: 2px;
}

.footer-contact-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(237,229,207,0.4);
  margin-bottom: 10px;
}

.footer-contact-link {
  font-size: 15px;
  color: rgba(237,229,207,0.7);
  transition: color 0.2s;
}

.footer-contact-link:hover { color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(237,229,207,0.3);
}

.footer-bottom a {
  color: rgba(237,229,207,0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover { color: var(--champagne); }


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .layout-grid { grid-template-columns: 1fr; }
  .layout-visual { order: -1; }
  .floor-diagram { display: none; }

  .vybavenie-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    background: var(--anthracite);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }

  .site-nav.is-open { display: flex; }

  .nav-link {
    padding: 13px 16px;
    font-size: 15px;
  }

  .nav-link--cta { margin-inline-start: 0; margin-top: 8px; text-align: center; }

  .stats-inner { flex-direction: column; }
  .stat-divider { width: auto; height: 1px; margin-block: 0; margin-inline: 16px; }

  .stat-item { padding: 20px 24px; flex-direction: row; justify-content: space-between; align-items: baseline; }
  .stat-number { font-size: 22px; }

  .footer-grid { grid-template-columns: 1fr; }

  .imagemap-hint-bar { display: none; }

  /* Pricing table responsive */
  .pricing-table { font-size: 13.5px; }
  .pricing-table td { padding: 12px 14px; }
  .pricing-table th { padding: 12px 14px; }

  td:nth-child(4) { display: none; }
  th:nth-child(4) { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(48px, 15vw, 72px); }
  .features-grid { grid-template-columns: 1fr; }
  .tech-specs { padding: 28px 24px; }
  td:nth-child(3) { display: none; }
  th:nth-child(3) { display: none; }
}

/* ── Print ──────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .imagemap-section { display: none; }
  body { padding-top: 0; background: white; }
}
