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

/* Skryté sekce (blog, reference) — musí přebít i případné display v CSS */
[hidden] { display: none !important; }

  :root {


    --bila:        #FFFFFF;
    --bg-cream:    #FBF8F1;
    --bg-warm:     #F5EFE2;
    --bg-sand:     #ECE2CD;
    --bg-deep:     #EFE5D0;
    --bg-deep-soft: #F4ECD8;
    --bg-deep-darker: #E5D8BC;
    --gold:        #C28840;
    --gold-light:  #D9A867;
    --gold-dark:   #A86C2C;
    --text-dark:   #3A3A3A;
    --text-deep:   #1F1A14;
    --text-muted:  #6B6157;
    --text-light:  #A39A8C;
    --text-on-deep: #2A241D;
    --border:      #E5DBC5;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.85;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  ::selection { background: var(--gold); color: var(--bg-cream); }

  /* ==========================================================
     PŘECHODY MEZI SEKCEMI — TŘI PROPLETENÉ VLASY
     Vektor se generuje: node tools/vytvor-oddelovac.mjs
     Opakuje se do šířky (navazuje sám na sebe), takže se nedeformuje.
     Prameny jsou na vlastní vrstvě — kdyby byly na jedné s přechodem
     pozadí, maska by do ztracena rozpustila i ten přechod.
     ========================================================== */
  .strand-divider {
    background: var(--vlna-dole);
    position: relative;
    width: 100%;
    height: 92px;
    line-height: 0;
    pointer-events: none;
    margin: -1px 0;
  }
  /* Barva HORNÍ sekce, seříznutá podél vlny — díky ní se barvy nemění
     na rovné hraně, ale přesně po té křivce. */
  .strand-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--vlna-nahore);
    -webkit-mask: url('../img/oddelovac-c-maska.svg') repeat-x center / auto 100%;
    mask: url('../img/oddelovac-c-maska.svg') repeat-x center / auto 100%;
  }
  /* Zlaté prameny — stejné plátno jako maska, takže leží na švu */
  .strand-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/oddelovac-c.svg');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 16%, #000 84%, transparent);
  }

  /* Plynulé přelévání barev mezi sekcemi (místo tvrdého řezu) */
  .prechod-krem-bila  { --vlna-nahore: var(--bg-cream); --vlna-dole: var(--bila); }
  .prechod-bila-krem  { --vlna-nahore: var(--bila);     --vlna-dole: var(--bg-cream); }
  .prechod-krem-tmava { --vlna-nahore: var(--bg-cream); --vlna-dole: var(--bg-deep); }
  .prechod-tmava-krem { --vlna-nahore: var(--bg-deep);  --vlna-dole: var(--bg-cream); }

  /* ==========================================================
     SCROLL ANIMACE
     ========================================================== */
  .fade-in, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
  }
  .fade-in        { transform: translateY(40px); }
  .fade-in-left   { transform: translateX(-40px); }
  .fade-in-right  { transform: translateX(40px); }
  .fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
  }

  /* ==========================================================
     NAVIGACE
     ========================================================== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(251, 248, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
  }
  .nav.scrolled {
    padding: 12px 60px;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(31, 26, 20, 0.04);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .nav-logo:hover { opacity: 0.8; }
  .nav-logo img {
    height: 64px;
    width: auto;
    display: block;
    transition: height 0.3s;
  }
  .nav.scrolled .nav-logo img { height: 52px; }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.3s;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-menu a:hover { color: var(--gold); }
  .nav-menu a:hover::after { width: 100%; }

  .nav-phone {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding-left: 28px;
    border-left: 1px solid var(--border);
    transition: color 0.3s;
    font-weight: 500;
  }
  .nav-phone:hover { color: var(--gold-dark); }

  .mobile-toggle { display: none; }


  /* O salonu — společný úvod + medailonky stylistů */
  .about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .about-intro .section-title {
    margin-top: 24px;
    margin-bottom: 32px;
  }
  .about-intro p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.95;
    margin-bottom: 20px;
    font-weight: 300;
  }
  .about-intro .lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text-deep);
    line-height: 1.5;
    margin-bottom: 28px;
    font-weight: 300;
  }

  .stylist-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .stylist-card {
    text-align: center;
    background: var(--bg-cream);
    padding: 50px 40px;
    border-radius: 4px;
    transition: transform 0.4s, box-shadow 0.4s;
  }
  .stylist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -16px rgba(31, 26, 20, 0.1);
  }
  .stylist-portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--bg-warm), var(--gold-light));
    overflow: hidden;
    position: relative;
    border: 3px solid var(--bg-cream);
    box-shadow: 0 12px 30px -10px rgba(31, 26, 20, 0.15);
  }
  .stylist-portrait::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(31, 26, 20, 0.4);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
  }
  .stylist-card.martin .stylist-portrait::after { content: '⌘ Foto Martina'; }
  .stylist-card.renata .stylist-portrait::after { content: '⌘ Foto Renaty'; }

  .stylist-card-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-deep);
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .stylist-card-role {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
  }
  .stylist-card-bio {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .stylist-card-contact {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--gold-dark);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
    display: inline-block;
  }
  .stylist-card-contact:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  /* Why-block — ponechán pod medailonky, lehce upravit pozici */
  .why-block-wrapper {
    max-width: 900px;
    margin: 80px auto 0;
  }

  @media (max-width: 900px) {
    .stylist-cards { grid-template-columns: 1fr; gap: 30px; }
    .about-intro { margin-bottom: 60px; }
  }



  /* ==========================================================
     SCROLL PROGRESS BAR (top)
     ========================================================== */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-dark));
    z-index: 200;
    transition: width 0.1s ease-out;
    pointer-events: none;
  }

  /* ==========================================================
     COOKIE BANNER
     ========================================================== */
  .cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 880px;
    margin: 0 auto;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    box-shadow: 0 20px 60px -20px rgba(31, 26, 20, 0.25);
    border-radius: 4px;
    padding: 24px 28px;
    z-index: 95;
    display: none;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .cookie-banner.show { display: flex; }
  .cookie-banner.show.entered { transform: translateY(0); }
  .cookie-banner-text {
    flex: 1;
    min-width: 280px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-dark);
    font-weight: 300;
  }
  .cookie-banner-text strong {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-deep);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
  }
  .cookie-banner-text a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }
  .cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  .cookie-btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-deep);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 3px;
  }
  .cookie-btn:hover { border-color: var(--gold); color: var(--gold); }
  .cookie-btn-primary {
    background: var(--text-deep);
    color: var(--bg-cream);
    border-color: var(--text-deep);
  }
  .cookie-btn-primary:hover {
    background: var(--gold);
    color: var(--bg-cream);
    border-color: var(--gold);
  }
  @media (max-width: 700px) {
    .cookie-banner {
      bottom: 76px; /* nad sticky mobile bar */
      left: 12px;
      right: 12px;
      padding: 18px 20px;
    }
    .cookie-banner-actions {
      width: 100%;
    }
    .cookie-btn { flex: 1; padding: 12px 16px; }
  }

  /* ==========================================================
     HERO SCROLL INDICATOR
     ========================================================== */
  .hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    pointer-events: none;
    opacity: 0;
    animation: heroIndicatorFadeIn 1.2s ease 1.8s forwards;
    z-index: 2;
  }
  .hero-scroll-indicator-text {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
  }
  .hero-scroll-indicator-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
  }
  .hero-scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: var(--gold);
    animation: scrollLineDown 2.4s ease-in-out infinite;
  }
  @keyframes heroIndicatorFadeIn {
    to { opacity: 1; }
  }
  @keyframes scrollLineDown {
    0% { transform: translateY(-100%); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: translateY(280%); opacity: 0; }
  }
  @media (max-width: 1024px) {
    .hero-scroll-indicator { display: none; }
  }

  /* ==========================================================
     SKELETON LOADER PRO MAPU
     ========================================================== */
  .map-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
      var(--bg-warm) 30%,
      rgba(245, 239, 226, 0.5) 50%,
      var(--bg-warm) 70%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    z-index: 1;
    transition: opacity 0.5s ease;
  }
  .map-skeleton::after {
    content: '⌘';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: var(--gold);
    opacity: 0.4;
  }
  .map-skeleton.hidden {
    opacity: 0;
    pointer-events: none;
  }
  @keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  /* ==========================================================
     STAGGER ANIMACE PRO GRID ITEMS
     Karty se objevují postupně po 100ms
     ========================================================== */
  .stagger-children > .fade-in,
  .stagger-children > .fade-in-left,
  .stagger-children > .fade-in-right { transition-delay: 0s; }
  .stagger-children > .fade-in.visible:nth-child(1),
  .stagger-children > .fade-in-left.visible:nth-child(1),
  .stagger-children > .fade-in-right.visible:nth-child(1) { transition-delay: 0s; }
  .stagger-children > *:nth-child(2).visible { transition-delay: 0.1s; }
  .stagger-children > *:nth-child(3).visible { transition-delay: 0.2s; }
  .stagger-children > *:nth-child(4).visible { transition-delay: 0.3s; }
  .stagger-children > *:nth-child(5).visible { transition-delay: 0.4s; }
  .stagger-children > *:nth-child(6).visible { transition-delay: 0.5s; }

  /* ==========================================================
     IMAGE REVEAL (clip-path) — pro fotky kolekcí a galerie
     ========================================================== */
  .reveal-image {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .reveal-image.visible {
    clip-path: inset(0 0 0 0);
  }

  /* ==========================================================
     NUMBER COUNTERS — O salonu stats
     ========================================================== */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 600px;
    margin: 60px auto 0;
    padding-top: 50px;
    border-top: 1px solid var(--border);
  }
  .stat {
    text-align: center;
  }
  .stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    line-height: 1;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 10px;
    display: inline-block;
  }
  .stat-number-suffix {
    color: var(--gold);
    font-size: 38px;
    margin-left: 4px;
  }
  .stat-label {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
  }
  @media (max-width: 700px) {
    .stats-row {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-top: 36px;
      margin-top: 40px;
    }
    .stat-number { font-size: 44px; }
    .stat-number-suffix { font-size: 30px; }
  }

  /* ==========================================================
     CENÍK — DOPORUČUJEME TAG + DURATION
     ========================================================== */
  .pricing-recommended {
    background: var(--bg-deep-soft);
    border-color: var(--gold);
    position: relative;
  }
  .pricing-recommended::before {
    content: 'NEJOBLÍBENĚJŠÍ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-cream);
    padding: 5px 16px;
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 600;
    border-radius: 2px;
    font-family: var(--font-body);
    white-space: nowrap;
  }
  .pricing-item-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
    white-space: nowrap;
  }
  .pricing-item-duration svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    opacity: 0.7;
  }

  .pricing-includes {
    background: var(--bg-cream);
    border: 1px solid var(--gold);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
    border-radius: 4px;
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
  }
  .pricing-includes-title {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .pricing-includes-title::before, .pricing-includes-title::after { content: '— '; }
  .pricing-includes-title::after { content: ' —'; }
  .pricing-includes-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--text-deep);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ==========================================================
     FINAL CTA V CLOSING SEKCI
     ========================================================== */
  .closing-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .closing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 40px;
    background: var(--text-deep);
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--text-deep);
    cursor: pointer;
    transition: all 0.4s;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
  }
  .closing-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: -1;
  }
  .closing-cta-button:hover { border-color: var(--gold); }
  .closing-cta-button:hover::before { transform: translateX(0); }
  .closing-cta-button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
  }
  .closing-cta-button:hover svg { transform: translateX(4px); }
  .closing-cta-or {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .closing-cta-phone {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--gold-dark);
    text-decoration: none;
    font-style: italic;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
  }
  .closing-cta-phone:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }


  @media (max-width: 1100px) {
    .nav-phone { display: none; }
  }
  @media (max-width: 900px) {
    .nav { padding: 14px 20px; }
    .nav.scrolled { padding: 10px 20px; }
    .nav-logo img { height: 48px; }
    .nav.scrolled .nav-logo img { height: 42px; }
    .nav-menu { display: none; }
    .mobile-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .mobile-toggle span {
      width: 24px;
      height: 1.5px;
      background: var(--text-deep);
      transition: all 0.3s;
    }
    .nav-menu.mobile-open {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(251, 248, 241, 0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 24px;
      gap: 20px;
      border-bottom: 1px solid var(--border);
    }
  }

  /* ==========================================================
     HERO
     ========================================================== */
  /* ÚVODNÍ SEKCE — vystředěná kompozice.
     Dřív to byl dvousloup, kde pravou polovinu obrazovky zabírala tmavá
     deska s nápisem „Sem přijde fotka salonu". Teď úvod funguje i bez
     fotky; fotka přijde jako široký pás hned pod ním (.uvod-foto). */
  .hero {
    min-height: 92vh;
    padding: 150px 40px 90px;
    background: linear-gradient(180deg, var(--bila) 0%, #FDFBF6 55%, var(--bg-cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-znak {
    width: 62px;
    height: 62px;
    opacity: 0.9;
  }
  .hero-misto {
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 500;
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-deep);
    max-width: 15ch;
  }
  .hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(17px, 2vw, 23px);
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
  }
  .hero-text {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 54ch;
    font-weight: 300;
  }
  .hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .accent-wave {
    width: 280px;
    height: 1px;
    margin: 30px 0 0 0;
    background: linear-gradient(to right,
      transparent 0%,
      rgba(194, 136, 64, 0.1) 5%,
      var(--gold) 30%,
      var(--gold) 60%,
      rgba(194, 136, 64, 0.4) 80%,
      transparent 100%
    );
  }
  .accent-wave-center { margin: 30px auto 0; }

  /* PRIMARY BUTTON */
  .btn-primary {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--text-deep);
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s;
    border: 1px solid var(--text-deep);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: var(--font-body);
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: -1;
  }
  .btn-primary:hover { border-color: var(--gold); }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary .arrow { transition: transform 0.3s; }
  .btn-primary.open .arrow { transform: rotate(180deg); }

  /* ROZBALOVACÍ KONTAKTNÍ KARTA */
  .contact-card {
    width: 100%;
    max-width: 580px;
    margin-top: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
  }
  .contact-card.open { max-height: 800px; opacity: 1; }
  .contact-card-inner {
    background: var(--bg-warm);
    padding: 36px 32px;
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
  }
  .contact-card-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 500;
  }
  .contact-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-deep);
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.2;
  }
  .contact-card-title em { font-style: italic; color: var(--gold); }
  .contact-card-intro {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
    font-weight: 300;
  }
  .stylist-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--border);
  }
  .stylist-row:first-of-type { border-top: none; padding-top: 0; }
  .stylist-info { flex: 1; min-width: 130px; }
  .stylist-info-name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-deep);
    font-weight: 400;
    line-height: 1.1;
  }
  .stylist-info-role {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-top: 4px;
  }
  .stylist-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
  .stylist-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-cream);
    color: var(--text-deep);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.3s;
    font-family: var(--font-body);
  }
  .stylist-btn:hover { background: var(--text-deep); color: var(--bg-cream); border-color: var(--text-deep); }
  .stylist-btn.whatsapp:hover { background: #25D366; color: white; border-color: #25D366; }

  /* SECONDARY BUTTON */
  .btn-secondary {
    display: inline-block;
    padding: 18px 0;
    color: var(--text-deep);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    font-weight: 500;
    transition: color 0.3s;
    font-family: var(--font-body);
  }
  .btn-secondary:hover { color: var(--gold); }
  .btn-secondary-light {
    color: var(--bg-cream);
  }
  .btn-secondary-light:hover { color: var(--gold-light); }


  /* ==========================================================
     SEKCE — společné
     ========================================================== */
  .section {
    padding: 140px 60px;
    margin: 0;
    position: relative;
  }
  .section-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }
  .section-bg-cream { background: var(--bg-cream); }
  .section-bg-warm { background: var(--bila); }

  .section-title {
    font-family: var(--font-display);
    font-size: 54px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    color: var(--text-deep);
  }
  .section-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }

  /* ==========================================================
     O SALONU
     ========================================================== */
  .about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
  }
  .about-image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-image-main {
    height: 520px;
    background: linear-gradient(135deg, var(--bg-sand), var(--gold-light));
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .about-image-main::after {
    content: '⌘ Portrét Martina';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(31, 26, 20, 0.4);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
  }
  .about-image-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .about-image-thumb {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-warm));
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .about-image-thumb::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(31, 26, 20, 0.35);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 12px;
    text-align: center;
    padding: 8px;
  }
  .about-image-thumb:nth-child(1)::after { content: '⌘ Recepce'; }
  .about-image-thumb:nth-child(2)::after { content: '⌘ Křeslo'; }
  .about-image-thumb:nth-child(3)::after { content: '⌘ Detail'; }

  .about-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.95;
    font-weight: 300;
  }
  .about-content .lead {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    color: var(--text-deep);
    margin-bottom: 36px;
    line-height: 1.5;
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    font-weight: 300;
  }

  /* "Proč to dělám" personal block */
  .why-block {
    margin-top: 48px;
    padding: 36px 36px 36px 40px;
    background: var(--bg-cream);
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
    position: relative;
  }
  .why-block-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .why-block-label::before { content: '— '; }
  .why-block h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--text-deep);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
  }
  .why-block p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 300;
  }
  .why-block p:last-of-type { margin-bottom: 24px; }
  .why-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--gold-dark);
  }
  .why-signature::before { content: '— '; }

  /* ==========================================================
     KOLEKCE
     ========================================================== */
  .collections-section {
    background: var(--bg-cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .collections-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
  }
  .collections-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .collection {
    background: var(--bg-warm);
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.5s, box-shadow 0.5s;
    cursor: default;
  }
  .collection:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -16px rgba(31, 26, 20, 0.12);
  }
  .collection-image {
    height: 320px;
    position: relative;
  }
  .collection-image::after {
    content: '⌘ Foto';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-display);
    font-style: italic;
  }
  .collection-image-runway    { background: linear-gradient(135deg, #555, #1a1a1a); }
  .collection-image-pure      { background: linear-gradient(135deg, #c5917a, #6b3920); }
  .collection-image-red       { background: linear-gradient(135deg, #d9a8a8, #6b1a1a); }
  .collection-image-originals { background: linear-gradient(135deg, #d9a8c8, #5a3a5a); }
  .collection-year {
    position: absolute;
    top: 20px; left: 20px;
    color: var(--bg-cream);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    font-weight: 500;
  }
  .collection-content { padding: 28px 24px; }
  .collection-tag {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
  }
  .collection-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 14px;
    color: var(--text-deep);
    letter-spacing: -0.3px;
    line-height: 1.15;
  }
  .collection-desc {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ==========================================================
     GALERIE PRACÍ — Karusel archů + Lightbox
     ========================================================== */
  .gallery-section {
    padding: 140px 60px;
    background: var(--bila);
  }
  .gallery-section .gallery-header {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .gallery-header { text-align: center; margin-bottom: 60px; }
  
  /* Stylist filter pills */
  .gallery-stylist-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .gallery-filter-pill {
    padding: 10px 22px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-soft, #6a5a48);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 3px;
  }
  .gallery-filter-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .gallery-filter-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }
  
  /* === KARUSEL ARCHŮ — horizontální scroll s snap === */
  /* Pretty webkit scrollbar */
  
  
  /* Velikosti */
  
  /* Quote/logo styling */
  
  
  /* Bez pozadí varianty */
  
  /* Dimmed pro filter */
  
  /* Empty state */
  .gallery-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-soft, #6a5a48);
    font-style: italic;
    padding: 80px;
    text-align: center;
    width: 1200px;
    height: 1200px;
    max-width: 100%;
  }
  .gallery-loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin-bottom: 16px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  
  /* Page dots */
  
  /* === LIGHTBOX === */
  .gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 12, 8, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .gallery-lightbox.active {
    display: flex;
    opacity: 1;
  }
  .gallery-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .gallery-lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
  }
  .gallery-lightbox-caption {
    color: var(--bg-cream);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    text-align: center;
    letter-spacing: 1px;
    max-width: 600px;
  }
  .gallery-lightbox-caption .stylist-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 2px 10px;
    margin-right: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-style: normal;
    border-radius: 2px;
  }
  .gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--bg-cream);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    transition: all 0.2s ease;
  }
  .gallery-lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
  }
  .gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--bg-cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .gallery-lightbox-prev { left: 30px; }
  .gallery-lightbox-next { right: 30px; }
  .gallery-lightbox-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
  }
  .gallery-lightbox-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  
  /* Mobile responsive */
  @media (max-width: 1280px) {
  }
  
  /* ==========================================================
     REFERENCE
     ========================================================== */
  .reference-section {
    background: var(--bg-cream);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .reference-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
  }
  .reference-header { text-align: center; margin-bottom: 80px; }

  .reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
  }
  .reference-card {
    background: var(--bg-warm);
    padding: 44px 36px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
  }
  .reference-quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.4;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
    user-select: none;
  }
  .reference-text {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 28px;
    font-weight: 400;
  }
  .reference-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 14px;
  }
  .reference-author {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
  }
  .reference-author-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 300;
    font-family: var(--font-display);
    font-style: italic;
  }

  /* Reference screenshots */
  .reference-screens-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .reference-screens-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-style: italic;
    color: var(--text-deep);
    margin-bottom: 12px;
    font-weight: 400;
  }
  .reference-screens-header p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    font-weight: 300;
  }
  .reference-screens {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .reference-screen {
    aspect-ratio: 9/16;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    text-align: center;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(31, 26, 20, 0.06);
  }

  /* ==========================================================
     INVESTICE DO PÉČE (CENÍK) — TMAVĚ HNĚDÁ, NE ČERNÁ
     ========================================================== */
  .pricing-section {
    background: var(--bg-deep);
    color: var(--text-deep);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .pricing-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
  }
  .pricing-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-header .section-title {
    color: var(--text-deep);
  }
  .pricing-header .section-title em { color: var(--gold); }
  .pricing-intro {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 32px;
    font-weight: 300;
  }
  .pricing-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-top: 24px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
  }
  .pricing-card {
    background: var(--bg-cream);
    padding: 50px 40px;
    border-radius: 4px;
    border: 1px solid var(--border);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  }
  .pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px -16px rgba(31, 26, 20, 0.1);
  }
  .pricing-card-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
  }
  .pricing-card-name {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    color: var(--text-deep);
    margin-bottom: 8px;
  }
  .pricing-card-role {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .pricing-list { list-style: none; }
  .pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 16px 0;
    border-bottom: 1px dashed var(--border);
    gap: 20px;
  }
  .pricing-item:last-child { border-bottom: none; }
  .pricing-item-name {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-deep);
    font-weight: 400;
    flex: 1;
  }
  .pricing-item-detail {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
    display: block;
    margin-top: 2px;
  }
  .pricing-item-price {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-dark);
    font-weight: 400;
    white-space: nowrap;
  }
  .pricing-item-price .from {
    font-size: 11px;
    color: var(--text-muted);
    margin-right: 4px;
    font-style: italic;
    font-weight: 300;
  }
  .pricing-cta {
    text-align: center;
    margin-top: 60px;
  }
  .pricing-cta-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 300;
  }

  /* ==========================================================
     FAQ
     ========================================================== */
  .faq-section {
    padding: 140px 60px;
    background: var(--bila);
  }
  .faq-section .faq-header,
  .faq-section .faq-list {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .faq-header { text-align: center; margin-bottom: 60px; }
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-deep);
    transition: color 0.3s;
    gap: 24px;
    font-weight: 400;
  }
  .faq-question:hover { color: var(--gold); }
  .faq-icon {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 300;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .faq-answer-inner {
    padding: 0 0 24px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 92%;
  }
  .faq-answer-inner em {
    color: var(--text-deep);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 16px;
  }

  /* ==========================================================
     KONTAKT — s mapou
     ========================================================== */
  .contact {
    padding: 140px 60px;
    background: var(--bg-cream);
  }
  .contact-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
  }
  .contact-intro {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 36px;
    margin-bottom: 50px;
    font-weight: 300;
    max-width: 480px;
  }
  .contact-info {
    display: flex;
    flex-direction: column;
  }
  .opening-hours {
    background: var(--bg-warm);
    padding: 28px 32px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    margin-bottom: 24px;
  }
  .opening-hours-title {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .opening-hours-title::before { content: '— '; }
  .opening-hours-content {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-deep);
    line-height: 1.4;
    font-weight: 400;
  }
  .opening-hours-note {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 300;
  }
  .contact-stylists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
  }
  .stylist-contact {
    background: var(--bg-warm);
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s, transform 0.3s;
  }
  .stylist-contact:hover {
    border-color: var(--gold);
    transform: translateX(4px);
  }
  .stylist-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
  }
  .stylist-contact-name {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-deep);
  }
  .stylist-contact-role {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .stylist-contact-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .stylist-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-warm);
    color: var(--text-deep);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s;
    font-family: var(--font-body);
  }
  .stylist-action:hover { background: var(--text-deep); color: var(--bg-cream); }
  .stylist-action.whatsapp:hover { background: #25D366; color: white; }
  .stylist-action svg { width: 14px; height: 14px; flex-shrink: 0; }

  .contact-address {
    display: none;
  }
  .contact-address-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .contact-address-title::before { content: '— '; }
  .contact-address-content {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--text-deep);
    line-height: 1.5;
    font-weight: 300;
  }

  /* MAPA */
  .contact-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .contact-map {
    flex: 1;
    min-height: 440px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px -20px rgba(31, 26, 20, 0.15);
  }
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: sepia(20%) saturate(90%) hue-rotate(355deg) brightness(0.98);
  }
  /* Překryv mapy — drží Google mimo, dokud návštěvník nesouhlasí */
  .map-souhlas {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    text-align: center;
    background: var(--bg-warm);
  }
  .map-souhlas.skryto {
    display: none;
  }
  .map-souhlas-text {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
  }
  .map-souhlas-btn {
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bg-cream);
    background: var(--text-deep);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .map-souhlas-btn:hover {
    background: var(--gold-dark);
  }
  .map-souhlas-odkaz {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .map-souhlas-odkaz:hover {
    color: var(--gold-dark);
  }

  .contact-map-actions {
    display: none;
  }
  .map-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--text-deep);
    color: var(--bg-cream);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    transition: all 0.3s;
    font-family: var(--font-body);
  }
  .map-cta:hover { background: var(--gold); }
  .map-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
  .map-distance {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ==========================================================
     CLOSING — tmavá hnědá
     ========================================================== */
  .closing {
    background: var(--bg-deep);
    color: var(--text-deep);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .closing-inner { position: relative; z-index: 1; }
  .closing-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
  .closing-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    line-height: 1.45;
    color: var(--text-deep);
    margin-bottom: 24px;
    font-weight: 400;
  }
  .closing-quote em { color: var(--gold-dark); font-weight: 400; }
  .closing-author {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .closing-author::before { content: '— '; }

  /* ==========================================================
     FOOTER — Čistý řádek
     ========================================================== */
  .footer {
    background: var(--text-deep);
    color: var(--bg-cream);
    padding: 36px 60px 24px;
  }

  .footer-row {
    max-width: 1300px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer-row-logo {
    flex-shrink: 0;
  }
  .footer-row-logo img {
    height: 40px;
    width: auto;
    display: block;
  }

  .footer-row-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--bg-warm);
    font-weight: 300;
    letter-spacing: 0.3px;
  }
  .footer-row-info a {
    color: var(--bg-warm);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-row-info a:hover {
    color: var(--gold);
  }
  .footer-row-info .dot {
    color: var(--text-light);
    opacity: 0.4;
    user-select: none;
  }
  .footer-row-info .label {
    color: var(--text-light);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 4px;
  }

  .footer-row-social {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
  }
  .footer-row-social a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
  }
  .footer-row-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }
  .footer-row-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.4px;
  }
  .footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-bottom a:hover { color: var(--gold-light); }
  .footer-bottom strong {
    color: var(--bg-warm);
    font-weight: 500;
  }
  .footer-meta {
    text-align: right;
  }

  @media (max-width: 900px) {
    .footer { padding: 32px 24px 20px; }
    .footer-row {
      gap: 20px;
    }
    .footer-row-info { font-size: 12px; gap: 16px; }
  }

  @media (max-width: 700px) {
    .footer { padding: 28px 20px 100px; }
    .footer-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .footer-row-info {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .footer-row-info .dot { display: none; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.6;
    }
    .footer-meta { text-align: left; }
  }

  /* ==========================================================
     STICKY MOBILE BAR
     ========================================================== */
  .sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--bg-cream);
    border-top: 2px solid var(--gold);
    box-shadow: 0 -4px 20px rgba(31, 26, 20, 0.1);
    z-index: 90;
  }
  .sticky-mobile-row {
    display: flex;
    justify-content: space-around;
  }
  .sticky-btn {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: none;
    border: none;
    border-right: 1px solid var(--border);
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s;
  }
  .sticky-btn:last-child { border-right: none; }
  .sticky-btn:active { background: var(--bg-warm); }
  .sticky-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0 auto 4px;
    color: var(--gold);
  }
  .sticky-btn-icon svg { width: 22px; height: 22px; }
  .sticky-btn-label {
    display: block;
    font-size: 10px;
    color: var(--text-deep);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .sticky-panel {
    display: none;
    position: fixed;
    bottom: 76px; left: 0; right: 0;
    background: var(--bg-cream);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(31, 26, 20, 0.15);
    z-index: 89;
    padding: 16px;
  }
  .sticky-panel.active { display: block; }
  .sticky-panel-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 500;
    font-family: var(--font-body);
  }
  .sticky-panel-options {
    display: flex;
    gap: 10px;
  }
  .sticky-panel-option {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--gold);
    color: var(--text-deep);
    font-family: var(--font-display);
    transition: all 0.3s;
    border-radius: 3px;
  }
  .sticky-panel-option:active { background: var(--gold); color: var(--bg-cream); }
  .sticky-panel-name {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 400;
  }
  .sticky-panel-num {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }


  /* ==========================================================
     BLOG / RADY
     ========================================================== */
  .blog-section {
    padding: 140px 60px;
    background: var(--bg-cream);
  }
  .blog-section-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .blog-header { text-align: center; margin-bottom: 80px; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .blog-card {
    background: var(--bg-warm);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -16px rgba(31, 26, 20, 0.1);
  }
  .blog-card-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-deep), var(--gold-light));
    position: relative;
  }
  .blog-card-image::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(31, 26, 20, 0.4);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 13px;
  }
  .blog-card.bc-1 .blog-card-image::after { content: '⌘ Náhled článku 01'; }
  .blog-card.bc-2 .blog-card-image::after { content: '⌘ Náhled článku 02'; }
  .blog-card.bc-3 .blog-card-image::after { content: '⌘ Náhled článku 03'; }
  .blog-card.bc-4 .blog-card-image::after { content: '⌘ Náhled článku 04'; }

  .blog-card-content {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .blog-card-date {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 12px;
  }
  .blog-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-deep);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .blog-card-title em { color: var(--gold); font-style: italic; }
  .blog-card-excerpt {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  .blog-card-link {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    align-self: flex-start;
    font-weight: 500;
    transition: color 0.3s;
  }
  .blog-card-link:hover { color: var(--gold); }

  .blog-cta {
    text-align: center;
    margin-top: 60px;
  }

  @media (max-width: 900px) {
    .blog-section { padding: 100px 40px; }
    .blog-grid { grid-template-columns: 1fr; gap: 30px; }
  }
  @media (max-width: 700px) {
    .blog-section { padding: 70px 24px; }
  }

  /* ==========================================================
     RESPONSIVE
     ========================================================== */
  @media (max-width: 1100px) {
    .hero { padding: 120px 40px 70px; }
    .section { padding: 100px 40px; }
    .section-title { font-size: 42px; }
    .about { gap: 50px; }
    .collections-section, .pricing-section, .reference-section { padding: 100px 0; }
    .collections-inner, .pricing-inner, .reference-inner { padding: 0 40px; }
    .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .gallery-section, .faq-section { padding: 100px 40px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .reference-grid { grid-template-columns: 1fr; gap: 30px; }
    .reference-screens { grid-template-columns: repeat(2, 1fr); }
    .closing { padding: 64px 40px; }
    .closing-quote { font-size: 24px; }
    .contact { padding: 100px 40px; }
    .contact-grid { gap: 50px; }
  }

  @media (max-width: 700px) {
    .hero { padding: 104px 24px 60px; }
    .hero-actions { flex-direction: column; gap: 16px; }
    .section { padding: 70px 24px; }
    .section-title { font-size: 32px; }
    .about { grid-template-columns: 1fr; gap: 40px; }
    .about-image-main { height: 360px; }
    .collections-section, .pricing-section, .reference-section { padding: 70px 0; }
    .collections-inner, .pricing-inner, .reference-inner { padding: 0 24px; }
    .collection-image { height: 280px; }
    .collections-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .collection-content { padding: 30px 24px; }
    .pricing-card { padding: 36px 24px; }
    .pricing-card-name { font-size: 32px; }
    .gallery-section, .faq-section { padding: 70px 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 4/3; }
    .gallery-caption { opacity: 1; background: linear-gradient(to top, rgba(31, 26, 20, 0.85) 0%, rgba(31, 26, 20, 0) 60%); }
    .reference-grid { gap: 20px; }
    .reference-card { padding: 32px 24px; }
    .reference-screens { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .closing { padding: 50px 24px; }
    .closing-quote { font-size: 20px; }
    .contact { padding: 70px 24px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-map { min-height: 320px; height: 320px; }
    .contact-intro-block { margin-bottom: 40px; }
    .contact-map-wrapper { position: static; }
    .footer { padding: 32px 24px 90px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-meta { text-align: left; }
    .why-block { padding: 28px 24px; }
    .stylist-contact-header { flex-direction: column; gap: 4px; align-items: flex-start; }
    .strand-divider { height: 80px; }
    .sticky-mobile { display: block; }
  }

  /* ==========================================================
     OVLÁDÁNÍ KLÁVESNICÍ A CITLIVOST NA POHYB
     Dřív web neměl jediný :focus styl — kdo se pohybuje tabulátorem,
     neviděl, kde je. A všechny animace jely i lidem, kteří si v systému
     vypnuli pohyb (nevolnost, migrény).
     ========================================================== */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  summary:focus-visible,
  [tabindex]:focus-visible {
    outline: 2px solid var(--gold-dark);
    outline-offset: 3px;
    border-radius: 2px;
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    /* Prvky, které se objevují scrollem, musí zůstat vidět */
    .fade-in, .fade-in-right, .stagger-children > * {
      opacity: 1 !important;
      transform: none !important;
    }
  }

  /* ==========================================================
     PÁS S FOTKOU SALONU POD ÚVODEM
     Fotka je v plné síle — rozplývají se jen její okraje do sousedních
     sekcí, aby mezi nimi nebyl tvrdý řez. Dokud fotka není, sekce je
     skrytá a web nevypadá rozdělaně.
     ========================================================== */
  .uvod-foto {
    position: relative;
    background: var(--bg-cream);
    line-height: 0;
  }
  .uvod-foto img {
    width: 100%;
    height: clamp(280px, 46vh, 560px);
    object-fit: cover;
    display: block;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  }

  /* Oddělovač patřící ke skryté sekci se skryje s ní — jinak by se dva
     slepily za sebou. Až se sekce v editoru zapne, vrátí se i oddělovač. */
  .strand-divider:has(+ [hidden]) {
    display: none;
  }

  /* Barvy sekcí přiděluje skript podle jejich pořadí (dá se přehazovat
     v editoru). Vyšší váha než výchozí pravidla výš, takže je přebijí —
     a bez JavaScriptu zůstanou platit ta výchozí. */
  section.na-bile   { background: var(--bila); }
  section.na-kremove { background: var(--bg-cream); }

  /* Nahrané fotky v místech, která byla dřív prázdná (portréty, kolekce).
     Dokud fotka není, obrázek se neukazuje a zůstane původní podklad. */
  .stylist-portrait img,
  .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .stylist-portrait img:not([src]),
  .stylist-portrait img[src=""],
  .collection-image img:not([src]),
  .collection-image img[src=""] {
    display: none;
  }
  .stylist-portrait img { border-radius: 50%; }
  .stylist-portrait:has(img[src]:not([src=""]))::after,
  .collection-image:has(img[src]:not([src=""]))::after { content: none; }

  /* ==========================================================
     GALERIE PRACÍ — dlaždicová mřížka
     Fotky se skládají do sloupců podle výšky. Dřív to bylo pevné
     čtvercové plátno se souřadnicemi u každé fotky — odtud bílé prázdno
     pod obsahem a nemožnost cokoli přidat bez přepočítávání pozic.
     ========================================================== */
  /* Šířka dlaždice, ne počet sloupců — sloupců se pak vejde tolik, kolik
     se vejde, přesně jako na Pinterestu. Na mobilu vyjdou dva, na velké
     obrazovce klidně šest. */
  .galerie-mrizka {
    column-width: 240px;
    column-gap: 16px;
    max-width: 1560px;
    margin: 0 auto;
  }
  .galerie-dlazdice {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-warm);
    cursor: zoom-in;
    break-inside: avoid;
    transition: filter .25s ease;
  }
  .galerie-dlazdice::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(31, 26, 20, 0);
    transition: background .25s ease;
  }
  .galerie-dlazdice:hover::after { background: rgba(31, 26, 20, .28); }
  .galerie-dlazdice:focus-visible {
    outline: 3px solid var(--gold-dark);
    outline-offset: 3px;
  }
  .galerie-dlazdice img {
    width: 100%;
    height: auto;
    display: block;
  }
  .galerie-znacka {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 12px;
    padding: 5px 11px;
    background: rgba(31, 26, 20, .72);
    color: var(--bg-cream);
    border-radius: 2px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .galerie-dlazdice:hover .galerie-znacka { opacity: 1; transform: translateY(0); }
  .galerie-prazdno {
    column-span: all;
    padding: 60px 20px;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    color: var(--text-light);
  }

  @media (max-width: 620px) { .galerie-mrizka { column-width: 150px; column-gap: 12px; } }

  /* Došoupnutí dalších fotek — bez něj by se galerie s přibývajícími
     fotkami natáhla přes několik obrazovek. */
  .galerie-dalsi {
    column-span: all;
    display: block;
    margin: 14px auto 0;
    padding: 15px 34px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-deep);
    background: transparent;
    border: 1px solid var(--border-strong, var(--border));
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }
  .galerie-dalsi:hover {
    color: var(--bg-cream);
    background: var(--text-deep);
    border-color: var(--text-deep);
  }

  /* Blog — fotka v kartě a prázdný stav */
  .blog-card-image { position: relative; overflow: hidden; }
  .blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .blog-prazdno {
    grid-column: 1 / -1;
    padding: 50px 20px;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-light);
  }
