
  :root {
    --paper: #FAF8F5;
    --ink: #14212E;
    --muted: #46586A;
    --accent: #E85D26;
    --accent-dark: #C73C05;
    --line: #E7E2DB;
    --ok: #1F6F5C;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  a { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* ---------- Header ---------- */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,248,245,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; max-width: 1080px; margin: 0 auto; }
  .logo { font-weight: 700; font-size: 20px; letter-spacing: 0.3px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
  .logo-img { width: 30px; height: 30px; border-radius: 6px; }
  .logo span { color: var(--accent); }
  nav a { color: var(--muted); margin-left: 22px; font-size: 15px; font-weight: 600; }
  nav a:hover { color: var(--accent); text-decoration: none; }
  .nav-cta { background: var(--accent); color: #fff !important; padding: 9px 18px; border-radius: 8px; margin-left: 22px; }
  .nav-cta:hover { background: #d24e1c; }

  /* ---------- Hero ---------- */
  .hero { padding: 96px 0 72px; border-bottom: 1px solid var(--line); }
  .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
  .hero-kicker {
    font-size: 15px; font-weight: 600; color: var(--accent-dark);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px;
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 14px;
  }
  .rotator { display: inline-block; color: var(--accent); font-style: italic; }
  .hero p.lead { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-block; background: var(--ink); color: #fff;
    padding: 14px 26px; border-radius: 8px; font-weight: 600; font-size: 16px;
    border: none; cursor: pointer; transition: transform .15s ease, background .15s ease;
  }
  .btn:hover { background: #0d1822; transform: translateY(-1px); text-decoration: none; }
  .btn.accent { background: #D24710; }
  .btn.accent:hover { background: #d24e1c; }
  .btn.ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
  .btn.ghost:hover { border-color: var(--ink); background: transparent; }

  /* Hero card — timeline */
  .hero-card {
    border: 1px solid var(--line); border-radius: 14px;
    background: #fff; padding: 26px;
    box-shadow: 0 1px 4px rgba(20,33,46,0.05);
  }
  .hero-card .card-label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
  .hero-card .card-title { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
  .hero-card .card-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
  .timeline { list-style: none; }
  .timeline li { display: flex; align-items: center; gap: 12px; padding: 9px 0; font-size: 15px; border-bottom: 1px dashed var(--line); }
  .timeline li:last-child { border-bottom: none; }
  .timeline .dot {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: transparent;
  }
  .timeline li.done .dot { background: var(--ok); border-color: var(--ok); color: #fff; }
  .timeline li.done { color: var(--ink); }
  .timeline li.todo { color: var(--muted); }
  .timeline .bar {
    height: 6px; border-radius: 3px; background: var(--line); margin-top: 14px; overflow: hidden;
  }
  .timeline .bar i { display: block; height: 100%; width: 100%; background: var(--ok); animation: growbar 5s ease forwards; }
  @keyframes growbar { from { width: 0; } to { width: 100%; } }
  .card-foot { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--ok); }

  /* ---------- Sections ---------- */
  section { padding: 72px 0; }
  .section-head { max-width: 640px; margin-bottom: 44px; }
  .section-head .kicker { font-size: 14px; font-weight: 600; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
  .section-head h2 { font-family: 'Fraunces', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.15; font-weight: 600; }

  /* ---------- Services (bento) ---------- */
  .bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
  .card {
    border: 1px solid var(--line); border-radius: 14px; background: #fff;
    padding: 28px; transition: transform .15s ease, box-shadow .15s ease;
  }
  .card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(20,33,46,0.07); }
  .card .icon { font-size: 22px; margin-bottom: 14px; }
  .card h3 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; margin-bottom: 8px; }
  .card p { font-size: 15px; color: var(--muted); }
  .card .price { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--ok); font-size: 15px; font-variant-numeric: tabular-nums; }
  .span-4 { grid-column: span 4; }
  .span-6 { grid-column: span 6; }
  .span-8 { grid-column: span 8; }
  .span-12 { grid-column: span 12; }
  .card.featured { background: var(--ink); border-color: var(--ink); }
  .card.featured h3, .card.featured p { color: #fff; }
  .card.featured p { color: #B9C6D2; }
  .card.featured .price { color: #7FD1A8; }

  /* ---------- References ---------- */
  .refs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .ref { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: #fff; display:flex; flex-direction:column; }
  .ref .shot { display:block; border-radius: 10px; overflow:hidden; border:1px solid var(--line); margin:8px 0 14px; line-height:0; }
  .ref .shot img { width:100%; height:auto; display:block; }
  .ref .shot:hover { opacity:0.92; }
  .ref .cs-link { display:inline-block; margin-top:10px; font-size:13px; font-weight:600; color: var(--accent-dark); }
  .ref .soon { display:inline-block; margin-top:10px; font-size:13px; font-weight:600; color:var(--muted); }
  .ref .tag { font-size: 12px; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 1px; }
  .ref h4 { font-family: 'Fraunces', serif; font-size: 18px; margin: 8px 0 6px; line-height:1.3; }
  .ref .num { font-size: 30px; font-weight: 700; color: var(--ok); font-variant-numeric: tabular-nums; margin: 10px 0 4px; letter-spacing: -0.5px; line-height:1.1; }
  .ref .num small { display:block; font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-top: 3px; line-height:1.35; }
  .ref p { font-size: 14px; color: var(--muted); line-height:1.55; }
  .ref .links { margin-top:auto; padding-top:12px; }
  .ref .links a { color: var(--accent-dark); }
  .ref a { font-size: 13px; font-weight: 600; color: var(--accent-dark); }

  /* ---------- About ---------- */
  .about { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
  .about .portrait {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #EFE9E1;
  }
  .about .portrait img { display: block; width: 100%; height: auto; object-fit: cover; }
  .about-text h2 { font-family: 'Fraunces', serif; font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 18px; }
  .about-text p { color: var(--muted); margin-bottom: 16px; max-width: 520px; }
  .about-text p strong { color: var(--ink); }

  /* ---------- Pricing ---------- */
  table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  tr { border-bottom: 1px solid var(--line); }
  tr:last-child { border-bottom: none; }
  th { text-align: left; padding: 14px 20px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); background: #F4F0EA; }
  td { padding: 16px 20px; font-size: 15px; }
  td.price-tag { font-weight: 700; color: var(--ok); white-space: nowrap; font-variant-numeric: tabular-nums; }
  .note { margin-top: 18px; font-size: 14px; color: var(--muted); max-width: 640px; }

  /* ---------- CTA ---------- */
  .cta-block {
    background: var(--ink); border-radius: 18px; padding: 56px 48px;
    display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
  }
  .cta-block h2 { font-family: 'Fraunces', serif; color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 460px; line-height: 1.15; }
  .cta-block p { color: #B9C6D2; margin-top: 10px; max-width: 440px; font-size: 15px; }

  /* ---------- Footer ---------- */
  footer { border-top: 1px solid var(--line); padding: 28px 0; }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 14px; color: var(--muted); }

  /* ---------- Sticky mobile CTA ---------- */
  .sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: #fff; border-top: 1px solid var(--line); padding: 10px 12px;
    box-shadow: 0 -4px 16px rgba(20,33,46,0.08);
  }
  .sticky-cta .btn {
    display: flex; align-items: center; justify-content: center;
    padding: 11px 10px; font-size: 14px; border-radius: 8px;
  }
  @media (max-width: 860px) {
    .sticky-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  }
  .sticky-cta .btn-call { background: var(--accent); color: #fff; }
  .sticky-cta .btn-call:hover { background: var(--accent-dark); }
  .sticky-cta .btn-mail { background: var(--ink); color: #fff; }
  .sticky-cta .btn-mail:hover { background: #0d1822; }

  /* FAQ */
  .faq-list { max-width: 760px; }
  .faq-item { border: 1px solid var(--line); border-radius: 12px; background: #fff; margin-bottom: 12px; overflow: hidden; }
  .faq-item summary { padding: 18px 22px; font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  .faq-item summary::after { content: '+'; font-size: 22px; color: var(--accent); font-weight: 400; }
  .faq-item[open] summary::after { content: '–'; }
  .faq-item summary:hover { background: #F8F5F0; }
  .faq-item p { padding: 0 22px 18px; font-size: 15px; color: var(--muted); }

  @media (max-width: 860px) {
    .hero-grid, .about { grid-template-columns: 1fr; gap: 32px; }
    .hero { padding: 56px 0 48px; }
    nav { display: none; }
    .span-4, .span-6, .span-8 { grid-column: span 12; }
    .cta-block { padding: 40px 28px; }
    .sticky-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    section { padding: 52px 0; }
    .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  }


/* Sekce s oddělovačem (přesunuto z inline stylů) */
.alt-section { border-top: 1px solid var(--line); background: #F4F0EA; }
.lined-section { border-top: 1px solid var(--line); }
.btn-contact { font-size: 17px; }
  .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .contact-actions .btn { white-space: nowrap; }
  @media (max-width: 860px) {
    .contact-actions { flex-direction: column; align-items: stretch; }
    .contact-actions .btn { text-align: center; }
  }
