/* ═══════════════════════════════════════════════════
   BKL — Industrial Modern Design System
   Brutálny industriálny modernizmus
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Share+Tech+Mono&display=swap');

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

:root {
  /* Kovové odtiene */
  --void:      #0a0a0a;
  --forge:     #111111;
  --iron:      #1a1a1a;
  --iron-mid:  #222222;
  --iron-light:#2e2e2e;
  --steel:     #3a3a3a;

  /* Akcenty */
  --ember:     #c94a1a;   /* žeravá oranžová */
  --ember-hot: #e05520;
  --gold:      #c9a84c;
  --slag:      #7a6a5a;   /* troska — tlmená hnedá */

  /* Text */
  --white:     #f0ebe4;
  --ash:       #d4cfc8;
  --fog:       #8a857e;
  --smoke:     #5a5550;

  /* Typografia */
  --f-display: 'Archivo Black', sans-serif;
  --f-body:    'Archivo', sans-serif;
  --f-mono:    'Share Tech Mono', monospace;

  /* Mriežka */
  --max:       1280px;
  --gap:       1px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--ash);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: default;
}

/* Kovová textúra na pozadí */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.012) 2px,
      rgba(255,255,255,0.012) 3px
    );
  pointer-events: none;
  z-index: 0;
}

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--ember); }

/* ═══ SELECTION ═══ */
::selection { background: var(--ember); color: var(--white); }

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--iron-light);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}

nav.scrolled { border-bottom-color: var(--ember); }

.nav-logo a { text-decoration: none; }

.nav-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1;
}

.nav-name span {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--ember);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links li { position: relative; }

.nav-links a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 1.1rem;
  color: var(--fog);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ember);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-phone {
  color: var(--gold) !important;
  font-family: var(--f-mono) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  gap: 6px;
}

.nav-phone svg { flex-shrink: 0; }
.nav-phone::after { background: var(--gold) !important; }

.nav-cta {
  margin-left: 0.5rem;
  background: var(--ember) !important;
  color: var(--white) !important;
  padding: 0 1.4rem !important;
  height: 36px !important;
  align-self: center;
  border: none;
  letter-spacing: 0.2em !important;
  transition: background 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ember-hot) !important; color: var(--white) !important; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Fallback pozadie — nahradí sa ak je nahratá fotka cez admin */
  background:
    linear-gradient(110deg, rgba(10,10,10,0.96) 50%, rgba(10,10,10,0.7) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80&fit=crop') center/cover no-repeat;
}

/* Sieťový overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,74,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,74,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 12rem 3rem 4rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* Číslo na pozadí */
.hero-content::before {
  content: 'BKL';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--f-display);
  font-size: clamp(8rem, 22vw, 20rem);
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.hero-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '//';
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.3em;
}

.hero h1 em {
  color: var(--ember);
  font-style: normal;
  display: block;
  line-height: 0.92;
}
.hero h1 span {
  line-height: 0.92;
}

.hero-sub {
  font-size: 1rem;
  color: var(--fog);
  max-width: 440px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══ TLAČIDLÁ ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--f-body);
  border: 1px solid var(--ember);
  transition: all 0.22s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: transparent;
  color: var(--ember-hot);
  border-color: var(--ember-hot);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ash);
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: var(--f-body);
  border: 1px solid var(--steel);
  transition: all 0.22s;
  white-space: nowrap;
}

.btn-secondary:hover { border-color: var(--ash); color: var(--white); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--f-mono);
  border: 1px solid rgba(201,168,76,0.3);
  transition: all 0.22s;
  white-space: nowrap;
}

.btn-call:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

/* ═══ HERO STATS ═══ */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--iron-light);
  background: rgba(10,10,10,0.85);
}

.stat-item {
  padding: 1.8rem 2.5rem;
  border-right: 1px solid var(--iron-light);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-label {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--fog);
  margin-top: 5px;
  text-transform: uppercase;
}

/* ═══ SEKCIE — ZÁKLADY ═══ */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 3rem;
}

.section-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before { content: '//'; opacity: 0.5; }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em { color: var(--ember); font-style: normal; }

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ DIVIDERS ═══ */
.bd-top    { border-top: 1px solid var(--iron-light); }
.bd-bottom { border-bottom: 1px solid var(--iron-light); }
.bg-forge  { background: var(--forge); }
.bg-iron   { background: var(--iron-mid); }

/* ═══ O NÁS ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--fog);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.about-text p strong { color: var(--ash); font-weight: 500; }

.about-img-placeholder {
  aspect-ratio: 4/5;
  background: var(--iron-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid var(--iron-light);
  color: var(--smoke);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; filter: grayscale(20%); }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--ember);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-badge .num { font-family: var(--f-display); font-size: 1.8rem; color: var(--white); }
.about-badge .lbl { font-family: var(--f-mono); font-size: 0.55rem; color: rgba(255,255,255,0.7); letter-spacing: 0.15em; margin-top: 3px; }

.about-image-block { position: relative; }

/* ═══ STATS BAR ═══ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
  border-top: var(--gap) solid var(--iron-light);
}

.stats-bar-item {
  background: var(--forge);
  padding: 2rem;
  text-align: center;
}

.stats-bar-num { font-family: var(--f-display); font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stats-bar-label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.2em; color: var(--fog); margin-top: 5px; text-transform: uppercase; }

/* ═══ SLUŽBY ═══ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
}

.service-card {
  text-decoration: none;
  background: var(--iron);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ember);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.service-card:hover { background: var(--iron-mid); }
.service-card:hover::before { transform: scaleY(1); }

/* Číslo na pozadí karty */
.service-card::after {
  content: attr(data-num);
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
  font-family: var(--f-display);
  font-size: 5rem;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
}

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.service-card p { color: var(--fog); font-size: 0.85rem; line-height: 1.75; margin-bottom: 1rem; }

.service-items { list-style: none; }

.service-items li {
  font-size: 0.8rem;
  color: var(--fog);
  padding: 3px 0 3px 1rem;
  position: relative;
}

.service-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ember);
  font-size: 0.65rem;
}

.service-arrow {
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--ember);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.service-card:hover .service-arrow { gap: 0.9rem; }

/* ═══ POSTUP ═══ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
  position: relative;
}

.step {
  background: var(--iron-mid);
  padding: 2.5rem 2rem;
  position: relative;
}

.step-num {
  font-family: var(--f-display);
  font-size: 4rem;
  color: rgba(201,74,26,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.83rem; color: var(--fog); line-height: 1.7; }

/* ═══ GALÉRIA ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
  margin-top: 3rem;
}

.gallery-item { overflow: hidden; position: relative; background: var(--iron-mid); cursor: pointer; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.5s ease, filter 0.4s; display: block; }
.gallery-item:hover .gallery-img { transform: scale(1.04); filter: grayscale(0%); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--smoke); font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.5;
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(201,74,26,0);
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay { background: rgba(201,74,26,0.08); }

/* ═══ ABOUT / FOUNDER ═══ */
.founder { background: var(--iron); }

.founder-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid var(--iron-light);
  overflow: hidden;
}

.founder-portrait {
  background: var(--iron-mid);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
}

.founder-portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(20%); }

.founder-portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0.2; color: var(--fog); font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-align: center; padding: 1rem;
}

.founder-name-plate {
  position: relative; z-index: 2; width: 100%;
  background: linear-gradient(to top, rgba(10,10,10,0.97) 60%, transparent);
  padding: 3rem 2rem 1.8rem;
}

.founder-name-plate .fn { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.05em; color: var(--white); }
.founder-name-plate .ft { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.25em; color: var(--ember); margin-top: 5px; text-transform: uppercase; }

.founder-content {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--iron-mid);
  position: relative;
}

.founder-content::before {
  content: '"';
  position: absolute; top: 1rem; right: 2rem;
  font-family: var(--f-display);
  font-size: 10rem;
  color: rgba(201,74,26,0.06);
  line-height: 1; pointer-events: none;
}

.founder-timeline { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0; position: relative; }

.founder-timeline::before {
  content: '';
  position: absolute; left: 14px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--ember), rgba(201,74,26,0.1));
}

.ftl-item { display: flex; gap: 1.5rem; align-items: flex-start; padding: 0.75rem 0; }

.ftl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--ember);
  background: var(--iron-mid);
  flex-shrink: 0; margin-top: 6px; position: relative; z-index: 1;
  transition: background 0.2s;
}

.ftl-item:hover .ftl-dot { background: var(--ember); }

.ftl-year { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--ember); min-width: 55px; line-height: 1.4; }

.ftl-text { font-size: 0.85rem; color: var(--fog); line-height: 1.7; }
.ftl-text strong { color: var(--ash); font-weight: 500; display: block; margin-bottom: 2px; }

.founder-quote {
  margin-top: 1rem; padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--ember);
  background: rgba(201,74,26,0.05);
}

.founder-quote p { font-size: 0.92rem; color: var(--ash); line-height: 1.8; font-style: italic; font-weight: 300; }
.founder-quote cite { display: block; margin-top: 0.6rem; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--ember); font-style: normal; text-transform: uppercase; }

.founder-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1.5rem; }

.founder-skill {
  font-family: var(--f-mono);
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fog); border: 1px solid var(--iron-light);
  padding: 3px 10px;
  transition: border-color 0.2s, color 0.2s;
}

.founder-skill:hover { border-color: rgba(201,74,26,0.4); color: var(--ember); }

/* ═══ PREČO BKL ═══ */
.why { background: var(--iron-mid); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background: var(--iron-light);
}

.pillar {
  background: var(--iron-mid);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.pillar:hover { background: var(--iron-light); }

.pillar-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}

.pillar:hover .pillar-accent { transform: scaleX(1); }

.pillar-num {
  font-family: var(--f-display);
  font-size: 2.5rem; color: rgba(201,74,26,0.15);
  line-height: 1; margin-bottom: 0.4rem;
}

.pillar h4 { font-family: var(--f-display); font-size: 1rem; letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.8rem; color: var(--fog); line-height: 1.7; }

/* ═══ B2B / B2C ═══ */
.audience { background: var(--void); }

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 2.5rem;
  position: relative;
}

.audience-panel {
  background: var(--iron);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
}

.audience-panel:hover { background: var(--iron-mid); }

.audience-panel::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.audience-panel:hover::after { transform: scaleX(1); }

.audience-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ember); border: 1px solid rgba(201,74,26,0.35);
  padding: 0.25rem 0.7rem; margin-bottom: 1.2rem;
}

.audience-panel h3 { font-family: var(--f-display); font-size: 2rem; letter-spacing: 0.03em; color: var(--white); line-height: 1.05; margin-bottom: 0.8rem; }
.audience-panel h3 em { color: var(--ember); font-style: normal; }
.audience-panel > p { color: var(--fog); font-size: 0.9rem; line-height: 1.85; margin-bottom: 1.5rem; }

.audience-perks { list-style: none; margin-bottom: 1.5rem; }

.audience-perks li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.55rem 0; border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem; color: var(--ash); line-height: 1.55;
}

.perk-icon { color: var(--ember); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.audience-quote {
  margin-top: 1.5rem; padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--ember);
  background: rgba(201,74,26,0.05);
}

.audience-quote p { font-size: 0.83rem; color: var(--fog); font-style: italic; line-height: 1.7; }
.audience-quote cite { display: block; margin-top: 0.5rem; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ember); font-style: normal; }

.audience-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); text-decoration: none; font-weight: 400;
  margin-top: 1.5rem; transition: gap 0.2s;
}

.audience-cta:hover { gap: 0.9rem; }

.audience-divider-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 10; background: var(--void); border: 1px solid rgba(201,74,26,0.3);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 1.2rem; color: var(--ember);
}

/* ═══ MATERIÁLY ═══ */
.materials { background: var(--forge); }

.materials-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-bottom: 3.5rem; }

.materials-intro p { color: var(--fog); font-size: 0.93rem; line-height: 1.85; }

.brand-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.5rem; }

.brand-badge {
  border: 1px solid rgba(201,74,26,0.3); padding: 0.6rem 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember);
}

.brand-badge strong { font-size: 0.9rem; font-weight: 500; color: var(--ash); letter-spacing: 0.08em; font-family: var(--f-display); }

.mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
}

.mat-card { background: var(--forge); padding: 2rem 1.8rem; transition: background 0.25s; }
.mat-card:hover { background: var(--iron); }

.mat-icon { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
.mat-card h4 { font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.5rem; }
.mat-card p { font-size: 0.82rem; color: var(--fog); line-height: 1.75; }

.mat-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 0.8rem; }
.mat-tag { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ember); border: 1px solid rgba(201,74,26,0.25); padding: 2px 7px; }

.surface-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: var(--gap); background: var(--iron-light); border-top: none;
}

.surface-item {
  background: var(--iron); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  transition: background 0.22s;
}

.surface-item:hover { background: var(--iron-mid); }

.surface-dot { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.08); }

.surface-item span { font-size: 0.76rem; color: var(--ash); line-height: 1.4; }
.surface-item small { display: block; font-family: var(--f-mono); font-size: 0.62rem; color: var(--fog); margin-top: 2px; letter-spacing: 0.05em; }

/* ═══ PRÍPADOVÉ ŠTÚDIE ═══ */
.cases { background: var(--iron-mid); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
}

.case-card {
  background: var(--iron-mid);
  display: flex; flex-direction: column;
  transition: background 0.25s;
  position: relative; overflow: hidden;
}

.case-card:hover { background: var(--iron); }

.case-img {
  aspect-ratio: 4/3;
  background: var(--iron-light);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
}

.case-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.5s; }
.case-card:hover .case-img img { transform: scale(1.04); }

.case-img p { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; color: var(--smoke); opacity: 0.5; }

.case-img-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}

.case-card:hover .case-img-bar { transform: scaleX(1); }

.case-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }

.case-cat { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ember); margin-bottom: 0.6rem; }

.case-card h3 { font-family: var(--f-display); font-size: 1.3rem; letter-spacing: 0.03em; color: var(--white); line-height: 1.1; margin-bottom: 0.7rem; }

.case-card > .case-body > p { font-size: 0.83rem; color: var(--fog); line-height: 1.8; flex: 1; }

.case-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--gap); background: var(--iron-light);
  margin-top: 1.5rem; border-top: 1px solid var(--iron-light);
}

.case-meta-item { background: var(--iron-mid); padding: 0.75rem 1rem; transition: background 0.25s; }
.case-card:hover .case-meta-item { background: var(--iron); }
.case-meta-label { font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fog); margin-bottom: 3px; }
.case-meta-val { font-size: 0.8rem; color: var(--ash); }

/* ═══ REFERENCIE ═══ */
.reviews { background: var(--iron); overflow: hidden; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
}

.review-card {
  background: var(--iron);
  padding: 2rem 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.25s; position: relative;
}

.review-card:hover { background: var(--iron-mid); }

.review-stars { display: flex; gap: 2px; }
.star { color: var(--gold); font-size: 0.85rem; }

.review-text {
  font-size: 0.88rem; color: var(--ash); line-height: 1.8;
  font-style: italic; font-weight: 300; flex: 1; position: relative;
}

.review-text::before {
  content: '"';
  font-family: var(--f-display);
  font-size: 4rem; color: rgba(201,74,26,0.1);
  line-height: 0.7; display: block; margin-bottom: 0.2rem;
}

.review-author { display: flex; align-items: center; gap: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--iron-light); border: 1px solid rgba(201,74,26,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 0.9rem; color: var(--ember); flex-shrink: 0;
}

.review-author-name { font-size: 0.83rem; color: var(--white); font-weight: 500; line-height: 1.2; }
.review-author-detail { font-family: var(--f-mono); font-size: 0.65rem; color: var(--fog); margin-top: 2px; letter-spacing: 0.05em; }

.review-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); border: 1px solid rgba(201,74,26,0.25); padding: 2px 7px;
}

.reviews-avg .big { font-family: var(--f-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.reviews-avg .out { font-size: 1rem; color: var(--fog); align-self: center; }
.reviews-count { font-size: 0.8rem; color: var(--fog); line-height: 1.6; }
.reviews-count strong { display: block; font-size: 1rem; color: var(--ash); font-weight: 500; }
.reviews-avg { display: flex; align-items: baseline; gap: 0.4rem; }
.reviews-summary { display: flex; align-items: center; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap; }

/* ═══ ŠPECIÁLNE — vertikálne sekcie ═══ */
.specials { background: var(--void); }

/* Navigačné kotvy pre špeciálne sekcie */
.spec-anchor { display: flex; gap: 0; border-bottom: 1px solid var(--iron-light); margin-bottom: 0; overflow-x: auto; scrollbar-width: none; }
.spec-anchor::-webkit-scrollbar { display: none; }

.spec-anchor-btn {
  flex: none;
  padding: 1rem 1.5rem;
  background: none; border: none; border-bottom: 3px solid transparent;
  cursor: pointer; font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog);
  transition: all 0.2s; white-space: nowrap; text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
}

.spec-anchor-btn:hover { color: var(--ash); }
.spec-anchor-btn.active { color: var(--ember); border-bottom-color: var(--ember); }

/* Každá spec sekcia je nezávislá */
.spec-section {
  border-bottom: 3px solid var(--iron-light);
  scroll-margin-top: 100px;
  padding-bottom: 4rem;
  margin-bottom: 0;
}

.spec-section + .spec-section {
  padding-top: 4rem;
}

.spec-section:last-child {
  border-bottom: none;
  padding-bottom: 2rem;
}

.spec-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.spec-visual {
  background: var(--iron-light);
  position: relative;
  overflow: hidden;
  display: flex; align-items: stretch;
}

.spec-img {
  width: 100%; object-fit: cover; display: block;
  filter: grayscale(15%) contrast(1.08);
  transition: transform 0.6s ease;
}

.spec-img:hover { transform: scale(1.03); }

.spec-img-placeholder {
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0.25; padding: 3rem; text-align: center; color: var(--fog);
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.12em;
}

.spec-visual-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--ember); color: var(--white);
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.35rem 0.8rem;
}

.spec-content {
  background: var(--iron-mid);
  padding: 3rem 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
}

.spec-content::before {
  content: attr(data-icon);
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 6rem; opacity: 0.04; pointer-events: none;
}

.spec-content h3 {
  font-family: var(--f-display);
  font-size: 2.3rem; letter-spacing: -0.01em; color: var(--white); line-height: 0.95; margin-bottom: 0.5rem;
}

.spec-content h3 em { color: var(--ember); font-style: normal; }

.spec-tagline { font-size: 0.85rem; color: var(--fog); font-style: italic; margin-bottom: 1.5rem; }

.spec-desc { font-size: 0.9rem; color: var(--fog); line-height: 1.85; margin-bottom: 1.5rem; }
.spec-desc strong { color: var(--ash); font-weight: 500; }

.spec-features { list-style: none; margin-bottom: 1.5rem; }

.spec-features li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.84rem; color: var(--ash); line-height: 1.5;
}

.spec-features li:last-child { border-bottom: none; }
.fi { color: var(--ember); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.spec-examples {
  background: rgba(201,74,26,0.05); border: 1px solid rgba(201,74,26,0.12);
  padding: 1.2rem 1.5rem; margin-bottom: 1.5rem;
}

.spec-examples-label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember); margin-bottom: 0.8rem; }

.spec-example-items { display: flex; flex-direction: column; gap: 0.5rem; }

.spec-example-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.81rem; color: var(--fog); line-height: 1.5;
}

.spec-example-item::before { content: '→'; color: var(--ember); flex-shrink: 0; font-size: 0.7rem; margin-top: 2px; }

.spec-price-row {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
}

.spec-price { font-family: var(--f-display); font-size: 1.6rem; letter-spacing: 0.02em; color: var(--gold); line-height: 1; }
.spec-price small { display: block; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.15em; color: var(--fog); text-transform: uppercase; margin-top: 3px; }

/* Galéria spec */
.spec-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3px; background: var(--iron-light);
}

.spec-gal-item { aspect-ratio: 4/3; background: var(--iron-light); overflow: hidden; position: relative; cursor: pointer; }
.spec-gal-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.4s, filter 0.4s; }
.spec-gal-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.spec-gal-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; gap: 6px; justify-content: center; opacity: 0.2; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--fog); text-transform: uppercase; text-align: center; padding: 0.5rem; }

/* Referencie spec */
.spec-ref-card { background: var(--iron); padding: 1.5rem; border-right: 1px solid var(--iron-light); }
.spec-ref-card:last-child { border-right: none; }
.spec-ref-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }
.spec-ref-text { font-size: 0.8rem; color: var(--fog); line-height: 1.75; font-style: italic; margin-bottom: 0.7rem; }
.spec-ref-author { font-family: var(--f-mono); font-size: 0.6rem; color: var(--ember); letter-spacing: 0.12em; text-transform: uppercase; }

/* ═══ FAQ ═══ */
.faq { background: var(--iron); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
}

.faq-item {
  background: var(--iron); padding: 0;
  cursor: pointer; transition: background 0.22s;
  border: none; text-align: left; width: 100%;
}

.faq-item:hover,
.faq-item.open { background: var(--iron-mid); }

.faq-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.8rem; }

.faq-q-text {
  font-family: var(--f-display);
  font-size: 0.95rem; letter-spacing: 0.04em; color: var(--white); flex: 1; line-height: 1.2;
}

.faq-arrow {
  width: 22px; height: 22px; border: 1px solid rgba(201,74,26,0.35);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  transition: transform 0.3s, background 0.2s; color: var(--ember); font-size: 0.9rem;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--ember); color: var(--white); border-color: var(--ember); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.8rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.8rem 1.5rem; }
.faq-a p { font-size: 0.85rem; color: var(--fog); line-height: 1.85; border-top: 1px solid rgba(201,74,26,0.12); padding-top: 1rem; }
.faq-a p strong { color: var(--ash); font-weight: 500; }

/* ═══ KONTAKT ═══ */
.contact { background: var(--forge); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }

.contact-icon {
  width: 38px; height: 38px; border: 1px solid rgba(201,74,26,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ember);
}

.contact-item-label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); margin-bottom: 3px; }
.contact-item-value { font-size: 0.92rem; color: var(--ash); }

.contact-form { background: var(--iron); padding: 2.5rem; border: 1px solid var(--iron-light); }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); margin-bottom: 0.45rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--void); border: 1px solid var(--iron-light);
  color: var(--ash); padding: 0.75rem 1rem;
  font-family: var(--f-body); font-size: 0.88rem; font-weight: 300;
  outline: none; border-radius: 0; -webkit-appearance: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--ember); }

.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--void); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success { font-family: var(--f-display); font-size: 1.8rem; letter-spacing: 0.08em; color: var(--gold); }

/* ═══ PROJEKTOVÝ FORMULÁR ═══ */
.project-form-section { background: var(--iron-mid); }

.form-type-toggle {
  display: flex; gap: 0; margin-bottom: 2rem; border: 1px solid var(--iron-light); overflow: hidden;
}

.form-type-btn {
  flex: 1; padding: 0.9rem 1rem; background: var(--iron); border: none; cursor: pointer;
  font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fog); font-weight: 400; transition: all 0.2s; border-right: 1px solid var(--iron-light); text-align: center;
}

.form-type-btn:last-child { border-right: none; }
.form-type-btn.active { background: var(--ember); color: var(--white); }
.form-type-btn:hover:not(.active) { background: var(--iron-light); color: var(--ash); }

.form-panel { display: none; }
.form-panel.active { display: block; }

.pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pf-full { grid-column: 1 / -1; }

.pf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.pf-group label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); }
.pf-group label span { color: var(--ember); }
.pf-group input, .pf-group select, .pf-group textarea { background: var(--void); border: 1px solid var(--iron-light); color: var(--ash); padding: 0.72rem 1rem; font-family: var(--f-body); font-size: 0.87rem; font-weight: 300; outline: none; border-radius: 0; -webkit-appearance: none; transition: border-color 0.2s; width: 100%; }
.pf-group input:focus, .pf-group select:focus, .pf-group textarea:focus { border-color: var(--ember); }
.pf-group select option { background: var(--void); }
.pf-group textarea { height: 100px; resize: vertical; }
.pf-hint { font-family: var(--f-mono); font-size: 0.6rem; color: var(--fog); font-style: normal; letter-spacing: 0.05em; }

.pf-divider { grid-column: 1 / -1; border: none; border-top: 1px solid rgba(255,255,255,0.05); }
.pf-section-label { grid-column: 1 / -1; font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember); padding-top: 0.5rem; }

.pf-checkbox-group { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.4rem; }

.pf-checkbox { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.8rem; color: var(--fog); padding: 0.4rem 0.8rem; border: 1px solid var(--iron-light); background: var(--void); transition: all 0.2s; user-select: none; }
.pf-checkbox input[type="checkbox"] { display: none; }
.cb-box { width: 12px; height: 12px; border: 1px solid rgba(201,74,26,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.55rem; color: var(--ember); }
.pf-checkbox:has(input:checked) { border-color: var(--ember); background: rgba(201,74,26,0.07); color: var(--ash); }
.pf-checkbox:has(input:checked) .cb-box { background: var(--ember); color: var(--white); }

.pf-submit-row { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 0.5rem; }
.pf-submit-note { font-size: 0.78rem; color: var(--fog); line-height: 1.6; }
.pf-submit-note strong { color: var(--ash); display: block; font-weight: 500; margin-bottom: 2px; }

.pf-success { display: none; text-align: center; padding: 3rem 2rem; }
.pf-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.pf-success h3 { font-family: var(--f-display); font-size: 2rem; letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.5rem; }
.pf-success p { color: var(--fog); font-size: 0.9rem; }

/* ═══ PAGE HERO (podstránky) ═══ */
.page-hero {
  padding: 9rem 3rem 4rem;
  background: var(--forge);
  border-bottom: 1px solid var(--iron-light);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: attr(data-title);
  position: absolute; right: -0.02em; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.02em; line-height: 1; pointer-events: none; white-space: nowrap;
}

.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; }
.breadcrumb a { color: var(--fog); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ember); }
.breadcrumb span { color: var(--ember); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.page-hero h1 { font-family: var(--f-display); font-size: clamp(2.8rem, 7vw, 5rem); line-height: 0.95; letter-spacing: -0.01em; color: var(--white); margin-bottom: 1rem; }
.page-hero h1 em { color: var(--ember); font-style: normal; }
.page-hero p { font-size: 1rem; color: var(--fog); max-width: 500px; line-height: 1.8; }

/* ═══ TEASER GRID (domov) ═══ */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
}

/* 5 kariet: posledné 2 centrujeme cez wrapper */

/* 5 kariet: posledné 2 zarovnané na stred */


/* Ak je 5 kariet, posledné 2 zarovnáme na stred */







.teaser-card {
  text-decoration: none;
  min-height: 320px;
  background: var(--iron);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  text-decoration: none; position: relative; overflow: hidden;
  transition: background 0.25s;
}

.teaser-card:hover { background: var(--iron-mid); }

.teaser-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--ember);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}

.teaser-card:hover::after { transform: scaleX(1); }

.teaser-icon { font-size: 2rem; margin-bottom: 1rem; }
.teaser-label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember); margin-bottom: 0.4rem; }
.teaser-card h3 { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: 0.03em; color: var(--white); line-height: 1.05; margin-bottom: 0.7rem; flex: 1; }
.teaser-card p { font-size: 0.83rem; color: var(--fog); line-height: 1.75; margin-bottom: 1.2rem; }
.teaser-link { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ember); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.teaser-card:hover .teaser-link { gap: 0.8rem; }

/* ═══ SPECIAL TEASER ═══ */
.special-teaser {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  background: var(--iron-light);
  margin-top: 3rem;
}

.special-teaser-card {
  text-decoration: none;
  background: var(--iron);
  padding: 2rem 2rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
  text-decoration: none; transition: background 0.25s; position: relative;
}

.special-teaser-card:hover { background: var(--iron-light); }

.special-teaser-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--ember);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s ease;
}

.special-teaser-card:hover::before { transform: scaleY(1); }

.stc-icon { font-size: 2rem; flex-shrink: 0; }
.stc-label { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ember); margin-bottom: 4px; }
.stc-title { font-family: var(--f-display); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--white); line-height: 1.1; margin-bottom: 0.4rem; }
.stc-desc { font-size: 0.8rem; color: var(--fog); line-height: 1.7; }

/* ═══ PREČO / WHY ═══ */
.why { background: var(--iron-mid); }
.why-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.why-left p { color: var(--fog); font-size: 0.93rem; line-height: 1.85; margin-bottom: 1.2rem; }
.why-left p strong { color: var(--ash); font-weight: 500; }
.why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); background: var(--iron-light); }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  background: var(--ember);
  position: relative; overflow: hidden;
}

.cta-banner::before {
  content: '→';
  position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--f-display); font-size: 15rem; color: rgba(255,255,255,0.05);
  line-height: 1; pointer-events: none;
}

.cta-banner-inner {
  max-width: var(--max); margin: 0 auto; padding: 4rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
  position: relative; z-index: 1;
}

.cta-banner h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.02em; color: var(--white); line-height: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 0.6rem; font-size: 0.9rem; }

.btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--ember); text-decoration: none; padding: 0.85rem 2.2rem; font-family: var(--f-body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; border: 1px solid var(--white); transition: all 0.22s; cursor: pointer; }
.btn-cta-white:hover { background: transparent; color: var(--white); }

.btn-cta-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.85rem 2.2rem; font-family: var(--f-body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; border: 1px solid rgba(255,255,255,0.4); transition: all 0.22s; }
.btn-cta-ghost:hover { border-color: var(--white); color: var(--white); }

/* ═══ FOOTER ═══ */
footer {
  background: var(--void);
  border-top: 1px solid var(--iron-light);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}

.footer-brand { font-family: var(--f-display); font-size: 1.3rem; letter-spacing: 0.15em; color: var(--fog); }

.footer-links { display: flex; gap: 0; list-style: none; }

.footer-links a {
  display: block; padding: 0.4rem 1rem;
  color: var(--smoke); text-decoration: none; font-family: var(--f-mono);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.2s; border-right: 1px solid var(--iron-light);
}

.footer-links li:last-child a { border-right: none; }
.footer-links a:hover { color: var(--ember); }

.footer-copy { font-family: var(--f-mono); font-size: 0.6rem; color: var(--smoke); letter-spacing: 0.1em; }

/* ═══ WHATSAPP ═══ */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; }

.wa-bubble { background: var(--iron-mid); border: 1px solid rgba(201,74,26,0.25); color: var(--fog); font-family: var(--f-mono); font-size: 0.65rem; padding: 0.45rem 0.8rem; letter-spacing: 0.08em; white-space: nowrap; opacity: 0; transform: translateX(10px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }

.wa-float:hover .wa-bubble { opacity: 1; transform: translateX(0); }

.wa-btn { width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.25); transition: transform 0.2s, box-shadow 0.2s; animation: wa-pulse 3s ease-in-out infinite; }

.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.4); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.25); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.5); }
}

/* ═══ PODSTRÁNKY SLUŽIEB ═══ */
.service-page-hero {
  padding: 9rem 3rem 4rem;
  background: var(--void);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--iron-light);
}

.service-page-content { max-width: var(--max); margin: 0 auto; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  background: var(--iron-light);
}

.service-detail-img {
  aspect-ratio: 4/3;
  background: var(--iron-mid);
  overflow: hidden;
}

.service-detail-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }

.service-detail-text { background: var(--iron-mid); padding: 3rem; }

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3rem;
}

.service-photo-item { aspect-ratio: 4/3; background: var(--iron-mid); overflow: hidden; position: relative; }
.service-photo-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); transition: transform 0.5s, filter 0.4s; }
.service-photo-item:hover img { transform: scale(1.05); filter: grayscale(0%); }

.service-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0.25; color: var(--fog); font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; }

/* ═══ MOBILE ═══ */
@media (max-width: 1024px) {
  nav { padding: 0 1.5rem; }
  .nav-links li:not(:last-child):not(.nav-phone-li) { display: none; }
  .section-inner { padding: 4rem 1.5rem; }
  .hero-content { padding: 9rem 1.5rem 4rem; }
  .hero h1 { font-size: 3.5rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.2rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .mat-grid { grid-template-columns: 1fr; }
  .surface-strip { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .spec-layout { grid-template-columns: 1fr; }
  .spec-gallery { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-portrait { min-height: 280px; }
  .founder-content { padding: 2rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-pillars { grid-template-columns: 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .materials-intro { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; } /* 3 items - tretí sa roztiahne */
  .teaser-grid { grid-template-columns: 1fr; }
  .special-teaser { grid-template-columns: 1fr; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-full { grid-column: 1; }
  .pf-section-label { grid-column: 1; }
  .pf-checkbox-group { grid-column: 1; }
  .pf-submit-row { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
  .form-type-toggle { flex-direction: column; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .audience-divider-text { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-photo-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .about-badge { display: none; }
}

  /* ═══ LANGUAGE SWITCHER ═══ */
  .nav-lang {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--fog) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s !important;
    text-decoration: none;
  }
  .nav-lang:hover {
    border-color: rgba(181,71,26,0.5) !important;
    color: var(--ash) !important;
  }
  .lang-flag { font-size: 0.9rem; }

  /* ═══ BKL LOGO ═══ */
  .nav-logo a { display: flex; align-items: center; gap: 10px; }
  .nav-logo img { height: 44px; width: auto; filter: drop-shadow(0 0 8px rgba(201,74,26,0.35)); transition: filter 0.2s; }
  .nav-logo img:hover { filter: drop-shadow(0 0 12px rgba(201,74,26,0.55)); }
  .footer-brand img { opacity: 0.7; height: 30px; transition: opacity 0.2s; }
  .footer-brand img:hover { opacity: 1; }

/* ═══ BACKWARDS COMPATIBILITY — stare CSS premenne ═══ */
:root {
  --rust:          var(--ember);
  --rust-light:    var(--ember-hot);
  --iron-mid:      #222222;
  --iron-light:    #2e2e2e;
  --font-display:  'Archivo Black', sans-serif;
  --font-body:     'Archivo', sans-serif;
  --color-bg:      var(--void);

  /* Nav fixes */
  --nav-bg:        rgba(10,10,10,0.95);
}

/* Fix nav active underline color */
.nav-links a.active { color: var(--ember) !important; }
.nav-links a.active::after { background: var(--ember); }

/* Zruš podčiarknutie na všetkých linkoch v nadpisoch a page-hero */
.page-hero h1 a,
.page-hero h2 a,
.section-title a,
h1 a, h2 a, h3 a {
  text-decoration: none !important;
  color: inherit !important;
}

/* ═══ LINK RESET PRE KARTY ═══ */
a.teaser-card,
a.special-teaser-card,
a.service-card,
a.case-card,
a.audience-cta,
a.spec-tab,
.nav-logo a,
a[class*="card"],
a[class*="btn"] {
  text-decoration: none !important;
}
a.teaser-card h3,
a.special-teaser-card h3,
a.service-card h3 {
  color: var(--white, #f0ebe4) !important;
}

/* ── TEASER CARD CTA ─────────────────────────────── */
.teaser-card--cta {
  background: var(--ember) !important;
  border: none;
}
.teaser-card--cta .teaser-label { color: rgba(255,255,255,0.7); }
.teaser-card--cta h3 { color: #fff; }
.teaser-card--cta p { color: rgba(255,255,255,0.8); }
.teaser-card--cta .teaser-link { color: #fff; }
.teaser-card--cta .teaser-icon { font-style: normal; font-size: 2rem; }
.teaser-card--cta:hover { background: #b5421a !important; }

/* ══════════════════════════════════════════
   BLOG
══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--forge);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.blog-card:hover { background: var(--iron-light); }

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--iron-light);
}
.blog-card-img .img-placeholder { height: 100%; min-height: 160px; }
.blog-img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}
.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}
.blog-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--fog);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ash);
  line-height: 1.3;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.blog-card-perex {
  color: var(--fog);
  font-size: 0.87rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ember);
}

/* Článok */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}
.article-body {
  max-width: 680px;
}
.article-body p {
  color: var(--fog);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}
.article-body h3 {
  color: var(--ash);
  font-size: 1.1rem;
  margin: 2rem 0 0.8rem;
}
.article-sidebar { position: sticky; top: 100px; }
.sidebar-box {
  background: var(--forge);
  padding: 1.5rem;
  margin-bottom: 0;
}
.sidebar-box-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,74,26,0.2);
}
.sidebar-link {
  display: block;
  color: var(--fog);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.sidebar-link:hover { color: var(--ash); }
.sidebar-link:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
