/* ── MOBILNÍ MENU ── */
      .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; }
      @media (max-width: 900px) {
        .nav-burger { display: flex; }
        nav ul { display: none; }
        .nav-drawer { display: flex; }
        nav { padding: 16px 20px; }
      }


      /* ── Scroll offset pro fixní hlavičku ── */
      section[id],
      div[id] {
        scroll-margin-top: 72px;
      }
      @media (max-width: 900px) {
        section[id],
        div[id] {
          scroll-margin-top: 64px;
        }
      }

    

/* ── ARTICLE / BLOG STYLES ── */

      :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 */
      .article-hero {
        padding: 150px 60px 72px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .article-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(201, 168, 76, 0.05) 0%,
          transparent 60%
        );
      }
      .article-hero-inner {
        max-width: 760px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .article-hero .section-label {
        color: var(--gold-light);
      }
      .article-hero .section-label::before {
        background: var(--gold-light);
      }
      .article-hero h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        font-weight: 300;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 20px;
      }
      .article-hero h1 em {
        font-style: italic;
        color: var(--gold-light);
      }
      .article-meta {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
      }
      .hero-wave {
        height: 70px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
      }

      /* ARTICLE BODY */
      .article-wrap {
        max-width: 1100px;
        margin: 0 auto;
        padding: 72px 60px 100px;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 72px;
        align-items: start;
      }
      .article-content {
        min-width: 0;
      }

      .article-lead {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.75;
        color: var(--navy);
        margin-bottom: 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--cream-dark);
      }

      .article-content h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--navy);
        margin: 48px 0 16px;
        line-height: 1.3;
        padding-left: 20px;
        border-left: 3px solid var(--gold);
      }
      .article-content p {
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 16px;
      }
      .article-content ul {
        list-style: none;
        margin: 0 0 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .article-content ul li {
        display: flex;
        gap: 14px;
        font-size: 0.92rem;
        font-weight: 300;
        line-height: 1.65;
        color: var(--text);
      }
      .article-content ul li::before {
        content: "—";
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 2px;
      }

      .article-highlight {
        background: var(--navy);
        color: #fff;
        padding: 32px 40px;
        margin: 40px 0;
        border-left: 4px solid var(--gold);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-style: italic;
        line-height: 1.7;
      }
      .article-highlight strong {
        color: var(--gold-light);
        font-style: normal;
      }

      /* STEP LIST */
      .step-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 24px 0 40px;
      }
      .step-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0;
        border-bottom: 1px solid var(--cream-dark);
        padding: 24px 0;
        transition: background 0.3s;
      }
      .step-item:first-child {
        border-top: 1px solid var(--cream-dark);
      }
      .step-num-big {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        padding-top: 4px;
      }
      .step-body h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .step-body p {
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-light);
        margin: 0;
      }

      /* SIDEBAR */
      .article-sidebar {
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .author-card {
        background: var(--cream);
        border: 1px solid var(--cream-dark);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .author-photo {
        width: 80px;
        height: 80px;
        object-fit: cover;
        object-position: center top;
        border-radius: 50%;
        border: 2px solid var(--gold);
        display: block;
      }
      .author-label {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
      }
      .author-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
        display: block;
        margin: 2px 0 6px;
      }
      .author-desc {
        font-size: 0.82rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--text-light);
      }

      .sidebar-cta {
        background: var(--navy);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .sidebar-cta-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: #fff;
        line-height: 1.4;
      }
      .sidebar-cta-title em {
        font-style: italic;
        color: var(--gold-light);
      }
      .sidebar-cta p {
        font-size: 0.82rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
      }

      .related-box {
        border: 1px solid var(--cream-dark);
        padding: 24px;
        background: var(--white);
      }
      .related-box-title {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 16px;
      }
      .related-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--cream-dark);
        text-decoration: none;
        color: var(--navy);
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.4;
        transition:
          color 0.3s,
          padding-left 0.3s;
      }
      .related-link:last-child {
        border-bottom: none;
      }
      .related-link:hover {
        color: var(--gold);
        padding-left: 8px;
      }

      /* BACK NAV */
      .breadcrumb {
        max-width: 1100px;
        margin: 0 auto;
        padding: 28px 60px 0;
        font-size: 0.78rem;
        color: var(--text-light);
      }
      .breadcrumb a {
        color: var(--text-light);
        text-decoration: none;
      }
      .breadcrumb a:hover {
        color: var(--gold);
      }
      .breadcrumb span {
        margin: 0 8px;
        opacity: 0.4;
      }

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

      @media (max-width: 960px) {
        .article-hero {
          padding: 130px 24px 56px;
        }
        .article-wrap {
          grid-template-columns: 1fr;
          padding: 48px 24px 72px;
          gap: 48px;
        }
        .article-sidebar {
          position: static;
        }
        .breadcrumb {
          padding: 24px 24px 0;
        }
        .cta-strip {
          padding: 56px 24px;
        }
      }
    
@media (max-width: 900px) {
        .nav-burger { display: flex; }
        nav ul { display: none; }


      :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 */
      .article-hero {
        padding: 150px 60px 72px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .article-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(201, 168, 76, 0.05) 0%,
          transparent 60%
        );
      }
      .article-hero-inner {
        max-width: 760px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }
      .article-hero .section-label {
        color: var(--gold-light);
      }
      .article-hero .section-label::before {
        background: var(--gold-light);
      }
      .article-hero h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.2rem, 4.5vw, 3.6rem);
        font-weight: 300;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 20px;
      }
      .article-hero h1 em {
        font-style: italic;
        color: var(--gold-light);
      }
      .article-meta {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
      }
      .hero-wave {
        height: 70px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
      }

      /* ARTICLE BODY */
      .article-wrap {
        max-width: 1100px;
        margin: 0 auto;
        padding: 72px 60px 100px;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 72px;
        align-items: start;
      }
      .article-content {
        min-width: 0;
      }

      .article-lead {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 400;
        line-height: 1.75;
        color: var(--navy);
        margin-bottom: 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid var(--cream-dark);
      }

      .article-content h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.6rem;
        font-weight: 500;
        color: var(--navy);
        margin: 48px 0 16px;
        line-height: 1.3;
        padding-left: 20px;
        border-left: 3px solid var(--gold);
      }
      .article-content p {
        font-size: 0.95rem;
        font-weight: 300;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 16px;
      }
      .article-content ul {
        list-style: none;
        margin: 0 0 24px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .article-content ul li {
        display: flex;
        gap: 14px;
        font-size: 0.92rem;
        font-weight: 300;
        line-height: 1.65;
        color: var(--text);
      }
      .article-content ul li::before {
        content: "—";
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 2px;
      }

      .article-highlight {
        background: var(--navy);
        color: #fff;
        padding: 32px 40px;
        margin: 40px 0;
        border-left: 4px solid var(--gold);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-style: italic;
        line-height: 1.7;
      }
      .article-highlight strong {
        color: var(--gold-light);
        font-style: normal;
      }

      /* STEP LIST */
      .step-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 24px 0 40px;
      }
      .step-item {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0;
        border-bottom: 1px solid var(--cream-dark);
        padding: 24px 0;
        transition: background 0.3s;
      }
      .step-item:first-child {
        border-top: 1px solid var(--cream-dark);
      }
      .step-num-big {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.5rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        padding-top: 4px;
      }
      .step-body h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .step-body p {
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-light);
        margin: 0;
      }

      /* SIDEBAR */
      .article-sidebar {
        position: sticky;
        top: 100px;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .author-card {
        background: var(--cream);
        border: 1px solid var(--cream-dark);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .author-photo {
        width: 80px;
        height: 80px;
        object-fit: cover;
        object-position: center top;
        border-radius: 50%;
        border: 2px solid var(--gold);
        display: block;
      }
      .author-label {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
      }
      .author-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--navy);
        display: block;
        margin: 2px 0 6px;
      }
      .author-desc {
        font-size: 0.82rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--text-light);
      }

      .sidebar-cta {
        background: var(--navy);
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .sidebar-cta-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 400;
        color: #fff;
        line-height: 1.4;
      }
      .sidebar-cta-title em {
        font-style: italic;
        color: var(--gold-light);
      }
      .sidebar-cta p {
        font-size: 0.82rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.6;
      }

      .related-box {
        border: 1px solid var(--cream-dark);
        padding: 24px;
        background: var(--white);
      }
      .related-box-title {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 16px;
      }
      .related-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--cream-dark);
        text-decoration: none;
        color: var(--navy);
        font-size: 0.88rem;
        font-weight: 300;
        line-height: 1.4;
        transition:
          color 0.3s,
          padding-left 0.3s;
      }
      .related-link:last-child {
        border-bottom: none;
      }
      .related-link:hover {
        color: var(--gold);
        padding-left: 8px;
      }

      /* BACK NAV */
      .breadcrumb {
        max-width: 1100px;
        margin: 0 auto;
        padding: 28px 60px 0;
        font-size: 0.78rem;
        color: var(--text-light);
      }
      .breadcrumb a {
        color: var(--text-light);
        text-decoration: none;
      }
      .breadcrumb a:hover {
        color: var(--gold);
      }
      .breadcrumb span {
        margin: 0 8px;
        opacity: 0.4;
      }

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

      @media (max-width: 960px) {
        .article-hero {
          padding: 130px 24px 56px;
        }
        .article-wrap {
          grid-template-columns: 1fr;
          padding: 48px 24px 72px;
          gap: 48px;
        }
        .article-sidebar {
          position: static;
        }
        .breadcrumb {
          padding: 24px 24px 0;
        }
        .cta-strip {
          padding: 56px 24px;
        }
      }
    
  /* ── Minimální font-size 1rem ── */
  body {
    font-size: 1rem;
  }
  section[id],
  div[id] {
    scroll-margin-top: 72px;
  }
  @media (max-width: 900px) {
    section[id],
    div[id] {
      scroll-margin-top: 64px;
    }
    body {
      font-size: 1rem;
    }
    .archive-card-perex,
    .archive-card-title,
    .page-hero-desc,
    .article-lead,
    .article-content p,
    .article-content ul li,
    .step-body p,
    .author-desc,
    .sidebar-cta p,
    .related-link,
    .cta-strip p,
    .footer-copy,
    .footer-links a,
    .form-note,
    .breadcrumb {
      font-size: 1rem;
    }
    .form-group input,
    .form-group textarea {
      font-size: 1rem; /* zabraňuje zoom na iOS */
    }
    .archive-card-tag,
    .blog-card-tag,
    .section-label,
    .author-label,
    .related-box-title,
    .nav-drawer-footer {
      font-size: 0.75rem;
    }
    .article-content h2 {
      font-size: 1.3rem;
    }
    .archive-card-title {
      font-size: 1.2rem;
    }
  }


  /* ── 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; 
}