
  :root{
    --gold: #c9a04a;
    --gold-dark: #a67f2f;
    --ink: #131b3d;      /* navy */
    --cream: #fbf6ea;
    --paper: #ffffff;
    --text-muted: #5b6178;
    --line: #ececf2;
    --page-bg: #fbfaf7;
    --danger: #b3382c;
  }

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

  html,body{
    width:100%;
    height:100%;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--paper);
    overflow-x:hidden;
  }

  body{ display:flex; flex-direction:column; min-height:100vh; }
  .page-main{ flex:1 0 auto; }
  [id]{ scroll-margin-top: 100px; }

  /* ---------- HEADER (pozadie cez celú šírku, obsah zarovnaný na šírku stránky) ---------- */
  .site-header{
    position: sticky;
    top:0;
    z-index: 30;
    background: var(--paper);
    box-shadow: 0 2px 12px rgba(19,27,61,0.08);
  }

  .header-card{
    max-width: 1080px;
    margin: 0 auto;
    padding: 16px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }

  .brand{ display:flex; align-items:center; gap:12px; text-decoration:none; flex-shrink:0; }
  .brand svg{ width:30px; height:auto; display:block; flex-shrink:0; }
  .brand .wordmark{ line-height:1.15; text-align:left; }
  .brand .wordmark .l1{ display:block; font-family:'Helvetica Neue',Arial,sans-serif; font-size:1rem; font-weight:800; letter-spacing:.03em; color:var(--ink); }
  .brand .wordmark .l2{ display:block; font-family:'Helvetica Neue',Arial,sans-serif; font-size:.7rem; font-weight:600; letter-spacing:.3em; color:var(--ink); opacity:.8; }

  .nav-desktop{ display:none; align-items:center; gap:26px; }
  .nav-desktop a{
    font-family:'Helvetica Neue',Arial,sans-serif;
    font-size:.86rem; font-weight:600;
    color:var(--ink); text-decoration:none;
    white-space:nowrap;
  }
  .nav-desktop a:hover{ color: var(--gold-dark); }
  .nav-desktop a.active{ color: var(--gold-dark); }

  /* ---------- Ikony vpravo (lupa + prihlásenie) — len na PC ---------- */
  .header-actions{ display:none; align-items:center; gap:10px; flex-shrink:0; }
  .icon-circle-btn{
    width:40px; height:40px; border-radius:50%;
    border:1.5px solid var(--line); background:#fff; color:var(--ink);
    display:flex; align-items:center; justify-content:center; cursor:pointer;
    text-decoration:none; flex-shrink:0;
    transition:border-color .15s ease, color .15s ease;
  }
  .icon-circle-btn svg{ width:18px; height:18px; }
  .icon-circle-btn:hover{ border-color:var(--gold); color:var(--gold-dark); }

  .hamburger-btn{
    width:44px; height:44px;
    border-radius:50%;
    background: var(--ink);
    border:none;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-shrink:0;
  }
  .hamburger-btn span{
    width:18px;
    height:2px;
    background: var(--cream);
    display:block;
    border-radius:1px;
    transition: transform .3s ease, opacity .3s ease;
  }
  .hamburger-btn.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .hamburger-btn.open span:nth-child(2){ opacity:0; }
  .hamburger-btn.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* ---------- Rozbaľovací vyhľadávací riadok (po kliknutí na lupu) ---------- */
  .header-search-bar{
    max-width:1080px; margin:0 auto; display:flex; align-items:center; gap:10px;
    background:#fff; border-radius:14px; box-shadow:0 4px 18px rgba(19,27,61,0.10);
    padding:0 20px; margin-top:8px;
    max-height:0; opacity:0; overflow:hidden; pointer-events:none;
    transition:max-height .3s ease, opacity .25s ease, padding .3s ease, margin-top .3s ease;
  }
  .header-search-bar.open{
    max-height:64px; opacity:1; padding:12px 20px; pointer-events:auto;
  }
  .header-search-bar svg{ width:18px; height:18px; color:var(--text-muted); flex-shrink:0; }
  .header-search-bar input{
    flex:1; border:none; outline:none; font-size:.92rem; font-family:'Helvetica Neue',Arial,sans-serif;
  }
  .header-search-bar button{
    border:none; background:none; cursor:pointer; color:var(--text-muted); font-size:1rem; flex-shrink:0;
  }
  .header-search-bar button:hover{ color:var(--ink); }

  @media (min-width: 880px){
    .nav-desktop{ display:flex; }
    .header-actions{ display:flex; }
    .hamburger-btn{ display:none; }
  }

  /* ---------- SIDE MENU (white) ---------- */
  .menu-overlay{
    position:fixed; inset:0;
    background: rgba(19,27,61,.25);
    opacity:0;
    pointer-events:none;
    transition: opacity .35s ease;
    z-index:40;
  }
  .menu-overlay.open{ opacity:1; pointer-events:auto; }

  .side-menu{
    position:fixed;
    top:0; right:-320px;
    width:300px;
    max-width:82vw;
    height:100vh;
    background: var(--paper);
    z-index:50;
    padding: 90px 40px 40px;
    display:flex;
    flex-direction:column;
    gap:28px;
    transition: right .45s cubic-bezier(.19,1,.22,1);
    box-shadow: -10px 0 34px rgba(0,0,0,0.14);
  }
  .side-menu.open{ right:0; }

  .side-menu-close{
    position:absolute;
    top:22px;
    right:24px;
    width:38px;
    height:38px;
    border:none;
    background:none;
    cursor:pointer;
    font-size:1.5rem;
    line-height:1;
    color: var(--ink);
  }

  .side-menu a{
    color: var(--ink);
    text-decoration:none;
    letter-spacing:.16em;
    text-transform:uppercase;
    font-size:1.05rem;
    padding-bottom:6px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, opacity .2s ease;
  }
  .side-menu a:hover{ border-color: var(--gold); }

  /* ---------- HERO / INTRO ---------- */
  .hero{
    display:none; /* úvodná animácia (vtáčiky/intro) bola úplne zrušená */
  }

  .mark{
    position:relative;
    z-index:3;
    width:150px;
    height:190px;
    opacity:0;
    transform: translateY(14px) scale(0.94);
    animation: rise 1.1s cubic-bezier(.19,1,.22,1) forwards;
    filter: drop-shadow(0 6px 18px rgba(19,27,61,0.18));
  }
  .mark svg{ width:100%; height:100%; display:block; }

  .dot{ animation: blink 2.6s ease-in-out infinite; }
  .dot:nth-child(2){ animation-delay: .15s; }
  .dot:nth-child(3){ animation-delay: .3s; }

  .title{
    position:relative;
    z-index:3;
    margin-top: 34px;
    letter-spacing: 0.32em;
    font-size: clamp(1.6rem, 4.4vw, 3.1rem);
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 400;
    opacity:0;
    transform: translateY(10px);
    animation: rise 1s cubic-bezier(.19,1,.22,1) forwards;
    animation-delay: .5s;
    text-align:center;
  }
  .title strong{
    display:block;
    font-weight:700;
    letter-spacing: 0.34em;
    color: var(--ink);
  }

  .sub{
    position:relative;
    z-index:3;
    margin-top: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: rgba(19,27,61,0.55);
    text-transform: uppercase;
    opacity:0;
    animation: rise 1s cubic-bezier(.19,1,.22,1) forwards;
    animation-delay: .8s;
  }

  @keyframes rise{ to{ opacity:1; transform: translateY(0) scale(1); } }
  @keyframes blink{ 0%,100%{ opacity:1; } 50%{ opacity:.45; } }

  @media (max-width: 480px){ .mark{ width:112px; height:145px; } }

  /* ---------- BIRDS: perch on the 3 cubes, then take off ---------- */
  #birds{ position:absolute; inset:0; z-index:1; pointer-events:none; }
  .bird{
    position:absolute;
    animation-name: perchAndFly;
    animation-timing-function: cubic-bezier(.45,.05,.55,.95);
    animation-fill-mode: forwards;
  }
  .bird svg{ width:100%; height:100%; display:block; }
  .wing{
    transform-box: fill-box;
    transform-origin: 100% 50%;
    animation: flap .55s ease-in-out infinite alternate;
  }
  .bird .wing-r{ transform-origin: 0% 50%; }
  .bird.launched .wing{ animation-duration: .28s; }

  @keyframes flap{ from{ transform: scaleY(1); } to{ transform: scaleY(0.25); } }

  @keyframes perchAndFly{
    0%{   transform: scale(0.5); opacity:0; }
    8%{   transform: scale(1); opacity:1; }
    36%{  transform: translate(var(--jx), var(--jy)) scale(1); opacity:1; }
    100%{ transform: translate(var(--dx), var(--dy)) scale(1); opacity:0; }
  }

  @media (prefers-reduced-motion: reduce){
    .mark,.title,.sub{ animation:none; opacity:1; transform:none; }
    .dot{ animation:none; }
    .bird{ display:none; }
    .hero{ transition:none; }
    .site-header{ transition:none; }
  }

  /* ---------- HERO CAROUSEL (Služby / Zdravie / Firmy / Blog) ---------- */
  .hero-carousel{
    position:relative;
    overflow:hidden;
    background: #fbfaf7;
  }
  .carousel-track{
    display:flex;
    transition: transform .6s cubic-bezier(.65,0,.35,1);
  }
  .carousel-slide{
    flex: 0 0 100%;
    min-width:100%;
    padding:64px 24px 56px;
    box-sizing:border-box;
  }
  .slide-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:64px;
    max-width:1000px;
    margin:0 auto;
  }
  .carousel-slide .hero-text{ max-width:560px; font-family:'Helvetica Neue',Arial,sans-serif; }
  .carousel-slide .hero-eyebrow{ display:flex; align-items:center; gap:8px; margin-bottom:20px; }
  .carousel-slide .hero-eyebrow .line{ width:40px; height:3px; background:var(--gold); border-radius:2px; }
  .carousel-slide .hero-eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); }
  .carousel-slide .hero-text h1{
    font-family:'Georgia','Times New Roman',serif;
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    line-height:1.18;
    font-weight:700;
    color: var(--ink);
    margin-bottom:18px;
  }
  .carousel-slide .hero-text p{
    font-size:.98rem;
    color: var(--text-muted);
    line-height:1.65;
    max-width:460px;
    margin-bottom:22px;
  }
  .hero-cta{
    display:inline-block;
    background: var(--ink);
    color: #fff;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-family:'Helvetica Neue',Arial,sans-serif;
    font-size:.86rem;
    font-weight:700;
  }
  .hero-cta:hover{ background:#1e2a55; }

  .carousel-slide .hero-illustration{ width:clamp(200px, 22vw, 300px); flex-shrink:0; }
  .carousel-slide .hero-illustration svg{ width:100%; height:auto; display:block; }

  .carousel-dots{
    display:flex; justify-content:center; gap:10px;
    padding-bottom:26px;
  }
  .carousel-dots .dot{
    width:9px; height:9px; border-radius:50%;
    background:#e3decb; border:none; cursor:pointer; padding:0;
    transition: background .2s ease, transform .2s ease;
  }
  .carousel-dots .dot.active{ background: var(--gold); transform:scale(1.25); }

  @media (max-width:760px){
    .carousel-slide{ position:relative; padding-top:36px; padding-right:130px; }
    .slide-inner{ display:block; max-width:100%; }
    .carousel-slide .hero-text{ max-width:100%; text-align:left; }
    .carousel-slide .hero-illustration{
      position:absolute; top:10px; right:20px; width:110px; opacity:.9;
    }
    .carousel-slide .hero-text h1{ font-size:1.7rem; }
  }

  @media (prefers-reduced-motion: reduce){
    .carousel-track{ transition:none; }
  }

  /* ---------- MAIN SITE CONTENT (white) ---------- */
  .site-content{
    background: var(--paper);
    color: var(--ink);
    padding: 70px 24px 100px;
  }
  .content-wrap{ max-width: 1080px; margin: 0 auto; }

  .section-head{
    display:flex;
    align-items:baseline;
    justify-content:space-between;
    margin-bottom: 28px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 12px;
  }
  .section-head h3{
    font-size: 1.6rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .section-head a{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration:none;
  }

  /* Novinky / articles grid */
  .article-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
  }
  .article-card{ display:flex; flex-direction:column; }
  .article-thumb{
    background: linear-gradient(135deg, var(--gold) 0%, #e9d29e 100%);
    height: 160px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .article-tag{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
  }
  .article-card h4{ font-size: 1.15rem; margin-bottom: 8px; line-height:1.3; color: var(--ink); }
  .article-card p{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .88rem;
    color: var(--text-muted);
    line-height:1.5;
    margin-bottom: 10px;
  }
  .article-date{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .75rem;
    color: var(--text-muted);
  }

  /* Zo sveta a mesta - news list */
  .news-list{
    display:flex;
    flex-direction:column;
    margin-bottom: 80px;
  }
  .news-item{
    display:flex;
    justify-content:space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e6f0;
  }
  .news-item:first-child{ padding-top:0; }
  .news-item h4{ font-size: 1.05rem; font-weight:400; color: var(--ink); }
  .news-item span{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .78rem;
    color: var(--text-muted);
    white-space:nowrap;
  }

  /* Dolezite info cards */
  .info-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .info-card{
    border-left: 4px solid var(--gold);
    background: #f6f3ec;
    padding: 18px 22px;
    border-radius: 2px;
  }
  .info-card h4{ font-size: 1.05rem; margin-bottom: 6px; color: var(--ink); }
  .info-card p{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .86rem;
    color: var(--text-muted);
    line-height:1.5;
  }

  @media (max-width: 860px){
    .article-grid{ grid-template-columns: 1fr; }
    .info-grid{ grid-template-columns: 1fr; }
    .service-grid{ grid-template-columns: 1fr; }
  }

  /* Praktické info / service cards */
  .service-intro{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .92rem;
    color: var(--text-muted);
    line-height:1.6;
    margin-bottom: 26px;
    max-width: 720px;
  }
  .service-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .service-card{
    border: 1px solid #e7e6f0;
    border-radius: 6px;
    padding: 22px 24px;
    display:flex;
    flex-direction:column;
    gap: 6px;
  }
  .service-tag{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
  }
  .service-card h4{
    font-size: 1.05rem;
    color: var(--ink);
    line-height:1.3;
    margin-bottom: 2px;
  }
  .service-desc{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .85rem;
    color: var(--text-muted);
    line-height:1.5;
    margin-bottom: 6px;
  }
  .service-line{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .85rem;
    color: var(--ink);
  }
  .service-line a{
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 2px;
  }
  .service-link{
    margin-top: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .8rem;
    letter-spacing: .05em;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
  }

  /* Firmy a služby — colorful category cards */
  .cat-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 80px;
  }
  @media (min-width: 700px){ .cat-grid{ grid-template-columns: repeat(4, 1fr); } }

  .cat-card{
    display:block;
    text-decoration:none;
    background: var(--paper);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 22px 20px 52px;
    position:relative;
    box-shadow: 0 2px 10px rgba(19,27,61,.04);
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .cat-card:hover{ transform: translateY(-3px); box-shadow: 0 12px 24px rgba(19,27,61,.09); }
  .cat-card .icon-circle{
    width:54px; height:54px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
  }
  .cat-card .icon-circle svg{ width:24px; height:24px; }
  .cat-card h4{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom:5px;
  }
  .cat-card p{
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: .82rem;
    color: var(--text-muted);
    line-height:1.4;
  }
  .cat-card .arrow-btn{
    position:absolute;
    bottom:16px; right:16px;
    width:32px; height:32px;
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .cat-card .arrow-btn svg{ width:14px; height:14px; }

  /* ---------- FOOTER ---------- */
  .site-footer{
    background: var(--ink);
    color: var(--cream);
    padding: 40px 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    flex-shrink:0;
  }
  .footer-top{
    max-width:1100px; margin:0 auto; padding-bottom:28px;
    display:flex; flex-wrap:wrap; gap:28px; justify-content:space-between; align-items:flex-start;
  }

  .footer-brand{ flex:1 1 280px; min-width:240px; }
  .footer-logo{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:var(--cream); margin-bottom:12px; }
  .footer-logo svg{ width:22px; height:auto; }
  .footer-logo span{ font-family:Georgia,serif; font-size:1.05rem; font-weight:700; letter-spacing:.02em; }
  .footer-copy{ font-size:.78rem; opacity:.7; line-height:1.5; max-width:320px; margin-bottom:8px; }
  .footer-address{ font-size:.8rem; opacity:.85; }
  .footer-address a{ color:var(--cream); text-decoration:none; }
  .footer-address a:hover{ color:var(--gold); text-decoration:underline; }

  .footer-social{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
  .social-btn{
    width:42px; height:42px; border-radius:50%; border:1.5px solid rgba(255,255,255,.35);
    display:flex; align-items:center; justify-content:center; color:var(--cream); text-decoration:none;
    transition:border-color .15s ease, color .15s ease;
  }
  .social-btn svg{ width:19px; height:19px; }
  .social-btn:hover{ border-color:var(--gold); color:var(--gold); }
  .social-empty-note{ font-size:.76rem; opacity:.55; }

  .footer-tip{ text-align:right; }
  .footer-tip p{ font-size:.9rem; opacity:.85; line-height:1.3; margin-bottom:6px; }
  .footer-tip a{ color:var(--gold); font-weight:700; font-size:1rem; text-decoration:none; }
  .footer-tip a:hover{ text-decoration:underline; }

  .footer-links-row{
    max-width:1100px; margin:0 auto; padding:18px 0; border-top:1px solid rgba(255,255,255,.12);
    display:flex; flex-wrap:wrap; gap:8px 24px;
  }
  .footer-links-row a{ color:var(--cream); text-decoration:none; font-size:.82rem; opacity:.8; }
  .footer-links-row a:hover{ opacity:1; color:var(--gold); }

  .footer-bottom{ max-width:1100px; margin:0 auto; padding:14px 0 24px; text-align:center; border-top:1px solid rgba(255,255,255,.08); }
  .footer-bottom .credit{ font-size:.76rem; opacity:.6; letter-spacing:.02em; }
  .footer-bottom .credit strong{ color: var(--gold); font-weight:700; letter-spacing:.06em; }

  /* ---------- COOKIE LIŠTA ---------- */
  .cookie-bar{
    position:fixed; left:16px; right:16px; bottom:18px; z-index:500;
    max-width:640px; margin:0 auto;
    background:#fff; color:var(--ink); border-radius:14px;
    box-shadow:0 10px 34px rgba(19,27,61,.18);
    padding:16px 18px; display:flex; align-items:center; gap:16px; flex-wrap:wrap;
    font-family:'Helvetica Neue',Arial,sans-serif;
    opacity:0; visibility:hidden; pointer-events:none;
    transform:translateY(20px);
    transition:opacity .4s ease, transform .4s ease, visibility 0s linear .4s;
  }
  .cookie-bar.visible{
    opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0);
    transition:opacity .4s ease, transform .4s ease;
  }
  .cookie-bar p{ flex:1; min-width:200px; font-size:.85rem; color:var(--text-muted); line-height:1.5; margin:0; }
  .cookie-bar a{ color:var(--gold-dark); text-decoration:underline; font-weight:600; }
  .cookie-bar button{
    flex-shrink:0; padding:10px 22px; border:none; border-radius:8px; background:var(--ink); color:#fff;
    font-weight:700; font-size:.83rem; cursor:pointer;
  }
  .cookie-bar button:hover{ background:#1e2a55; }
  @media (max-width:480px){
    .cookie-bar{ flex-direction:column; align-items:stretch; text-align:center; }
    .cookie-bar button{ width:100%; }
  }

  @media (max-width:700px){
    .footer-top{ flex-direction:column; align-items:flex-start; }
    .footer-tip{ text-align:left; }
    .footer-links-row{ gap:8px 16px; }
  }

