/* =====================================================
   archBO — Redesign (Varianta C: Nature Full)
   Typo: Fraunces (headings) + Inter (body)
   Layout: 90% viewport, max 1600px
   ===================================================== */

:root {
  /* Barvy – Varianta C */
  --bg:          #FBF7F2;
  --bg-alt:      #F4EFE8;
  --surface:     #FFFFFF;
  --ink:         #1F1C18;
  --ink-soft:    #3F3A35;
  --ink-light:   #85807B;
  --accent:      #A0634A;       /* terakota */
  --accent-hover:#8A4F38;
  --accent-light:#C47A5A;
  --accent-bg:   rgba(160,99,74,.10);
  --forest:      #4A5D3A;
  --forest-light:#6B8E5A;
  --sand:        #D4B99A;
  --sand-soft:   #E8D9C4;
  --stone:       #EAE5DF;
  --noir:        #1F1C18;
  --warning:     #B85C4C;

  /* Legacy aliasy (pro plynulý přechod ve starých selektorech) */
  --bg2:         var(--bg-alt);
  --bg3:         var(--stone);
  --border:      var(--stone);
  --shadow:      rgba(31,28,24,.08);

  /* Typografie */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-h1: clamp(2.6rem, 5vw, 4.4rem);
  --fs-h2: clamp(2rem, 4vw, 3.2rem);
  --fs-h3: 1.25rem;
  --fs-body: 1.02rem;
  --fs-small: .88rem;
  --fs-tag: .72rem;
  --lh-heading: 1.1;
  --lh-body: 1.7;

  /* Layout */
  --wrap-max: 1600px;
  --wrap-pad: 5vw;
  --content-wide: 1280px;
  --content-narrow: 720px;
  --content-reading: 640px;
  --max: var(--wrap-max); /* legacy alias */

  /* Geometrie */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* Stíny */
  --shadow-sm: 0 2px 12px rgba(31,28,24,.05);
  --shadow-md: 0 8px 32px rgba(31,28,24,.08);
  --shadow-lg: 0 16px 48px rgba(31,28,24,.12);

  /* Animace */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: .25s;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--accent); }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: var(--lh-heading);
  letter-spacing: -.025em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); letter-spacing: -.035em; }
h2 { font-size: var(--fs-h2); }
h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h3);
  letter-spacing: -.01em;
}
h1 em, h2 em, h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
p { color: var(--ink-soft); }

/* =====================================================
   LAYOUT — wrap / container
   ===================================================== */
.wrap         { width: min(90%, var(--wrap-max));   margin-inline: auto; }
.wrap-wide    { width: min(90%, var(--content-wide)); margin-inline: auto; }
.wrap-narrow  { width: min(90%, var(--content-narrow)); margin-inline: auto; }
.wrap-reading { width: min(90%, var(--content-reading)); margin-inline: auto; }
.container    { width: min(90%, var(--wrap-max));   margin-inline: auto; } /* legacy alias */

section { padding: clamp(64px, 9vw, 120px) 0; }

/* =====================================================
   TAG PILL
   ===================================================== */
.tag, .section-label {
  display: inline-block;
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 14px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-bg);
  border-radius: 100px;
  margin-bottom: 20px;
}
.tag.on-dark {
  color: var(--sand);
  background: rgba(212,185,154,.14);
  border-color: rgba(212,185,154,.22);
}
.tag.forest {
  color: var(--forest);
  background: rgba(74,93,58,.10);
  border-color: rgba(74,93,58,.16);
}
.section-label { background: transparent; border: none; padding: 0; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-size: .96rem;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(160,99,74,.3); }
.btn-ghost   { background: transparent; color: var(--ink); border-color: var(--stone); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }
.btn-white   { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); color: var(--ink); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* =====================================================
   NAV
   ===================================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,242,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(31,28,24,.06);
}
.nav-inner {
  width: min(90%, var(--wrap-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img { height: 56px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta.btn { padding: 10px 22px; font-size: .88rem; }
.nav-cta.btn-primary { color: #fff; }
.nav-cta.btn-primary:hover { color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; display: block; }

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border-bottom: 1px solid var(--stone);
    padding: 20px 5vw 24px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}

/* =====================================================
   PAGE HERO (subpages)
   ===================================================== */
.page-hero {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 7vw, 88px);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, var(--bg-alt) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,185,154,.4), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  position: relative;
}
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }
.page-hero h1 { margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--accent); font-weight: 300; }
.page-hero .lead,
.page-hero > .container > p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}
.page-hero-mini {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.mini-stat .num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--forest);
  line-height: 1;
}
.mini-stat .lbl {
  font-size: .78rem;
  color: var(--ink-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

/* =====================================================
   HOME — HERO
   ===================================================== */
#hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 120px);
  background: var(--bg);
  overflow: hidden;
}
#hero .container { position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-text h1 { margin-bottom: 28px; }
.hero-text h1 em { color: var(--accent); font-style: italic; font-weight: 300; }
.hero-text p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-text p strong { color: var(--ink); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(31,28,24,.88);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px 18px 14px;
  border-radius: var(--radius-sm);
  font-size: .84rem;
  max-width: 260px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.hero-badge .badge-meta {
  color: var(--sand);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* =====================================================
   TRUST BAR (pod hero)
   ===================================================== */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--surface);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
@media (max-width: 780px) { .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; } }
.trust-item .num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-item .lbl {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 600;
}

/* =====================================================
   EMPATHY (dark)
   ===================================================== */
#empathy {
  background: var(--noir);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#empathy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(160,99,74,.18), transparent 70%);
  pointer-events: none;
}
.empathy-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  position: relative;
  z-index: 1;
  align-items: start;
}
@media (max-width: 900px) { .empathy-inner { grid-template-columns: 1fr; } }
#empathy h2 { color: #fff; margin: 12px 0 28px; }
#empathy p { color: rgba(255,255,255,.75); max-width: 540px; }

.empathy-tag {
  display: inline-block;
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(212,185,154,.14);
  border: 1px solid rgba(212,185,154,.22);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.quote-block {
  border-left: 3px solid var(--accent-light);
  padding: 8px 0 8px 22px;
  margin: 28px 0;
}
.quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}
.stat-row { display: flex; gap: 48px; margin-top: 36px; flex-wrap: wrap; }
.stat-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--sand);
  display: block;
}
.stat-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

.belief-list { list-style: none; display: grid; gap: 18px; }
.belief-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}
.belief-item:hover {
  background: rgba(160,99,74,.1);
  border-color: rgba(196,122,90,.3);
  transform: translateX(4px);
}
.belief-icon {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
}
.belief-text strong {
  display: block;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 4px;
}
.belief-text p { color: rgba(255,255,255,.68); font-size: .94rem; margin: 0; }

/* =====================================================
   HOW
   ===================================================== */
#how { background: var(--bg); }
.how-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.how-header h2 { margin: 14px 0; }
.how-header p { color: var(--ink-soft); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 44px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--stone);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 22px;
  transition: all var(--duration) var(--ease);
}
.step:hover .step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.05);
}
.step h3 { margin-bottom: 10px; color: var(--ink); }
.step p  { color: var(--ink-soft); font-size: .96rem; }

/* =====================================================
   SERVICES (home preview + sluzby page)
   ===================================================== */
#services { background: var(--bg-alt); }
.services-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.services-header h2 { margin: 14px 0; }
.services-header p { color: var(--ink-soft); }

.services-grid,
.sluzby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.sluzby-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 2.5rem; }
@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-grid, .sluzby-grid { grid-template-columns: 1fr; }
}

.service-card, .sluzba-card {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.service-card:hover, .sluzba-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sand);
}
.service-card.featured {
  background: var(--noir);
  color: #fff;
  border-color: var(--noir);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.service-card.featured:hover { transform: translateY(-11px); }
.service-card.featured h3,
.service-card.featured .price,
.service-card.featured .service-price { color: #fff; }
.service-card.featured p,
.service-card.featured > p { color: rgba(255,255,255,.72); }
.service-card.featured .price-note,
.service-card.featured .service-price-note { color: rgba(255,255,255,.62); }
.service-card.featured .includes li,
.service-card.featured .service-includes li { color: rgba(255,255,255,.88); }
.service-card.featured hr,
.service-card.featured .service-divider { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.14); }

.featured-badge, .feat-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.svc-icon, .service-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 20px;
}
.service-card.featured .svc-icon,
.service-card.featured .service-icon {
  background: rgba(196,122,90,.18);
  color: var(--accent-light);
}
.service-card h3, .sluzba-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.service-card > p {
  font-size: .94rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
  min-height: 3.5em;
}
.service-divider, .service-card hr {
  border: 0;
  height: 1px;
  background: var(--stone);
  margin: 0 0 20px;
}
.price, .service-price, .sluzba-price {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}
.sluzba-price small { font-size: 1rem; color: var(--ink-light); font-family: var(--font-sans); font-weight: 400; }
.price-note, .service-price-note, .sluzba-note {
  font-size: .78rem;
  color: var(--ink-light);
  display: block;
  margin-bottom: 22px;
}
.includes, .service-includes, .sluzba-includes {
  list-style: none;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.includes li, .service-includes li, .sluzba-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.includes li::before, .service-includes li::before {
  content: '';
  flex: 0 0 16px;
  height: 16px;
  margin-top: 3px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5D3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.service-card.featured .includes li::before,
.service-card.featured .service-includes li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C47A5A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
/* Legacy check span */
.sluzba-includes li span.ic, .service-includes .check, .check {
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}
.service-card.featured .check { color: var(--accent-light); }
.service-card .btn, .service-cta, .sluzba-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.sluzba-free {
  background: rgba(74,93,58,.14);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Proces steps (sluzby page) */
.proces-steps { margin-top: 2.5rem; }
.proces-item {
  display: flex;
  gap: 1.8rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--stone);
}
.proces-item:last-child { border-bottom: none; }
.proces-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  border: 1px solid var(--accent-bg);
}
.proces-text h3 { margin-bottom: .4rem; font-size: 1.1rem; font-family: var(--font-serif); font-weight: 400; }
.proces-text p  { font-size: .96rem; color: var(--ink-soft); }

/* =====================================================
   MINI FAQ (home)
   ===================================================== */
#mini-faq { background: var(--bg); }
.mini-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 2.5rem;
}
@media (max-width: 760px) { .mini-faq-grid { grid-template-columns: 1fr; } }
.mini-faq-item {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.mini-faq-item h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.mini-faq-item p { font-size: .94rem; color: var(--ink-soft); }

/* =====================================================
   REFERENCES
   ===================================================== */
#reference { background: var(--bg-alt); }
.reference-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.reference-header h2 { margin: 14px 0; }
.reference-header p  { color: var(--ink-soft); }
.reference-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 28px 0 0;
  flex-wrap: wrap;
}
.reference-stats .mini-stat { text-align: center; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
@media (max-width: 980px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--duration) var(--ease);
}
.review-card:hover {
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.review-stars { color: var(--accent); letter-spacing: 2px; font-size: 1.05rem; }
.review-card p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.review-foot { margin-top: auto; padding-top: 6px; }
.review-foot strong { color: var(--ink); font-family: var(--font-sans); font-weight: 600; font-size: .96rem; display: block; }
.review-foot span { color: var(--ink-light); font-size: .82rem; margin-top: 2px; display: block; }

/* =====================================================
   PORTFOLIO — FILTERS
   ===================================================== */
.filters {
  position: sticky;
  top: 76px;
  z-index: 50;
  background: rgba(251,247,242,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}
.filter-inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  flex-wrap: wrap;
}
.filter-btn {
  font: inherit;
  font-size: .9rem;
  font-weight: 500;
  padding: 10px 18px;
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--stone);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--noir);
  color: #fff;
  border-color: var(--noir);
}
.filter-btn .cnt {
  display: inline-block;
  margin-left: 6px;
  opacity: .6;
  font-size: .82rem;
}

/* =====================================================
   SECTION DIV (portfolio headings)
   ===================================================== */
.section-div, .portfolio-divider {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-div h2, .portfolio-divider h2 { margin-bottom: 14px; }
.section-div p, .portfolio-divider p { color: var(--ink-soft); }

/* =====================================================
   PORTFOLIO — PRIKLAD CARD (úpravy dispozic)
   ===================================================== */
.priklad-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone);
  margin-bottom: 48px;
}
.priklad-hdr, .priklad-header {
  background: var(--noir);
  color: #fff;
  padding: 32px clamp(24px, 4vw, 48px);
  position: relative;
}
.priklad-hdr::after, .priklad-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(circle at 90% 30%, rgba(160,99,74,.16), transparent 55%);
  pointer-events: none;
}
.priklad-hdr-tag, .priklad-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(196,122,90,.16);
  border: 1px solid rgba(196,122,90,.26);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.priklad-hdr h3, .priklad-header h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 820px;
  line-height: 1.2;
}
.priklad-body { padding: clamp(24px, 4vw, 48px); }

/* =====================================================
   BEFORE / AFTER SLIDER
   ===================================================== */
.ba-wrap { margin-bottom: 32px; }
.ba-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ba-labels .before { color: var(--warning); }
.ba-labels .after  { color: var(--forest); }

.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  user-select: none;
  touch-action: pan-y;
  background: var(--stone);
  cursor: ew-resize;
  aspect-ratio: 16 / 10;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  pointer-events: none;
}
.ba-slider .ba-img-after { position: relative; display: block; }
.ba-slider .ba-img-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-slider .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(31,28,24,.2), 0 0 20px rgba(31,28,24,.3);
}
.ba-slider .ba-handle-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(31,28,24,.3);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -2px;
}
.ba-slider .ba-corner {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.ba-slider .ba-corner-left  { left: 14px;  background: rgba(184,92,76,.9);  color: #fff; }
.ba-slider .ba-corner-right { right: 14px; background: rgba(74,93,58,.9);    color: #fff; }

.ba-hint {
  text-align: center;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--ink-light);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* ── ISSUES GRID ── */
.issues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: 36px;
}
@media (max-width: 800px) { .issues-grid { grid-template-columns: 1fr; } }
.issues-col {
  background: var(--bg);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--stone);
}
.issues-col.bad  { border-left: 3px solid var(--warning); }
.issues-col.good { border-left: 3px solid var(--forest); }
.issues-col h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.issues-col.bad h4  { color: var(--warning); }
.issues-col.good h4 { color: var(--forest); }
.issues-list { list-style: none; display: grid; gap: 14px; }
.issues-list li {
  display: flex;
  gap: 12px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.issues-list .ic {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 1px;
}
.issues-list .ic.bad  { background: rgba(184,92,76,.14); color: var(--warning); }
.issues-list .ic.good { background: rgba(74,93,58,.14); color: var(--forest); }

/* ── DELIVERY BOX ── */
.delivery, .priklad-delivery {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  margin-top: 36px;
}
.delivery-lbl, .priklad-delivery-label, .delivery-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.delivery-grid, .priklad-delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.delivery-item, .priklad-delivery-item {
  display: flex;
  gap: 14px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.delivery-item .di, .priklad-delivery-item .di {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--stone);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: .88rem;
}
.delivery-item strong, .priklad-delivery-item strong { color: var(--ink); font-weight: 600; }

/* =====================================================
   PORTFOLIO — ARCHITEKTONICKÁ STUDIE CARD
   ===================================================== */
.studie-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--stone);
  margin-bottom: 48px;
}
.studie-hdr {
  background: var(--noir);
  color: #fff;
  padding: 32px clamp(24px, 4vw, 48px);
  position: relative;
}
.studie-hdr::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(circle at 80% 30%, rgba(212,185,154,.1), transparent 55%);
  pointer-events: none;
}
.studie-hdr-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(212,185,154,.14);
  border: 1px solid rgba(212,185,154,.22);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.studie-hdr h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  max-width: 820px;
  line-height: 1.2;
}
.studie-meta {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 1;
}
.studie-meta strong { color: rgba(255,255,255,.9); font-weight: 500; }

.studie-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  padding: clamp(24px, 3vw, 44px);
}
@media (max-width: 900px) { .studie-body { grid-template-columns: 1fr; } }

/* Galerie: první 2 obrázky velké (pod sebou), zbytek menší ve 2 sloupcích */
.studie-gallery, .project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.studie-gallery > div:nth-child(1),
.studie-gallery > div:nth-child(2),
.project-gallery > div:nth-child(1),
.project-gallery > div:nth-child(2) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--stone);
}
.studie-gallery > div:nth-child(n+3),
.project-gallery > div:nth-child(n+3) {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  background: #fff;
}
/* Lichý zbytkový obrázek: držet půl šířky, centrovat */
.studie-gallery > div:nth-child(n+3):last-child:nth-child(odd),
.project-gallery > div:nth-child(n+3):last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
  margin-inline: auto;
}
.studie-gallery img, .project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.studie-gallery > div:nth-child(n+3) img,
.project-gallery > div:nth-child(n+3) img {
  object-fit: contain;
  padding: 10px;
}
.studie-gallery > div:hover img,
.project-gallery > div:hover img { transform: scale(1.04); }

.studie-desc p, .project-desc p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-size: .98rem;
  line-height: 1.7;
}
.studie-pills, .project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.pill, .project-tag-item {
  font-size: .78rem;
  padding: 6px 12px;
  background: var(--sand-soft);
  color: var(--ink-soft);
  border-radius: 100px;
  font-weight: 500;
}

/* =====================================================
   ABOUT (home + o-mne page)
   ===================================================== */
#about { background: var(--bg); }
.about-inner, .omne-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.omne-grid { grid-template-columns: 1fr 1.5fr; align-items: start; }
@media (max-width: 900px) {
  .about-inner, .omne-grid { grid-template-columns: 1fr; }
}

.photo-frame, .portrait-box {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--bg-alt);
}
.photo-frame img, .portrait-box img, .portrait-img, .photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,28,24,.5), transparent 40%);
  pointer-events: none;
}
.photo-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 1;
}
.photo-caption strong { display: block; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; }
.photo-caption span   { font-size: .82rem; color: var(--sand); letter-spacing: .06em; }

.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--ink-soft); margin-bottom: 14px; max-width: 580px; }
.about-values { margin-top: 28px; display: grid; gap: 14px; }
.value-row { display: flex; gap: 12px; align-items: flex-start; }
.value-dot {
  flex: 0 0 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest);
  margin-top: 10px;
}
.value-row p { margin: 0; font-size: .96rem; }

/* Credentials & values-grid (o-mne) */
.credentials { display: flex; flex-direction: column; gap: .6rem; margin: 1.4rem 0 1.8rem; }
.cred-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .94rem;
  color: var(--ink-soft);
}
.cred-icon {
  color: var(--accent);
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-item {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all var(--duration) var(--ease);
}
.value-item:hover { border-color: var(--sand); box-shadow: var(--shadow-sm); }
.value-item .ico { font-size: 1.4rem; margin-bottom: .6rem; color: var(--accent); }
.value-item h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: .35rem;
  color: var(--ink);
}
.value-item p { font-size: .9rem; color: var(--ink-soft); }

/* =====================================================
   FAQ (home accordion + full page)
   ===================================================== */
#faq-home { background: var(--bg-alt); }
.faq-header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.faq-header h2 { margin: 14px 0; }
.faq-header p  { color: var(--ink-soft); }

.faq-list, .faq-full-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-full-list { margin-top: 2rem; }
.faq-item, .faq-full-item {
  border-bottom: 1px solid var(--stone);
}
.faq-item:first-child, .faq-full-item:first-child { border-top: 1px solid var(--stone); }

.faq-q, .faq-full-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  transition: color var(--duration) var(--ease);
}
.faq-q:hover, .faq-full-q:hover { color: var(--accent); }
.faq-full-q h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: inherit;
  margin: 0;
}
.faq-plus, .faq-arrow, .faq-icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  position: relative;
  transition: transform var(--duration) var(--ease);
  color: var(--accent);
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  background: var(--accent);
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
  transition: opacity var(--duration) var(--ease);
}
.faq-plus::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.open .faq-plus::after,
.faq-full-item.open .faq-plus::after { opacity: 0; }
.faq-arrow { font-size: 1.3rem; line-height: 1; text-align: center; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a, .faq-full-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
  color: var(--ink-soft);
  font-size: .98rem;
}
.faq-item.open .faq-a, .faq-full-item.open .faq-full-a { max-height: 800px; }
.faq-a-inner { padding: 0 8px 28px; max-width: 680px; }
.faq-full-a { padding: 0 8px; }
.faq-full-item.open .faq-full-a { padding: 0 8px 24px; }

/* =====================================================
   CTA STRIP
   ===================================================== */
#cta-strip, .cta-band {
  background: var(--forest);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.cta-band { text-align: center; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 32px;
  align-items: center;
}
@media (max-width: 780px) { .cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
#cta-strip h2, .cta-band h2 { color: #fff; margin-bottom: 10px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
#cta-strip p, .cta-band p {
  color: rgba(255,255,255,.82);
  margin: 0 auto;
  max-width: 520px;
  font-size: 1.02rem;
}
.cta-band p { margin: 0 auto 28px; }

/* =====================================================
   KONTAKT
   ===================================================== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
  margin-top: 2rem;
}
@media (max-width: 900px) { .kontakt-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ico {
  width: 46px; height: 46px;
  background: var(--accent-bg);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-light);
  margin-bottom: .2rem;
}
.contact-item p { font-size: .98rem; color: var(--ink); font-weight: 500; margin: 0; }
.contact-item a { color: var(--ink); }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  margin-bottom: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--stone);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color var(--duration) var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--ink-light); margin-bottom: 1.3rem; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--noir);
  color: rgba(255,255,255,.75);
  padding: 72px 0 28px;
}
.footer-inner {
  width: min(90%, var(--wrap-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
.footer-logo { display: inline-block; margin-bottom: 16px; text-decoration: none; }
.footer-logo-img { height: 54px; width: auto; display: block; }
.footer-desc {
  color: rgba(255,255,255,.6);
  font-size: .94rem;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 14px;
}
.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a {
  color: rgba(255,255,255,.55);
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transition: all var(--duration) var(--ease);
}
.footer-social a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-bg);
}
footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: .94rem;
  text-decoration: none;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  width: min(90%, var(--wrap-max));
  margin-inline: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 6px; text-align: center; } }

/* =====================================================
   LIGHTBOX
   ===================================================== */
#lightbox, .lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,13,11,.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
#lightbox.open, .lb-overlay.open { display: flex; }
.lb-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 95vw;
  max-height: 95vh;
}
#lb-img, .lb-img {
  max-width: 82vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  background: #fff;
  display: block;
}
.lb-close, .lb-prev, .lb-next, .lb-btn {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  backdrop-filter: blur(8px);
  font-size: 1.6rem;
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover, .lb-btn:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.35);
}
.lb-close { top: 24px; right: 24px; position: absolute; }
.lb-prev  { left: 24px;  top: 50%; transform: translateY(-50%); position: absolute; }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); position: absolute; }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
body.lb-locked { overflow: hidden; }

/* =====================================================
   SCROLL FADE-IN
   ===================================================== */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
}

/* =====================================================
   SLUŽBY — tag + card header/body (legacy markup)
   ===================================================== */
.sluzba-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stone);
}
.sluzba-body { display: flex; flex-direction: column; flex: 1; }
.stag {
  display: inline-block;
  align-self: flex-start;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* Dark/featured service card — parity with .service-card.featured */
.sluzba-card.featured {
  background: var(--noir);
  color: #fff;
  border-color: var(--noir);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.sluzba-card.featured:hover { transform: translateY(-11px); border-color: var(--noir); }
.sluzba-card.featured h3,
.sluzba-card.featured .sluzba-price { color: #fff; }
.sluzba-card.featured .sluzba-price small,
.sluzba-card.featured .sluzba-note { color: rgba(255,255,255,.62); }
.sluzba-card.featured > .sluzba-body > p { color: rgba(255,255,255,.78); }
.sluzba-card.featured .sluzba-includes li { color: rgba(255,255,255,.88); }
.sluzba-card.featured .sluzba-header {
  border-bottom-color: rgba(255,255,255,.14);
}
.sluzba-card.featured .stag {
  background: rgba(196,122,90,.18);
  color: var(--accent-light);
}

/* =====================================================
   KONTAKT — supplementary
   ===================================================== */
.kontakt-note {
  margin-top: 2.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--stone);
  border-radius: var(--radius-sm);
}
.kontakt-note p {
  margin: 0;
  font-size: .95rem;
  color: var(--ink-soft);
}
.kontakt-note a { color: var(--accent); }

.form-help { color: var(--ink-light); font-size: .78rem; margin-top: 4px; }
.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: .95rem;
}
.form-msg.is-success {
  background: #edf5e8;
  color: #355a23;
  border: 1px solid #c4d9b4;
}
.form-msg.is-error {
  background: #fbece8;
  color: #a04033;
  border: 1px solid #e9c0b6;
}
.btn-block { width: 100%; }

/* =====================================================
   UTILS
   ===================================================== */
.hide { display: none !important; }
.center { text-align: center; }

/* =====================================================
   RESPONSIVE GLOBAL
   ===================================================== */
@media (max-width: 900px) {
  .empathy-inner,
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner  { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .stat-row { flex-direction: column; gap: 20px; }
}
