    :root {
      --gold: #c49a6c;
      --gold-light: #d4a574;
      --gold-soft: #e8d4bd;
      --cream: #faf6f1;
      --cream-deep: #f3ece3;
      --ink: #2e2a26;
      --ink-soft: #6b6258;
      --line: rgba(196, 154, 108, 0.22);
      --white: #ffffff;
      --radius: 18px;
      --shadow: 0 24px 60px -28px rgba(80, 60, 40, 0.30);
      --shadow-sm: 0 12px 30px -18px rgba(80, 60, 40, 0.28);
      --serif: "Cormorant Garamond", Georgia, serif;
      --sans: "Montserrat", system-ui, sans-serif;
    }

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

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

    /* sekce se neschovají pod fixní menu při prokliku z navigace */
    [id] { scroll-margin-top: 84px; }

    body {
      font-family: var(--sans);
      color: var(--ink);
      background: var(--cream);
      font-weight: 400;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; letter-spacing: 0.2px; }

    a { color: inherit; text-decoration: none; }

    img { max-width: 100%; display: block; }

    .wrap { width: min(1180px, 92vw); margin: 0 auto; }

    .eyebrow {
      font-size: 0.74rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
    }
    .eyebrow::before {
      content: "";
      width: 32px; height: 1px;
      background: var(--gold);
      display: inline-block;
    }

    .section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
    .section-head { max-width: 640px; margin-bottom: 3.2rem; }
    .section-head h2 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-top: 1rem; }
    .center { margin-left: auto; margin-right: auto; text-align: center; }
    .center .eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--gold); display: inline-block; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 2rem;
      border-radius: 999px;
      font-family: var(--sans);
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid transparent;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #fff;
      box-shadow: 0 16px 34px -16px rgba(196, 154, 108, 0.75);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(196, 154, 108, 0.9); }
    .btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
    .btn-ghost:hover { background: var(--white); border-color: var(--gold); transform: translateY(-2px); }

    /* NAV */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
      padding: 1.4rem 0;
    }
    /* Pozadí lišty řešíme přes ::before — kdyby byl backdrop-filter přímo na .nav,
       udělal by z .nav containing block pro fixed potomky (mobilní menu + overlay)
       a ty by se na iOS Safari smrskly na výšku lišty. ::before to obchází. */
    .nav::before {
      content: "";
      position: absolute; inset: 0;
      background: rgba(250, 246, 241, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--line);
      opacity: 0; transition: opacity 0.4s ease;
      pointer-events: none; z-index: -1;
    }
    .nav.scrolled::before { opacity: 1; }
    .nav.scrolled { padding: 0.85rem 0; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .brand { display: flex; align-items: center; gap: 0.75rem; font-family: var(--serif); }
    .brand-mark {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      color: #fff; display: grid; place-items: center;
      font-size: 1rem; font-weight: 600; letter-spacing: 0.05em;
      box-shadow: 0 10px 22px -12px rgba(196, 154, 108, 0.8);
    }
    .brand-name { font-size: 1.25rem; font-weight: 600; }
    .brand-logo { height: 46px; width: auto; max-width: 160px; object-fit: contain; display: block; }
    .nav-links { display: flex; align-items: center; gap: 2.1rem; }
    .nav-links a:not(.btn) {
      font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.25s;
    }
    .nav-links a:not(.btn)::after {
      content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
      background: var(--gold); transition: width 0.3s ease;
    }
    .nav-links a:not(.btn):hover { color: var(--ink); }
    .nav-links a:not(.btn):hover::after { width: 100%; }
    .nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; position: relative; z-index: 70; padding: 6px; margin: -6px; }
    .nav-toggle span { width: 26px; height: 2px; background: var(--ink); display: block; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-overlay { position: fixed; inset: 0; background: rgba(46, 42, 38, 0.45); opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; z-index: 55; }
    .nav-overlay.open { opacity: 1; visibility: visible; }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex; align-items: center;
      overflow: hidden;
      background:
        radial-gradient(80% 70% at 78% 18%, rgba(212, 165, 116, 0.20), transparent 60%),
        radial-gradient(70% 60% at 12% 85%, rgba(232, 212, 189, 0.45), transparent 55%),
        linear-gradient(160deg, #fdfaf6 0%, var(--cream) 45%, var(--cream-deep) 100%);
    }
    .hero::after {
      content: ""; position: absolute; right: -8%; top: -10%;
      width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.35), rgba(232, 212, 189, 0.05) 70%);
      filter: blur(8px);
      pointer-events: none;
    }
    .hero-grain {
      position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
      background-image: radial-gradient(rgba(196, 154, 108, 0.10) 1px, transparent 1px);
      background-size: 26px 26px;
      mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 100%);
    }
    .hero .wrap { position: relative; z-index: 2; padding-top: 7rem; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
    .hero-content { max-width: 640px; }
    /* HERO cycling visual */
    .hero-visual {
      position: relative; width: 100%; max-width: 460px; margin-left: auto;
      aspect-ratio: 4 / 5; border-radius: 22px; overflow: hidden;
      box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.6);
      background: var(--cream-deep);
    }
    .hero-visual img {
      position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
      opacity: 0; transform: scale(1.04); transition: opacity 1.2s ease, transform 5s ease;
    }
    .hero-visual img.active { opacity: 1; transform: scale(1); }
    .hero-visual::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(to top, rgba(46,42,38,0.32), transparent 45%);
    }
    .hero-visual .cap {
      position: absolute; left: 1rem; bottom: 1rem; z-index: 3;
      background: rgba(255,255,255,0.85); backdrop-filter: blur(6px);
      padding: 0.5rem 1.1rem; border-radius: 999px;
      font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
      font-weight: 600; color: var(--ink); transition: opacity 0.5s ease;
    }
    .hero-visual .dots { position: absolute; right: 1rem; bottom: 1.15rem; z-index: 3; display: flex; gap: 6px; }
    .hero-visual .dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); transition: background 0.4s, width 0.4s; }
    .hero-visual .dots i.on { background: #fff; width: 16px; border-radius: 999px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.5rem 1.1rem; border-radius: 999px;
      background: rgba(255, 255, 255, 0.65); border: 1px solid var(--line);
      font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
      color: var(--gold); font-weight: 600; margin-bottom: 1.8rem;
    }
    .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
    .hero h1 {
      font-size: clamp(2.8rem, 8vw, 5.6rem);
      line-height: 1.02;
      letter-spacing: -0.5px;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }
    .hero p.lead {
      font-size: clamp(1.05rem, 1.7vw, 1.25rem);
      color: var(--ink-soft); max-width: 540px; margin: 1.6rem 0 2.4rem;
      font-weight: 300;
    }
    .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem; }
    .hero-phone { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
    .hero-phone svg { width: 18px; height: 18px; stroke: var(--gold); }
    .hero-reviews { display: inline-flex; align-items: center; gap: 0.7rem; margin-top: 1.8rem; padding: 0.6rem 1.05rem 0.6rem 0.85rem; background: rgba(255,255,255,0.72); border: 1px solid var(--line); border-radius: 14px; backdrop-filter: blur(6px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .hero-reviews:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
    .hero-reviews .g-logo { width: 24px; height: 24px; flex-shrink: 0; }
    .hero-reviews .hr-stars { color: #fbbc04; letter-spacing: 1px; font-size: 0.92rem; line-height: 1; }
    .hero-reviews .hr-text { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.25; }
    .hero-reviews .hr-text b { color: var(--ink); font-weight: 600; }
    .scroll-cue {
      position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
      z-index: 2; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
      color: var(--ink-soft); display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    }
    .scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
    @keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

    /* FEATURE STRIP */
    .features { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
    .features .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .feature { padding: 2.6rem 2rem; text-align: center; border-right: 1px solid var(--line); }
    .feature:last-child { border-right: 0; }
    .feature .num { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
    .feature h3 { font-size: 1.35rem; margin: 0.4rem 0 0.5rem; }
    .feature p { color: var(--ink-soft); font-size: 0.92rem; font-weight: 300; }

    /* ABOUT */
    .about .wrap { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
    .about-card {
      position: relative; border-radius: var(--radius); overflow: hidden;
      background: linear-gradient(155deg, #fff 0%, var(--cream) 55%, var(--gold-soft) 130%);
      box-shadow: var(--shadow); border: 1px solid var(--line);
      padding: clamp(2rem, 4vw, 3rem);
      display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
    }
    .about-card::before {
      content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
      border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(212,165,116,0.28), transparent 70%); pointer-events: none;
    }
    .about-card .card-label {
      font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600;
    }
    .timeline { display: flex; flex-direction: column; gap: 1.4rem; position: relative; }
    .tl-item { display: flex; align-items: center; gap: 1.2rem; }
    .tl-item b {
      font-family: var(--serif); font-size: 2.1rem; color: var(--gold); line-height: 1;
      min-width: 76px; padding-right: 1.2rem; border-right: 2px solid var(--gold-soft);
    }
    .tl-item strong { display: block; font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
    .tl-item span { color: var(--ink-soft); font-size: 0.9rem; font-weight: 300; }
    .about-card .card-note {
      font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink-soft);
      padding-top: 1.2rem; border-top: 1px solid var(--line); margin: 0;
    }
    .about-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 1rem 0 1.4rem; }
    .about-text .signature { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold); margin-bottom: 1.2rem; }
    .about-text p { color: var(--ink-soft); font-weight: 300; }

    /* SERVICES */
    .services { background: var(--cream-deep); }
    .service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .service-card {
      background: var(--white); border-radius: var(--radius); overflow: hidden;
      border: 1px solid var(--line); transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex; flex-direction: column;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .service-media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream-deep); }
    .service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .service-card:hover .service-media img { transform: scale(1.05); }
    .service-body { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
    .service-head { display: flex; align-items: center; gap: 0.8rem; }
    .service-head .ic { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold-soft), rgba(212,165,116,0.25)); display: grid; place-items: center; }
    .service-head .ic svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
    .service-card h3 { font-size: 1.55rem; }
    .service-card .lead-sm { color: var(--ink-soft); font-weight: 300; font-size: 0.94rem; }
    .service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 0.4rem 0 0.2rem; flex-grow: 1; align-content: flex-start; }
    .service-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--ink); font-weight: 400; width: calc(50% - 0.6rem); }
    .service-list li::before { content: "✓"; color: var(--gold); font-weight: 700; font-size: 0.82rem; }
    .service-foot { margin-top: 0.4rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .service-foot .price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); font-weight: 600; }
    .service-foot .more { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); transition: gap 0.25s ease, color 0.25s ease; }
    .service-foot .more svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; transition: transform 0.25s ease; }
    .service-foot .more:hover { color: var(--gold); }
    .service-foot .more:hover svg { transform: translateX(3px); }

    /* DEVICES / technology */
    .device-intro { max-width: 560px; color: var(--ink-soft); font-weight: 300; margin: 0.8rem auto 0; }
    .tech-feature { max-width: 560px; margin: 2.5rem auto 3.6rem; text-align: center; }
    .tech-text .eyebrow { color: var(--gold); }
    .tech-text h3 { font-family: var(--serif); font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin: 0.9rem 0 1rem; }
    .tech-text > p { color: var(--ink-soft); font-weight: 300; margin-bottom: 1.4rem; }
    .oxy-list { list-style: none; display: inline-flex; flex-direction: column; gap: 0.8rem; text-align: left; }
    .oxy-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 1rem; color: var(--ink); }
    .oxy-list li::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; font-size: 0.72rem; font-weight: 700; flex-shrink: 0; }
    .tech-videos-label { text-align: center; font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
    .tech-clips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; max-width: 900px; margin: 0 auto; }
    .tech-clip { display: flex; flex-direction: column; gap: 1rem; }
    .clip-cap h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.3rem; }
    .clip-cap p { color: var(--ink-soft); font-weight: 300; font-size: 0.9rem; }

    /* PRICING */
    .pricing { background: var(--ink); color: #f4ede4; }
    .pricing .eyebrow { color: var(--gold-light); }
    .pricing .eyebrow::before, .pricing .center .eyebrow::after { background: var(--gold-light); }
    .pricing .section-head h2 { color: #fff; }
    .price-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4rem); }
    .price-col h3 { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 1.4rem; padding-bottom: 0.8rem; border-bottom: 1px solid rgba(212,165,116,0.3); }
    .price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px dashed rgba(255,255,255,0.12); }
    .price-row span:first-child { font-weight: 300; color: #e7ddd1; }
    .price-row span:last-child { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-light); white-space: nowrap; }
    .price-note { text-align: center; margin-top: 2.6rem; color: rgba(244,237,228,0.65); font-weight: 300; font-style: italic; font-family: var(--serif); font-size: 1.15rem; }

    /* GALLERY — categorized */
    .gallery-cat { margin-top: 3.6rem; }
    .gallery-cat:first-of-type { margin-top: 0; }
    .cat-head { max-width: 680px; margin-bottom: 1.5rem; }
    .cat-head h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0.5rem 0 0.6rem; }
    .cat-head p { color: var(--ink-soft); font-weight: 300; font-size: 0.96rem; }
    .cat-grid { display: grid; gap: 1rem; }
    .cat-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .cat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .cat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .cat-grid .cell {
      aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; position: relative; background: var(--cream-deep);
    }
    .cat-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .cat-grid .cell:hover img { transform: scale(1.05); }
    .cat-grid .cell .tag {
      position: absolute; top: 0.8rem; left: 0.8rem; z-index: 2;
      background: rgba(46, 42, 38, 0.72); color: #fff; backdrop-filter: blur(4px);
      font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
      padding: 0.35rem 0.7rem; border-radius: 999px;
    }

    /* VIDEO — ze studia */
    .video-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; max-width: 900px; margin: 0 auto; }
    .video-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 9 / 16; background: var(--ink); box-shadow: var(--shadow); border: 1px solid var(--line); }
    .video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
    .video-card .v-tag { position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2; background: rgba(46,42,38,0.7); color: #fff; backdrop-filter: blur(4px); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; }

    /* PARTNERS / BRANDS */
    .partners { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
    .partners .eyebrow { justify-content: center; }
    .partners .eyebrow::after { content: ""; width: 32px; height: 1px; background: var(--gold); display: inline-block; }
    .partners h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 1rem 0 1rem; }
    .partners .lead { max-width: 640px; margin: 0 auto 2.6rem; color: var(--ink-soft); font-weight: 300; }
    .brand-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: clamp(1.6rem, 6vw, 4rem); }
    .brand-chip { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--ink); letter-spacing: 0.5px; opacity: 0.85; transition: opacity 0.3s, color 0.3s; }
    .brand-chip:hover { opacity: 1; color: var(--gold); }
    .brand-chip small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.4rem; font-weight: 600; }
    .devices-note { margin-top: 2.2rem; font-size: 0.85rem; color: var(--ink-soft); font-weight: 300; letter-spacing: 0.03em; }

    /* REVIEWS */
    .reviews { background: var(--cream-deep); }
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
    .review-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem; border: 1px solid var(--line); position: relative; }
    .review-card .quote { font-family: var(--serif); font-size: 3.5rem; color: var(--gold-soft); line-height: 0.6; position: absolute; top: 1.6rem; right: 1.8rem; }
    .review-card .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 0.9rem; }
    .review-card p { color: var(--ink-soft); font-weight: 300; font-style: italic; font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; }
    .review-card .author { margin-top: 1.4rem; font-family: var(--sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

    /* CONTACT */
    .contact .wrap { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); }
    .contact-form { background: var(--white); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.8rem); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
    .field { margin-bottom: 1.2rem; }
    .field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; font-weight: 600; }
    .field input, .field select, .field textarea {
      width: 100%; padding: 0.85rem 1rem; border-radius: 10px; border: 1px solid var(--line);
      background: var(--cream); font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
      transition: border 0.25s, background 0.25s;
    }
    .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
    .field textarea { resize: vertical; min-height: 110px; }
    .contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.4rem; }
    .form-note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.9rem; font-weight: 300; }
    .form-consent { font-size: 0.72rem; line-height: 1.55; color: var(--ink-soft); text-align: center; margin-top: 0.9rem; font-weight: 300; }
    .form-consent a { color: var(--gold); text-decoration: underline; }
    .form-consent a:hover { color: var(--gold-light); }
    .form-status { font-size: 0.85rem; text-align: center; margin-top: 0.9rem; font-weight: 500; line-height: 1.5; }
    .form-status.ok { color: var(--gold); }
    .form-status.err { color: #c0392b; }
    .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
    .btn[disabled] { opacity: 0.65; cursor: default; }

    .contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 0.8rem 0 1.6rem; }
    .info-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
    .info-row .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-deep); display: grid; place-items: center; flex-shrink: 0; }
    .info-row .ic svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
    .info-row b { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; }
    .info-row span { color: var(--ink-soft); font-size: 0.92rem; font-weight: 300; }
    .info-row a:hover { color: var(--gold); }
    .map-wrap { margin-top: 1.6rem; }
    .map-strip { border-radius: 16px; overflow: hidden; height: 280px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
    #map { width: 100%; height: 100%; background: var(--cream-deep); }
    /* teplý nádech dlaždic, ať ladí s paletou */
    .leaflet-tile-pane { filter: sepia(0.2) saturate(0.9) brightness(1.03) hue-rotate(-8deg); }
    .leaflet-container { font-family: var(--sans); background: var(--cream-deep); }
    .leaflet-control-attribution { font-size: 9px; background: rgba(255,255,255,0.7); }
    .leaflet-bar a { color: var(--ink); }
    /* vlastní JK špendlík */
    .jk-pin { position: relative; }
    .jk-pin .pin-badge { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); box-shadow: 0 8px 18px -6px rgba(80,60,40,0.55); display: grid; place-items: center; overflow: hidden; }
    .jk-pin .pin-badge img { width: 40px; height: 40px; object-fit: contain; }
    .jk-pin::after { content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
    .map-nav { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1rem; padding: 0.8rem 1.5rem; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .map-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
    .map-nav svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

    /* FOOTER */
    footer { background: var(--ink); color: #cdbfae; padding: 3.2rem 0 2rem; }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.4rem; }
    .footer-inner .brand-name { color: #fff; }
    .footer-inner .brand-mark { width: 38px; height: 38px; font-size: 0.85rem; }
    .footer-inner .brand-logo { height: 52px; width: auto; max-width: 200px; }
    .footer-contact { display: flex; gap: 2rem; flex-wrap: wrap; font-size: 0.9rem; font-weight: 300; }
    .footer-contact a:hover { color: var(--gold-light); }
    .footer-bottom { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: rgba(205,191,174,0.6); font-weight: 300; display: flex; align-items: center; justify-content: space-between; gap: 1rem 1.6rem; flex-wrap: wrap; }
    /* Statly kredit s hover efektem */
    .statly { display: inline-flex; align-items: center; gap: 9px; color: #888280; font-size: 0.85rem; font-weight: 500; padding: 6px 10px; border-radius: 10px; text-decoration: none; transition: background 0.25s cubic-bezier(0.22,1,0.36,1); }
    .statly img { width: 24px; height: 24px; border-radius: 7px; display: block; filter: grayscale(0.15); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s cubic-bezier(0.22,1,0.36,1), filter 0.3s cubic-bezier(0.22,1,0.36,1); }
    .statly .statly-pre { color: #888280; }
    .statly .statly-name { color: #fff; font-weight: 700; transition: color 0.25s cubic-bezier(0.22,1,0.36,1); }
    .statly:hover { background: rgba(27, 127, 95, 0.1); }
    .statly:hover img { transform: scale(1.15) rotate(-4deg); box-shadow: 0 8px 22px rgba(27, 127, 95, 0.5); filter: grayscale(0); }
    .statly:hover .statly-name { color: #27a37a; }

    /* REVEAL ANIMATION */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .nav-links { position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; background: var(--cream); padding: 2.5rem; transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -20px 0 60px -30px rgba(0,0,0,0.4); z-index: 60; }
      .nav-links.open { transform: none; }
      .nav-toggle { display: flex; }
      .hero .wrap { grid-template-columns: 1fr; padding-top: 6.5rem; }
      .hero-visual { order: 2; max-width: 380px; margin: 0.5rem auto 0; aspect-ratio: 5 / 4; }
      .hero-content { max-width: 640px; }
      .features .wrap { grid-template-columns: 1fr; }
      .feature { border-right: 0; border-bottom: 1px solid var(--line); }
      .feature:last-child { border-bottom: 0; }
      .about .wrap, .contact .wrap { grid-template-columns: 1fr; }
      .service-grid, .price-cols, .review-grid { grid-template-columns: 1fr; }
      .cat-grid.cols-3, .cat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
      .about-card { max-width: 460px; margin: 0 auto; }
    }
    @media (max-width: 560px) {
      .brand-name { font-size: 1.05rem; }
      .nav .brand-logo { height: 40px; }
      .hero h1 { font-size: clamp(2.5rem, 11vw, 3.4rem); }
      .hero-visual { max-width: 100%; aspect-ratio: 4 / 3; }
      .hero-reviews { width: 100%; justify-content: center; }
      .section-head { margin-bottom: 2.2rem; }
      .service-body { padding: 1.5rem 1.4rem 1.6rem; }
      .service-list li { width: 100%; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
      .footer-contact { gap: 0.4rem 1rem; }
      .footer-bottom { justify-content: center; text-align: center; flex-direction: column-reverse; gap: 1.2rem; }
      .video-row, .tech-clips { grid-template-columns: 1fr; max-width: 340px; }
      .oxy-list li { font-size: 0.95rem; }
    }
    @media (max-width: 380px) {
      .cat-grid.cols-3, .cat-grid.cols-4 { grid-template-columns: 1fr; }
    }

/* ============================================================
   SUBPAGES (služby, obchodní podmínky)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(70% 80% at 85% 10%, rgba(212,165,116,0.18), transparent 60%),
    radial-gradient(60% 70% at 8% 95%, rgba(232,212,189,0.4), transparent 55%),
    linear-gradient(160deg, #fdfaf6 0%, var(--cream) 50%, var(--cream-deep) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; margin-bottom: 1.4rem; display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center; }
.breadcrumb a { color: var(--ink-soft); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.04; margin: 0.8rem 0 1.1rem; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); font-weight: 300; max-width: 620px; }

/* dvě kosmetické značky vedle sebe */
.brand-split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 1rem; }
.brand-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); }
.brand-box .tagline { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.15rem; }
.brand-box h3 { font-size: 1.9rem; margin: 0.3rem 0 0.8rem; }
.brand-box p { color: var(--ink-soft); font-weight: 300; font-size: 0.96rem; }

/* ceník na podstránce – světlý */
.svc-pricelist { display: flex; flex-direction: column; gap: 2.6rem; }
.svc-group h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.4rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--gold-soft); display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }
.svc-group h3 small { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.svc-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.2rem; padding: 0.95rem 0; border-bottom: 1px dashed var(--line); }
.svc-row .svc-name { font-weight: 500; color: var(--ink); }
.svc-row .svc-name small { display: block; font-weight: 300; color: var(--ink-soft); font-size: 0.86rem; margin-top: 0.25rem; line-height: 1.5; }
.svc-row .svc-price { font-family: var(--serif); font-size: 1.25rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.svc-note { margin-top: 0.6rem; font-size: 0.86rem; color: var(--ink-soft); font-weight: 300; font-style: italic; }

/* benefit chips na podstránce */
.svc-benefits { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.svc-benefits li { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.1rem; font-size: 0.86rem; color: var(--ink); }
.svc-benefits li::before { content: "✓"; color: var(--gold); font-weight: 700; }

/* CTA pruh */
.cta-strip { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; text-align: center; }
.cta-strip h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.8rem; }
.cta-strip p { color: rgba(255,255,255,0.9); font-weight: 300; max-width: 540px; margin: 0 auto 2rem; }
.cta-strip .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-strip .btn-ghost:hover { background: #fff; color: var(--gold); border-color: #fff; }
.cta-strip .phone-lg { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; font-weight: 500; margin-left: 1.2rem; }

/* dvousloupcový obsah (text + box) */
.split-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-box { background: var(--cream-deep); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.info-box h3 { font-size: 1.35rem; margin-bottom: 0.8rem; }
.info-box p { color: var(--ink-soft); font-weight: 300; font-size: 0.94rem; margin-bottom: 0.8rem; }

/* obecný textový obsah (obchodní podmínky) */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin: 2.4rem 0 0.9rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); font-weight: 300; margin-bottom: 0.7rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose address { font-style: normal; background: var(--cream-deep); border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.4rem; color: var(--ink); display: inline-block; margin-top: 0.4rem; }

@media (max-width: 900px) {
  .brand-split, .split-2 { grid-template-columns: 1fr; }
  .cta-strip .phone-lg { margin-left: 0; margin-top: 1rem; }
}

/* odkaz na plný ceník v sekci #cenik */
.price-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--gold-light); transition: gap 0.25s ease, color 0.25s ease; }
.price-more:hover { gap: 0.7rem; color: #fff; }
.price-col { display: flex; flex-direction: column; }
.price-col .price-row { margin: 0; }
.price-col .price-more { margin-top: auto; padding-top: 1.2rem; }

/* cookie / GDPR lišta */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1500;
  max-width: 440px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transform: translateY(160%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.4s ease, visibility 0.4s;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; visibility: visible; }
.cookie-banner h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--ink); }
.cookie-banner p { font-size: 0.86rem; line-height: 1.65; color: var(--ink-soft); font-weight: 300; margin-bottom: 1.1rem; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner p a:hover { color: var(--gold-light); }

.cookie-detail { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.cookie-detail.open { max-height: 360px; }
.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}
.cookie-option-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.cookie-option-text span { font-size: 0.76rem; line-height: 1.5; color: var(--ink-soft); font-weight: 300; }
.cookie-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; }
.cookie-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cookie-switch .track {
  position: absolute;
  inset: 0;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background 0.2s ease;
  pointer-events: none;
}
.cookie-switch .track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.cookie-switch input:checked + .track { background: var(--gold); border-color: var(--gold); }
.cookie-switch input:checked + .track::before { transform: translateX(20px); }
.cookie-switch input:focus-visible + .track { outline: 3px solid var(--gold-soft); outline-offset: 2px; }
.cookie-switch input:disabled + .track { opacity: 0.55; cursor: not-allowed; }

.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }
.cookie-btn {
  flex: 1 1 auto;
  min-width: 130px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cookie-btn.accept { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #fff; box-shadow: 0 16px 34px -16px rgba(196, 154, 108, 0.75); }
.cookie-btn.accept:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(196, 154, 108, 0.9); }
.cookie-btn.reject { background: transparent; color: var(--ink); border-color: var(--line); }
.cookie-btn.reject:hover { background: var(--cream); border-color: var(--gold); }
.cookie-btn.settings,
.cookie-btn.save { flex: 1 1 100%; background: none; color: var(--ink-soft); letter-spacing: 0.14em; text-transform: none; font-size: 0.78rem; padding: 0.4rem; text-decoration: underline; }
.cookie-btn.settings:hover,
.cookie-btn.save:hover { color: var(--gold); }
.cookie-btn.save { color: var(--gold); font-weight: 600; }

.cookie-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1400;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--gold);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.cookie-reopen.visible { display: flex; }
.cookie-reopen:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-light); }
.cookie-reopen svg { width: 20px; height: 20px; }

.footer-cookie-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.footer-cookie-link:hover { color: var(--gold-light); }

@media (max-width: 520px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 1.4rem; }
  .cookie-reopen { left: 10px; bottom: 10px; }
}
