
      :root {
        --navy: #1a2744;
        --navy-light: #243660;
        --gold: #c9a84c;
        --gold-light: #e8c97a;
        --cream: #f7f3ee;
        --cream-dark: #ede8e0;
        --text: #2c2c2c;
        --text-light: #6b6b6b;
        --white: #ffffff;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Jost", sans-serif;
        color: var(--text);
        background: var(--cream);
        overflow-x: hidden;
      }

      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(26, 39, 68, 0.96);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
        animation: navSlideDown 0.6s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
      }
      @keyframes navSlideDown {
        from {
          transform: translateY(-100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 500;
        color: #fff;
        letter-spacing: 0.05em;
        text-decoration: none;
      }
      .nav-logo span {
        color: var(--gold);
      }
      nav ul {
        list-style: none;
        display: flex;
        gap: 36px;
      }
      nav ul a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.82rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: color 0.3s;
        position: relative;
      }
      nav ul a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
      }
      nav ul a:hover {
        color: var(--gold);
      }
      nav ul a:hover::after,
      nav ul a.active::after {
        transform: scaleX(1);
      }
      nav ul a.active {
        color: var(--gold);
      }

      footer {
        background: var(--navy);
        padding: 36px 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
      }
      .footer-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: #fff;
        letter-spacing: 0.08em;
      }
      .footer-logo span {
        color: var(--gold);
      }
      .footer-links {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      .footer-links a {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        letter-spacing: 0.05em;
        transition: color 0.3s;
      }
      .footer-links a:hover {
        color: var(--gold);
      }
      .footer-copy {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.05em;
      }
      .divider {
        width: 40px;
        height: 1px;
        background: var(--gold);
        margin: 0 auto;
        opacity: 0.4;
      }

      .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }
      .section-label::before {
        content: "";
        display: block;
        width: 30px;
        height: 1px;
        background: var(--gold);
      }
      h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 3.5vw, 3rem);
        font-weight: 400;
        color: var(--navy);
        margin-bottom: 48px;
        line-height: 1.2;
      }
      h2 em {
        font-style: italic;
        color: var(--navy-light);
      }
      .underline-anim {
        display: block;
        height: 2px;
        background: var(--gold);
        transform-origin: left;
        transform: scaleX(0);
        transition: transform 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        margin-top: 10px;
        width: 60px;
      }
      h2.is-visible .underline-anim {
        transform: scaleX(1);
      }

      .btn-primary {
        display: inline-block;
        padding: 14px 36px;
        background: var(--gold);
        color: var(--navy);
        text-decoration: none;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        transition: all 0.3s;
        position: relative;
        border: none;
        cursor: pointer;
      }
      .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
      }

      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .reveal-left {
        opacity: 0;
        transform: translateX(-50px);
        transition:
          opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(50px);
        transition:
          opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .stagger > * {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .stagger.is-visible > *:nth-child(1) {
        opacity: 1;
        transform: none;
        transition-delay: 0.05s;
      }
      .stagger.is-visible > *:nth-child(2) {
        opacity: 1;
        transform: none;
        transition-delay: 0.15s;
      }
      .stagger.is-visible > *:nth-child(3) {
        opacity: 1;
        transform: none;
        transition-delay: 0.25s;
      }
      .stagger.is-visible > *:nth-child(4) {
        opacity: 1;
        transform: none;
        transition-delay: 0.35s;
      }
      .is-visible {
        opacity: 1 !important;
        transform: none !important;
      }

      @media (max-width: 900px) {
        nav {
          padding: 16px 24px;
        }
        nav ul {
          display: none;
        }
        footer {
          padding: 32px 24px;
        }
        .footer-links {
          flex-direction: column;
          gap: 12px;
        }
      }

      /* PAGE HERO */
      .page-hero {
        padding: 160px 60px 80px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .page-hero::before {
        content: "Blog";
        position: absolute;
        right: -20px;
        bottom: -40px;
        font-family: "Cormorant Garamond", serif;
        font-size: 14rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.03);
        line-height: 1;
        pointer-events: none;
      }
      .page-hero-inner {
        max-width: 860px;
        margin: 0 auto;
      }
      .page-hero .section-label {
        color: var(--gold-light);
      }
      .page-hero .section-label::before {
        background: var(--gold-light);
      }
      .page-hero h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        font-weight: 300;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 20px;
      }
      .page-hero h1 em {
        font-style: italic;
        color: var(--gold-light);
      }
      .page-hero-desc {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.65);
        max-width: 560px;
        font-family: "Cormorant Garamond", serif;
        font-size: 1.25rem;
        font-style: italic;
      }
      .hero-wave {
        height: 70px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
      }

      /* ARCHIVE */
      .archive-section {
        padding: 72px 60px 100px;
      }
      .archive-inner {
        max-width: 860px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .archive-card {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--cream-dark);
        text-decoration: none;
        color: inherit;
        transition:
          transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.35s,
          border-color 0.3s;
        position: relative;
        overflow: hidden;
      }
      .archive-card::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(to bottom, var(--gold), var(--gold-light));
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .archive-card:hover {
        transform: translateX(6px);
        box-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
        border-color: rgba(201, 168, 76, 0.3);
      }
      .archive-card:hover::after {
        transform: scaleY(1);
      }

      .archive-card-num {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cormorant Garamond", serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: rgba(201, 168, 76, 0.2);
        background: var(--cream);
        border-right: 1px solid var(--cream-dark);
        transition: color 0.3s;
        padding: 28px 0;
      }
      .archive-card:hover .archive-card-num {
        color: rgba(201, 168, 76, 0.5);
      }
      .archive-card-body {
        padding: 28px 36px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .archive-card-tag {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
      }
      .archive-card-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 500;
        color: var(--navy);
        line-height: 1.3;
      }
      .archive-card-perex {
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-light);
        margin-top: 4px;
      }
      .archive-card-cta {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 8px;
        transition: letter-spacing 0.3s;
      }
      .archive-card:hover .archive-card-cta {
        letter-spacing: 0.18em;
      }

      /* CTA STRIP */
      .cta-strip {
        background: var(--navy);
        padding: 72px 60px;
        text-align: center;
      }
      .cta-strip h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 2rem;
        font-weight: 300;
        color: #fff;
        margin-bottom: 12px;
      }
      .cta-strip h3 em {
        font-style: italic;
        color: var(--gold-light);
      }
      .cta-strip p {
        font-size: 0.95rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 32px;
      }

      @media (max-width: 900px) {
        .page-hero {
          padding: 130px 24px 60px;
        }
        .archive-section {
          padding: 48px 24px 72px;
        }
        .archive-card {
          grid-template-columns: 60px 1fr;
        }
        .archive-card-body {
          padding: 20px 20px;
        }
        .cta-strip {
          padding: 56px 24px;
        }
      }
    

  /* ── Burger / drawer (doplněno) ── */
.nav-burger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 6px;
        z-index: 310;
        flex-shrink: 0;
      }
.nav-burger span {
        display: block;
        height: 1.5px;
        border-radius: 2px;
        background: rgba(255,255,255,0.9);
        transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), opacity 0.25s ease, width 0.3s ease;
        transform-origin: center;
      }
.nav-burger span:nth-child(3) { width: 60%; margin-left: auto; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 100%; }
.nav-drawer {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 300;
        background: rgba(15,25,52,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.35s cubic-bezier(0.22,1,0.36,1), transform 0.35s cubic-bezier(0.22,1,0.36,1);
        pointer-events: none;
      }
.nav-drawer.is-open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-drawer-logo {
        position: absolute; top: 20px; left: 24px;
        font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500;
        color: #fff; text-decoration: none; letter-spacing: 0.05em;
      }
.nav-drawer-logo span { color: var(--gold); }
.nav-drawer-close {
        position: absolute; top: 12px; right: 16px;
        background: none; border: none; cursor: pointer;
        color: rgba(255,255,255,0.7); font-size: 1.8rem; line-height: 1;
        padding: 10px 14px; z-index: 311; transition: color 0.2s;
      }
.nav-drawer-close:hover { color: var(--gold); }
.nav-drawer ul {
        list-style: none; display: flex; flex-direction: column;
        align-items: center; gap: 0; padding: 0; margin: 0;
      }
.nav-drawer ul li { opacity: 0; transform: translateY(16px); transition: opacity 0.35s ease, transform 0.35s ease; }
.nav-drawer.is-open ul li:nth-child(1) { opacity:1; transform:none; transition-delay:0.06s; }
.nav-drawer.is-open ul li:nth-child(2) { opacity:1; transform:none; transition-delay:0.12s; }
.nav-drawer.is-open ul li:nth-child(3) { opacity:1; transform:none; transition-delay:0.18s; }
.nav-drawer.is-open ul li:nth-child(4) { opacity:1; transform:none; transition-delay:0.24s; }
.nav-drawer.is-open ul li:nth-child(5) { opacity:1; transform:none; transition-delay:0.30s; }
.nav-drawer.is-open ul li:nth-child(6) { opacity:1; transform:none; transition-delay:0.36s; }
.nav-drawer ul a {
        font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
        color: rgba(255,255,255,0.85); text-decoration: none; letter-spacing: 0.03em;
        padding: 10px 40px; display: block; text-align: center; transition: color 0.2s;
      }
.nav-drawer ul a:hover { color: var(--gold); }
.nav-drawer-footer {
        position: absolute; bottom: 32px;
        font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
        color: rgba(255,255,255,0.2); opacity: 0; transition: opacity 0.4s 0.4s;
      }
.nav-drawer.is-open .nav-drawer-footer { opacity: 1; }
.nav-burger { display: flex; }
.nav-drawer { display: flex; }
.nav-drawer-footer {
      font-size: 0.75rem;
    }

  /* ── Instagram ikona v navigaci ── */
  .nav-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s, transform 0.3s;
    flex-shrink: 0;
    margin-left: 8px;
  }
  .nav-instagram:hover {
    color: var(--gold);
    transform: scale(1.15);
  }
  @media (max-width: 900px) {
    .nav-instagram { display: none; }
  }

.grecaptcha-badge { 
    visibility: hidden !important; 
}
