/* ============================================================
   V1 — Centrovaný editorial · Cincuenta
   Centered layout, velká typografie, široké řádkové karty
   ============================================================ */
:root {
  --gold:         #f1d13f;
  --gold-dark:    #c9a90e;
  --gold-light:   #fdf6d8;
  --gold-glow:    rgba(241,209,63,0.12);
  --text:         #1a1a1a;
  --text-muted:   #6b6b6b;
  --text-light:   #aaa;
  --bg:           #fff;
  --bg-warm:      #fdfcf8;
  --bg-cream:     #f7f4eb;
  --border:       #e8e5dd;
  --dark:         #1a1a1a;

  --font-body:    'Nunito', system-ui, sans-serif;
  --font-brand:   'Great Vibes', cursive;
  --container:    1100px;
  --radius:       12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--text);
  background: var(--bg); line-height: 1.6;
  min-width: 1440px; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 2.5rem; }

/* ── NAV — centered logo ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px; display: flex; align-items: center;
}
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-back {
  font-size: 0.82rem; font-weight: 600; color: var(--text-light);
  transition: color 0.2s; justify-self: start;
}
.nav-back:hover { color: var(--text-muted); }
.nav-logo {
  font-family: var(--font-brand); font-size: 2.4rem;
  color: var(--gold-dark); text-align: center;
}
.nav-cta {
  justify-self: end;
  font-size: 0.85rem; font-weight: 700;
  background: var(--gold); color: var(--dark);
  padding: 0.55rem 1.5rem; border-radius: 100px;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-dark); color: #fff; }

/* ── HERO — centered, editorial ── */
.hero {
  padding: 8rem 0 6rem;
  text-align: center;
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
}
.hero-deco-line {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.4;
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-dark);
}
.hero-title {
  margin: 0.5rem 0;
}
.hero-title .brand {
  font-family: var(--font-brand);
  font-size: 7rem; font-weight: 400;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}
.hero-subtitle {
  font-size: 1.2rem; color: var(--text-muted);
  line-height: 1.8; max-width: 540px;
}
.hero-actions {
  display: flex; gap: 1rem; margin-top: 1rem;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 100px;
  transition: all 0.25s; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text-muted); }
.btn-white { background: #fff; color: var(--dark); border-radius: 100px; }
.btn-white:hover { background: var(--gold); transform: translateY(-2px); }

.hero-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--text-light); font-weight: 600;
}
.hero-meta-item { display: flex; align-items: center; gap: 0.4rem; }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }

/* ── SERVICES — horizontal rows ── */
.services {
  padding: 6rem 0;
}
.section-intro {
  margin-bottom: 3rem;
}
.section-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold-dark); margin-bottom: 0.75rem;
}
.section-kicker::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.section-title {
  font-size: 2.2rem; font-weight: 800;
  letter-spacing: -0.02em;
}

.service-row {
  display: grid;
  grid-template-columns: 60px 56px 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.service-row:first-of-type { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 1rem; background: var(--bg-warm); border-radius: var(--radius); }
.service-num {
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  transition: all 0.3s;
}
.service-row:hover .service-icon { background: var(--gold); color: #fff; }
.service-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.3rem; }
.service-body p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; max-width: 600px; }

/* ── WHY US — editorial numbered benefits ── */
.why-us {
  padding: 8rem 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}
.why-item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  padding: 2.5rem 1.5rem;
}
.why-num {
  font-size: 6rem; font-weight: 800;
  color: var(--gold-light); letter-spacing: -0.04em;
  line-height: 1;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: var(--gold); }
.why-item h3 { font-size: 1.4rem; font-weight: 800; }
.why-item p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 340px; }

/* ── PRICING — inline banner ── */
.pricing {
  padding: 2.5rem 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  color: var(--text-muted); font-size: 0.95rem;
}
.pricing-inner svg { color: var(--gold-dark); flex-shrink: 0; }
.pricing-inner strong { color: var(--text); }
.pricing-inner a { color: var(--gold-dark); font-weight: 700; border-bottom: 2px solid var(--gold); }

/* ── CTA — split ── */
.cta {
  padding: 5rem 0;
  background: var(--dark);
  color: #fff;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-left h2 {
  font-size: 3rem; font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em;
}
.cta-right p {
  font-size: 1.05rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 1.5rem;
}

/* ── CONTACT — centered typographic ── */
.contact {
  padding: 6rem 0;
  background: var(--bg-warm);
}
.contact-centered {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  max-width: 600px; margin: 0 auto;
}
.contact-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.35;
}
.contact-line-short {
  width: 40px; height: 2px;
  background: var(--gold); margin: 0.5rem 0;
}
.contact-label {
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--gold-dark); margin-top: 0.5rem;
}
.contact-name {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
}
.contact-company {
  font-size: 0.92rem; color: var(--text-muted);
}
.contact-details {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 0.5rem 0;
}
.contact-link {
  font-size: 1.1rem; font-weight: 700; color: var(--gold-dark);
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--gold-dark); }
.contact-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.contact-address {
  font-size: 0.88rem; color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ── FOOTER — minimal strip ── */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-brand);
  font-size: 1.5rem; color: var(--gold-dark);
}
.footer p { font-size: 0.78rem; color: var(--text-light); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-dark); }
