:root {
  --navy-900: #0b1120;
  --navy-800: #0f1626;
  --navy-700: #16213a;
  --navy-600: #1f2d4d;
  --ink: #1a1f2e;
  --paper: #f7f5f1;
  --paper-2: #efece5;
  --white: #ffffff;
  --text: #232838;
  --text-soft: #5b6273;
  --gold: #c9a14a;
  --gold-soft: #e3c987;
  --gold-deep: #a9842f;
  --line: rgba(20, 28, 48, 0.12);
  --line-light: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(11, 17, 32, 0.06);
  --shadow-md: 0 18px 40px -18px rgba(11, 17, 32, 0.35);
  --shadow-lg: 0 40px 80px -30px rgba(11, 17, 32, 0.55);
  --maxw: 1200px;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); color: var(--text); background: var(--paper);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.14; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before { background: var(--gold-soft); }

.stars { color: var(--gold); letter-spacing: 1px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 16px; padding: 15px 28px; border-radius: 999px;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #2a2207; box-shadow: 0 14px 30px -12px rgba(201,161,74,0.7); }
.btn--primary:hover { box-shadow: 0 20px 38px -12px rgba(201,161,74,0.85); }
.btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--lg { font-size: 17px; padding: 17px 34px; }
.btn--block { width: 100%; }

/* Top utility bar */
.topbar { background: var(--navy-900); color: rgba(255,255,255,0.78); font-size: 13.5px; border-bottom: 1px solid var(--line-light); }
.topbar__inner { display: flex; align-items: center; gap: 20px; min-height: 42px; }
.topbar__rating { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__rating strong { color: #fff; }
.topbar__rating svg { color: var(--gold-soft); flex: none; }
.topbar__spacer { margin-left: auto; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar__item svg { color: var(--gold-soft); }
.lang { display: inline-flex; gap: 4px; align-items: center; }
.lang a { padding: 3px 8px; border-radius: 6px; font-weight: 600; }
.lang a[aria-current="true"] { background: rgba(255,255,255,0.12); color: #fff; }
.lang a:hover { color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(11,17,32,0.9); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line-light); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 74px; }
/* Horní lišta i hlavička dostanou trochu víc šířky, aby se navigace + telefon + CTA vešly */
.topbar .container, .site-header .container { max-width: 1280px; }
.logo { display: flex; flex-direction: column; line-height: 1.05; color: var(--white); font-family: var(--serif); }
.logo strong { font-weight: 600; font-size: 21px; letter-spacing: 0.02em; white-space: nowrap; }
.logo span { white-space: nowrap; }
.logo span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav__links { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: rgba(255,255,255,0.82); font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; white-space: nowrap; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background: var(--gold); transition: width .25s ease; }
.nav__links a:hover { color: #fff; } .nav__links a:hover::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 16px; }
.header-phone { color: var(--white); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.header-phone svg { color: var(--gold-soft); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }

/* Hero */
.hero { position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(1200px 600px at 82% -10%, rgba(201,161,74,0.18), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-700) 55%, var(--navy-800)); }
.hero::after { content:""; position:absolute; inset:0; pointer-events:none; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; opacity:.5; mask-image: linear-gradient(180deg, #000, transparent 75%); }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 54px; align-items: center; padding: 84px 0 90px; }
.hero__badge { display:inline-flex; align-items:center; gap:10px; padding:8px 16px; border:1px solid var(--line-light); border-radius:999px; font-size:13.5px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.hero__badge .dot { width:8px; height:8px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 4px rgba(74,222,128,0.18); }
.hero h1 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--gold-soft); }
.hero__lead { font-size: 19px; color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-light); list-style: none; padding-left: 0; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: rgba(255,255,255,0.85); }
.hero__trust svg { color: var(--gold-soft); flex: none; }

/* Hero side card */
.hero-card { background: rgba(255,255,255,0.97); color: var(--text); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.6); }
.hero-card__head { display: flex; align-items: center; gap: 14px; }
.hero-card__avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--gold-soft); }
.hero-card__head h3 { font-size: 18px; } .hero-card__head p { font-size: 13px; color: var(--text-soft); }
.hero-card__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 12px; }
.hero-card__list li { display: flex; gap: 11px; font-size: 14.5px; align-items: flex-start; }
.hero-card__list svg { color: var(--gold-deep); flex: none; margin-top: 2px; }
.hero-card .btn { margin-top: 22px; }
.hero-card__note { font-size: 12.5px; color: var(--text-soft); text-align: center; margin-top: 12px; }

/* Sections */
section { scroll-margin-top: 116px; }
.section { padding: 92px 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--navy-800); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-top: 16px; }
.section-head p { color: var(--text-soft); font-size: 18px; margin-top: 16px; }
.section--dark .section-head p { color: rgba(255,255,255,0.72); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Practice grid (Kohen-style) */
.practice-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.practice-cats button { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text-soft); background: var(--white); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; cursor: pointer; transition: all .2s ease; }
.practice-cats button:hover { border-color: var(--gold); color: var(--gold-deep); }
.practice-cats button.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.practice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; cursor: pointer; transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease; display: flex; flex-direction: column; }
.pcard::before { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width .3s ease; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,161,74,0.45); }
.pcard:hover::before { width: 100%; }
.pcard--featured { border-color: rgba(201,161,74,0.55); box-shadow: 0 22px 46px -26px rgba(201,161,74,0.55); }
.pcard--featured::before { width: 100%; }
.pcard__tag { position: absolute; top: 16px; right: 16px; display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #2a2207; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.pcard__icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(150deg, var(--navy-700), var(--navy-600)); color: var(--gold-soft); margin-bottom: 18px; }
.pcard__cat { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); }
.pcard h3 { font-size: 20px; margin-top: 6px; }
.pcard p { color: var(--text-soft); font-size: 15px; margin-top: 10px; flex: 1; }
.pcard__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-weight: 600; font-size: 14.5px; color: var(--navy-700); }
.pcard__more svg { transition: transform .2s ease; }
.pcard:hover .pcard__more { color: var(--gold-deep); }
.pcard:hover .pcard__more svg { transform: translate(2px,-2px); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(11,17,32,0.6); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 40px 20px; overflow-y: auto; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 22px; max-width: 720px; width: 100%; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; animation: pop .28s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__head { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; padding: 30px 34px; }
.modal__head .pcard__cat { color: var(--gold-soft); }
.modal__head h3 { font-size: 27px; margin-top: 8px; }
.modal__head p { color: rgba(255,255,255,0.78); margin-top: 12px; font-size: 16px; }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.14); color: #fff; font-size: 20px; cursor: pointer; transition: background .2s ease; }
.modal__close:hover { background: rgba(255,255,255,0.28); }
.modal__body { padding: 30px 34px 34px; }
.modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.modal__col h4 { font-size: 16px; color: var(--navy-700); display: flex; align-items: center; gap: 8px; }
.modal__col h4 svg { color: var(--gold-deep); }
.modal__col ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 9px; }
.modal__col li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--text); }
.modal__col li::before { content:""; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; border:2px solid var(--gold); }
.modal__key { margin-top: 26px; padding: 20px 22px; background: var(--paper-2); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.modal__key h4 { font-size: 15px; margin-bottom: 8px; }
.modal__key ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: var(--text); display: grid; gap: 6px; }
.modal__foot { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-top: 22px; border-top: 1px solid var(--line); }
.modal__foot p { font-size: 14px; color: var(--text-soft); max-width: 320px; }

/* Stats */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat__num { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--gold-soft); letter-spacing: -0.01em; }
.stat__label { font-size: 14.5px; color: rgba(255,255,255,0.72); margin-top: 8px; }

/* Why us */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 460px; background: radial-gradient(700px 400px at 30% 10%, rgba(201,161,74,0.22), transparent 60%), linear-gradient(160deg, var(--navy-700), var(--navy-900)); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; color: #fff; }
.why__media .qmark { font-family: var(--serif); font-size: 120px; line-height: .6; color: var(--gold-soft); opacity: .9; }
.why__media blockquote { font-family: var(--serif); font-size: 24px; line-height: 1.35; margin: 12px 0 0; }
.why__media cite { display: block; font-style: normal; font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 18px; }
.why__list { list-style: none; margin: 28px 0 0; padding: 0; }
.why__list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.why__list li:last-child { border-bottom: 0; }
.why__list .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,161,74,0.12); color: var(--gold-deep); }
.why__list h4 { font-size: 18px; margin: 0 0 4px; }
.why__list p { color: var(--text-soft); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.step__num { font-family: var(--serif); font-size: 46px; font-weight: 700; color: rgba(201,161,74,0.4); line-height: 1; }
.step h3 { font-size: 20px; margin-top: 8px; }
.step p { color: var(--text-soft); margin-top: 10px; font-size: 15.5px; }

/* Booking tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; position: relative; transition: transform .2s ease, box-shadow .25s ease; }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier--featured { border-color: var(--gold); box-shadow: 0 24px 50px -26px rgba(201,161,74,0.6); }
.tier__badge { position: absolute; top: -12px; left: 30px; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #2a2207; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; }
.tier__mode { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); }
.tier h3 { font-size: 21px; margin-top: 8px; }
.tier p { color: var(--text-soft); font-size: 15px; margin-top: 10px; flex: 1; }
.tier__price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 4px; }
.tier__price b { font-family: var(--serif); font-size: 32px; color: var(--ink); }
.tier__price span { font-size: 14px; color: var(--text-soft); }
.tier .btn { margin-top: 16px; }
/* Booking modal */
.booking__group { margin-bottom: 22px; }
.booking__group h4 { font-size: 15px; color: var(--navy-700); margin-bottom: 12px; }
.booking__row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-select { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text); background: var(--white); border: 1.5px solid var(--line); padding: 10px 14px; border-radius: 10px; cursor: pointer; transition: border-color .15s ease, background .15s ease, color .15s ease; text-align: center; }
.chip-select:hover { border-color: var(--gold); }
.chip-select.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.chip-select small { display: block; font-size: 11.5px; font-weight: 500; opacity: .7; margin-top: 2px; }
.booking__pay { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.booking__total { font-size: 16px; color: var(--text-soft); }
.booking__total b { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-left: 6px; }
.booking__pay .btn { flex: 1; min-width: 200px; }
.booking__note { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--text-soft); margin-top: 14px; }
.booking__note svg { color: #15803d; flex: none; }
.booking__empty { font-size: 14px; color: var(--text-soft); margin: 4px 0; }
.booking-flash { margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; border: 1px solid var(--line); }
.booking-flash--ok { background: rgba(21,128,61,0.08); border-color: rgba(21,128,61,0.35); color: #15803d; }
.booking-flash--err { background: rgba(192,57,43,0.07); border-color: rgba(192,57,43,0.3); color: #c0392b; }
.paymethod { flex: 1; min-width: 200px; }
.paypanel { margin-top: 14px; font-size: 14px; color: var(--text-soft); background: var(--paper-2); border-radius: var(--radius-sm); padding: 16px 18px; }
.qrpay { display: flex; gap: 20px; align-items: center; }
.qrpay__code { flex: none; width: 128px; height: 128px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px; }
.qrpay__details { flex: 1; min-width: 0; }
.qrpay__details p { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; border-bottom: 1px dashed var(--line); margin: 0; }
.qrpay__details p:last-child { border-bottom: 0; }
.qrpay__details b { color: var(--text-soft); font-weight: 600; font-size: 13px; }
.qrpay__details span { font-weight: 700; color: var(--ink); }
.qrpay__hint { margin-top: 12px; font-size: 12.5px; color: var(--text-soft); }
@media (max-width: 520px) { .qrpay { flex-direction: column; align-items: flex-start; } }

.tiers__entry { text-align: center; margin-top: 30px; font-size: 16px; color: var(--text-soft); }
.tiers__entry a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid rgba(169,132,47,0.4); }
.tiers__entry a:hover { border-bottom-color: var(--gold-deep); }

/* Document strategy form */
.docstrat { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; }
.docstrat::after { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 85% 0%, rgba(201,161,74,0.22), transparent 60%); }
.docstrat__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; padding: 88px 0; }
.docstrat h2 { font-size: clamp(30px, 4vw, 46px); }
.docstrat h2 em { font-style: italic; color: var(--gold-soft); }
.docstrat__lead { color: rgba(255,255,255,0.82); font-size: 18px; margin-top: 18px; max-width: 440px; }
.docstrat__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.docstrat__list li { display: flex; gap: 12px; font-size: 16px; align-items: flex-start; }
.docstrat__list .ico { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(201,161,74,0.18); color: var(--gold-soft); margin-top: 1px; }
.form-card { background: rgba(255,255,255,0.98); color: var(--text); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.field { margin-top: 14px; }
.field label { display:block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--text); padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,0.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dropzone { margin-top: 14px; border: 2px dashed var(--line); border-radius: var(--radius-sm); padding: 22px; text-align: center; color: var(--text-soft); font-size: 14px; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.dropzone:hover { border-color: var(--gold); background: rgba(201,161,74,0.05); }
.dropzone strong { color: var(--ink); display: block; }
.form-card .btn { margin-top: 18px; }
.form-card__note { font-size: 12.5px; color: var(--text-soft); margin-top: 12px; text-align: center; }

/* Results / case outcomes */
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease; }
.rcard::before { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); transition: width .3s ease; }
.rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,161,74,0.45); }
.rcard:hover::before { width: 100%; }
.rcard__badge { display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:700; letter-spacing:.02em; padding:7px 13px; border-radius:999px; background: rgba(34,150,83,0.13); color:#15803d; }
.rcard__cat { display:block; font-size:12px; letter-spacing:.12em; text-transform:uppercase; font-weight:700; color: var(--gold-deep); margin-top:18px; }
.rcard dl { margin:6px 0 0; }
.rcard dt { font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-soft); font-weight:700; margin-top:14px; }
.rcard dd { margin:4px 0 0; font-size:15.5px; color:var(--ink); line-height:1.45; }
.rcard__result dd { font-family: var(--serif); font-weight:600; }

/* Anonymized document mockups */
.docs-strip { display:grid; grid-template-columns: repeat(5, 1fr); gap:20px; margin-top:26px; }
.docmock { position:relative; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding:24px 22px; box-shadow: var(--shadow-sm); overflow:hidden; min-height:236px; }
.docmock__title { font-family: var(--serif); font-weight:700; font-size:14px; letter-spacing:.12em; text-transform:uppercase; color: var(--navy-700); border-bottom:2px solid var(--line); padding-bottom:10px; }
.docmock__lines { margin-top:16px; display:grid; gap:9px; }
.docmock__lines span { height:8px; border-radius:4px; background: var(--paper-2); display:block; }
.docmock__lines span.short { width:62%; }
.docmock__lines span.redact { background: #2a3142; }
.docmock__stamp { position:absolute; right:-6px; bottom:26px; transform: rotate(-11deg); border:3px solid #15803d; color:#15803d; font-family: var(--serif); font-weight:700; font-size:17px; letter-spacing:.05em; padding:7px 15px; border-radius:8px; background: rgba(255,255,255,0.65); }
.docmock__stamp--gold { border-color: var(--gold-deep); color: var(--gold-deep); }

/* Reálný anonymizovaný vzor (klikací náhled → lightbox) */
.docmock--real { padding:0; cursor:zoom-in; display:block; width:100%; text-align:left; }
.docmock--real img { display:block; width:100%; height:236px; object-fit:cover; object-position:top center; }
.docmock--real .docmock__title { position:absolute; left:0; right:0; bottom:0; margin:0; border-bottom:none; border-top:2px solid var(--line); background:rgba(255,255,255,0.95); padding:10px 14px; }
.docmock--real .docmock__zoom { position:absolute; top:10px; right:10px; display:inline-flex; align-items:center; gap:5px; background:rgba(15,20,28,0.78); color:#fff; padding:5px 9px; border-radius:6px; font-size:12px; font-weight:600; }
.docmock--real:hover .docmock__zoom, .docmock--real:focus-visible .docmock__zoom { background:var(--gold-deep); }

/* Lightbox */
.lightbox { position:fixed; inset:0; z-index:1000; display:flex; align-items:center; justify-content:center; padding:32px; background:rgba(8,12,18,0.88); }
.lightbox[hidden] { display:none; }
.lightbox__fig { margin:0; max-width:min(900px, 92vw); max-height:92vh; display:flex; flex-direction:column; align-items:center; }
.lightbox__img { max-width:100%; max-height:84vh; object-fit:contain; border-radius:6px; box-shadow:0 18px 60px rgba(0,0,0,0.5); background:#fff; }
.lightbox__cap { color:#e7e3d8; font-size:13.5px; margin-top:12px; text-align:center; }
.lightbox__close { position:absolute; top:18px; right:22px; width:42px; height:42px; border:none; border-radius:50%; background:rgba(255,255,255,0.12); color:#fff; font-size:26px; line-height:1; cursor:pointer; }
.lightbox__close:hover { background:rgba(255,255,255,0.24); }
.results-note { text-align:center; font-size:13.5px; color:var(--text-soft); margin:30px auto 0; max-width:720px; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.review__stars { font-size: 18px; letter-spacing: 2px; }
.review p { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--ink); margin-top: 14px; flex: 1; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--navy-600), var(--navy-800)); color: var(--gold-soft); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); }
.review__who strong { display: block; font-size: 15px; } .review__who span { font-size: 13px; color: var(--text-soft); }

/* About */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__portrait { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about__portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.about__portrait .tag { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(11,17,32,0.82); backdrop-filter: blur(8px); border:1px solid var(--line-light); border-radius: 14px; padding: 14px 18px; color: #fff; }
.about__portrait .tag strong { font-family: var(--serif); font-size: 18px; } .about__portrait .tag span { font-size: 13px; color: rgba(255,255,255,0.72); }
.about__text h2 { font-size: clamp(28px, 3.4vw, 40px); }
.about__text p { color: var(--text-soft); font-size: 17px; margin-top: 18px; }
.credentials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; }
.chip svg { color: var(--gold-deep); }

/* Blog */
.blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .25s ease; }
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bcard__img { aspect-ratio: 16/10; background: radial-gradient(400px 200px at 70% 10%, rgba(201,161,74,0.22), transparent 60%), linear-gradient(150deg, var(--navy-700), var(--navy-900)); position: relative; display: grid; place-items: center; color: rgba(201,161,74,0.55); }
.bcard__img .cat { position: absolute; top: 14px; left: 14px; background: rgba(11,17,32,0.72); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .03em; padding: 5px 12px; border-radius: 999px; }
.bcard__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.bcard__date { font-size: 13px; color: var(--text-soft); }
.bcard h3 { font-size: 19px; margin-top: 8px; line-height: 1.28; }
.bcard p { color: var(--text-soft); font-size: 15px; margin-top: 10px; flex: 1; }
.bcard__more { margin-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--navy-700); display: inline-flex; align-items: center; gap: 6px; }
.bcard__more svg { transition: transform .2s ease; }
.bcard:hover .bcard__more { color: var(--gold-deep); }
.bcard:hover .bcard__more svg { transform: translateX(3px); }
.blog__all { text-align: center; margin-top: 38px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 6px 22px; margin-bottom: 12px; transition: box-shadow .2s ease; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; font-size: 18px; transition: transform .25s ease; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq__answer { padding: 0 0 18px; color: var(--text-soft); font-size: 16px; }
.faq__answer .by { display: block; margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--gold-deep); }

/* Find us */
.findus { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); }
.findus__info { padding: 44px; }
.findus__info h3 { font-size: 24px; }
.findus__rows { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.findus__rows li { display: flex; gap: 14px; }
.findus__rows .ico { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,161,74,0.12); color: var(--gold-deep); }
.findus__rows b { display: block; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; }
.findus__rows a, .findus__rows span { font-size: 16.5px; color: var(--ink); }
.findus__map { position: relative; min-height: 380px; background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; color: rgba(255,255,255,0.55); }
.findus__map .pin { width: 60px; height: 60px; border-radius: 50%; background: rgba(201,161,74,0.18); display: grid; place-items: center; color: var(--gold-soft); margin-bottom: 12px; }
.findus__map a { color: var(--gold-soft); font-weight: 600; margin-top: 6px; }

/* Footer */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .logo { margin-bottom: 16px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; }
.footer a:hover { color: var(--gold-soft); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.footer__legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 2; }
.footer__legal a { color: rgba(255,255,255,0.72); }
.footer__legal a:hover { color: var(--gold-soft); }
.footer__seo { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 13px; color: rgba(255,255,255,0.5); line-height: 2; }
.footer__seo a { color: rgba(255,255,255,0.55); }
.footer__bottom { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer__secure { display: inline-flex; align-items: center; gap: 8px; }
.footer__secure svg { color: #4ade80; }

/* Sticky mobile bar */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(11,17,32,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line-light); }
.mobilebar .btn { padding: 14px; font-size: 15px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1280px) {
  .nav { gap: 16px; }
  .nav__links { gap: 16px; }
  .nav__links a { font-size: 14.5px; }
  .header-phone { display: none; }
}
@media (max-width: 1080px) {
  .nav { gap: 14px; }
  .nav__links { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav.open .nav__links { display: flex; flex-direction: column; gap: 4px; position: absolute; left: 0; right: 0; top: 74px; background: var(--navy-900); padding: 16px 24px 22px; border-bottom: 1px solid var(--line-light); }
  .nav.open .nav__links a { padding: 12px 0; font-size: 17px; }
}
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0 70px; }
  .hero-card { max-width: 480px; }
  .practice { grid-template-columns: 1fr 1fr; }
  .why { grid-template-columns: 1fr; gap: 36px; }
  .why__media { min-height: 300px; order: 2; }
  .about { grid-template-columns: 1fr; gap: 32px; } .about__portrait { max-width: 360px; }
  .docstrat__inner { grid-template-columns: 1fr; gap: 36px; padding: 64px 0; }
  .steps, .tiers, .reviews, .stats__grid, .results, .docs-strip, .blog { grid-template-columns: 1fr 1fr; }
  .findus { grid-template-columns: 1fr; } .findus__map { min-height: 260px; order: 2; }
  .modal__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .topbar__item--hours { display: none; }
  /* Dlouhý EN text v liště by jinak odtlačil přepínač jazyka mimo obrazovku */
  .topbar__inner { gap: 10px; }
  .topbar__spacer { display: none; }
  .topbar__rating { flex: 1 1 auto; min-width: 0; overflow: hidden; white-space: nowrap; }
  .lang { flex: 0 0 auto; }
  .header-cta { display: none; }
  .practice, .steps, .tiers, .reviews, .stats__grid, .field-row, .results, .docs-strip, .blog { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .mobilebar { display: grid; }
  body { padding-bottom: 76px; }
  .logo strong { font-size: 17px; }
  .logo span { font-size: 10px; letter-spacing: 0.18em; }
}

/* =====================================================================
   CONTENT / INNER PAGES (o nás, kontakt, online služby, právní stránky)
   Sdílené komponenty ve stylu homepage pro všechny podstránky.
   ===================================================================== */

/* Skip link (přístupnost) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--gold); color: #2a2207; padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Page banner – kompaktní hero pro vnitřní stránky */
.page-banner { position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(1000px 460px at 84% -20%, rgba(201,161,74,0.18), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--navy-800)); }
.page-banner::after { content:""; position:absolute; inset:0; pointer-events:none; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; opacity:.5; mask-image: linear-gradient(180deg, #000, transparent 80%); }
.page-banner__inner { position: relative; z-index: 2; padding: 64px 0 56px; }
.page-banner .breadcrumb { margin-bottom: 18px; }
.page-banner h1 { font-size: clamp(30px, 4.4vw, 50px); letter-spacing: -0.02em; max-width: 18ch; }
.page-banner__lead { font-size: 18.5px; color: rgba(255,255,255,0.82); margin-top: 18px; max-width: 620px; }
.page-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Breadcrumb */
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,0.6); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.78); }
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb [aria-current="page"] { color: var(--gold-soft); }

/* Prose – dlouhý text (právní stránky, články) */
.prose { max-width: 820px; color: var(--text); font-size: 16.5px; line-height: 1.75; }
.prose.prose--wide { max-width: 920px; }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: clamp(22px, 2.6vw, 30px); margin-top: 44px; }
.prose h3 { font-size: 20px; margin-top: 30px; }
.prose h2 + p, .prose h3 + p { margin-top: 14px; }
.prose a { color: var(--gold-deep); font-weight: 600; border-bottom: 1px solid rgba(169,132,47,0.4); }
.prose a:hover { border-bottom-color: var(--gold-deep); }
.prose ul, .prose ol { margin: 14px 0 0; padding-left: 22px; display: grid; gap: 10px; }
.prose li { padding-left: 4px; }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 19px; color: var(--text-soft); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }
.prose table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 15.5px; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--paper-2); font-weight: 700; }

/* Standalone section heading (mimo homepage section-head) */
.content-section { padding: 72px 0; }
.content-section + .content-section { padding-top: 0; }

/* Info / kontaktní karty */
.info-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 26px; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.info-card h2, .info-card h3 { font-size: 21px; margin-bottom: 6px; }
.info-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; margin: 18px 0 0; }
.info-card dt { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; padding-top: 2px; }
.info-card dd { margin: 0; font-size: 15.5px; color: var(--ink); }
.info-card dd a { color: var(--gold-deep); font-weight: 600; }
.info-card__actions { margin-top: 24px; }

/* Mapa */
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 360px; background: var(--paper-2); }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-actions { margin-top: 16px; }

/* Quick contact row */
.quick-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.quick-note { margin-top: 14px; font-size: 14px; color: var(--text-soft); }

/* Formuláře na podstránkách (reuse .field z homepage) */
.form-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); max-width: 760px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .form-field--full, .form-grid .form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--text); padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--white); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,161,74,0.18); }
.form-field .optional { color: var(--text-soft); font-weight: 500; }
.form-checkbox { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-soft); }
.form-checkbox input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.form-panel .btn { margin-top: 18px; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14.5px; }
.form-status[hidden] { display: none; }
.form-status.is-success, .form-status--ok { background: rgba(34,150,83,0.12); color: #15803d; }
.form-status.is-error, .form-status--err { background: rgba(190,40,40,0.1); color: #b91c1c; }
.form-hint { margin-top: 12px; font-size: 13px; color: var(--text-soft); }

/* Zpětná kompatibilita se starým markupem formulářů na podstránkách */
.form-section { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); max-width: 820px; margin-top: 24px; }
.form-section .btn { margin-top: 18px; }
.legal-doc { }
.legal-doc__updated { display: inline-block; margin-top: 8px; font-size: 13.5px; color: var(--text-soft); }

/* CTA pruh na konci stránky */
.cta-band { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius); padding: 44px 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; box-shadow: var(--shadow-md); }
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); }
.cta-band p { color: rgba(255,255,255,0.8); margin-top: 8px; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* =====================================================================
   BLOG (Astro – index i detail článku)
   ===================================================================== */
.page-header { position: relative; overflow: hidden; color: var(--white);
  background: radial-gradient(900px 420px at 84% -20%, rgba(201,161,74,0.16), transparent 60%), linear-gradient(160deg, var(--navy-900), var(--navy-700) 60%, var(--navy-800)); }
.page-header .container { padding-top: 56px; padding-bottom: 50px; }
.page-header h1 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.02em; }

.home-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12.5px; font-weight: 700; color: var(--gold-deep); margin-bottom: 10px; }

.blog-section-title { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 6px; }
.blog-intro { margin-bottom: 28px; }
.blog-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.blog-list__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.blog-list__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-list__item > a { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.blog-list__item > a:hover { color: var(--gold-deep); }
.blog-list__meta { font-size: 13px; color: var(--text-soft); margin-top: 7px; }
.blog-list__excerpt { margin-top: 10px; color: var(--text); }

.blog-post { max-width: 840px; }
.blog-post__title { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -0.02em; margin-top: 6px; }
.blog-post__meta { font-size: 13.5px; color: var(--text-soft); margin-top: 12px; }
.blog-post__hero { margin: 26px 0 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.blog-post__hero img { width: 100%; height: auto; display: block; }
.blog-post__body { margin-top: 26px; }
.blog-post__cta { margin-top: 44px; }
.blog-post__back { margin-top: 24px; }

/* =====================================================================
   UPLOAD PODKLADŮ (intake formulář)
   ===================================================================== */
.uploader { margin: 4px 0 8px; }
.uploader__drop {
  border: 2px dashed var(--line); border-radius: var(--radius);
  background: var(--white); padding: 32px 24px; text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.uploader__drop.is-drag { border-color: var(--gold); background: rgba(201,161,74,0.06); }
.uploader__icon { color: var(--gold-deep); margin-bottom: 8px; }
.uploader__drop p { margin: 4px 0; color: var(--text); }
.uploader__buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 14px 0 6px; }
.uploader__camera { display: none; }
.uploader__hint { font-size: 13px; color: var(--text-soft); }
.uploader__list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.uploader__item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px;
}
.uploader__item-ico { color: var(--gold-deep); flex: 0 0 auto; }
.uploader__item-main { flex: 1 1 auto; min-width: 0; }
.uploader__item-name { display: block; font-weight: 600; font-size: 14.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uploader__item-meta { font-size: 12.5px; color: var(--text-soft); }
.uploader__item--error { border-color: #f0c5bf; background: #fff7f6; }
.uploader__item--error .uploader__item-meta { color: #b42318; }
.uploader__remove {
  flex: 0 0 auto; border: 0; background: transparent; cursor: pointer; color: var(--text-soft);
  width: 30px; height: 30px; border-radius: 8px; font-size: 18px; line-height: 1;
}
.uploader__remove:hover { background: rgba(0,0,0,0.05); color: var(--ink); }
.uploader__progress { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; margin: 16px 0 0; }
.uploader__bar { height: 100%; width: 0; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); transition: width .2s ease; }

@media (hover: none) and (pointer: coarse) {
  .uploader__camera { display: inline-flex; }
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
  .page-banner__inner { padding: 48px 0 42px; }
  .cta-band { padding: 32px 24px; }
}
