
      :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;
        overflow-x: hidden;
      }

      body {
        font-family: "Jost", sans-serif;
        color: var(--text);
        background: var(--cream);
        overflow-x: hidden;
      }

.default-template-web {
	max-width:1100px;
	margin:0 auto;
	padding:64px 16px;
}

.default-template-web ul,
.default-template-web ol {
	padding-left: 20px;
	margin-bottom: 20px;
}

.default-template-web h1 {
	font-family:'Cormorant Garamond',
	serif;
	font-size:clamp(2.8rem, 5vw, 4.5rem);
	font-weight:300;
	color:#1a2744;
	margin-bottom: 16px;
}

.default-template-web h2 {
	margin-top: 16px;
	margin-bottom: 16px;
}

.default-template-web a {
	color: var(--gold);
}

.default-template-web a:hover {
	text-decoration: none;
}

      /* NAV */
      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.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--white);
        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: 1rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: color 0.3s;
      }
      nav ul a:hover {
        color: var(--gold);
      }

      /* HERO */
      #hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
      }
      .hero-bg-img {
        position: absolute;
        inset: 0;
        background-image: url("./bg-main.jpg");
        background-size: cover;
        background-position: center 40%;
        transform: translateY(var(--parallax-y, 0px));
        transition: transform 0.1s linear;
      }
      /* Dark navy overlay for text legibility */
      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          105deg,
          rgba(15, 28, 58, 0.98) 0%,
          rgba(15, 28, 58, 0.75) 40%,
          rgba(15, 28, 58, 0.3) 70%,
          rgba(15, 28, 58, 0.1) 100%
        );
      }
      /* Decorative wave at bottom */
      .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 90px;
        background: var(--cream);
        clip-path: ellipse(55% 100% at 50% 100%);
      }
      /* Floating gold particles */
      .hero-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-particles span {
        position: absolute;
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.4);
        animation: particleFloat 8s infinite ease-in-out;
      }
      .hero-particles span:nth-child(1) {
        left: 15%;
        top: 20%;
        animation-delay: 0s;
        animation-duration: 7s;
      }
      .hero-particles span:nth-child(2) {
        left: 25%;
        top: 60%;
        animation-delay: 1.5s;
        animation-duration: 9s;
      }
      .hero-particles span:nth-child(3) {
        left: 10%;
        top: 75%;
        animation-delay: 3s;
        animation-duration: 8s;
      }
      .hero-particles span:nth-child(4) {
        left: 35%;
        top: 35%;
        animation-delay: 0.5s;
        animation-duration: 10s;
      }
      .hero-particles span:nth-child(5) {
        left: 45%;
        top: 80%;
        animation-delay: 2s;
        animation-duration: 7.5s;
      }
      @keyframes particleFloat {
        0%,
        100% {
          transform: translateY(0) scale(1);
          opacity: 0.4;
        }
        50% {
          transform: translateY(-30px) scale(1.5);
          opacity: 0.8;
        }
      }

      .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 120px 60px 100px;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 40px;
      }
      .hero-text {
        max-width: 560px;
        margin: 0 auto;
      }
      .hero-eyebrow {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .hero-eyebrow::before {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
      }
      .hero-h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(3rem, 5vw, 5.5rem);
        font-weight: 300;
        color: var(--white);
        line-height: 1.15;
        margin-bottom: 12px;
        text-align: center;
      }
      .hero-h1 em {
        font-style: italic;
        color: var(--gold-light);
      }
      .hero-subtitle {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 400;
        color: #ffffff;
        margin-bottom: 28px;
        font-style: italic;
        line-height: 1.5;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
      }
      .hero-desc {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 44px;
        font-weight: 300;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
      }
      .btn-primary {
        display: inline-block;
        padding: 16px 44px;
        background: var(--gold);
        color: var(--navy);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        transition: all 0.3s;
        position: relative;
      }
      .btn-primary::after {
        content: "";
        position: absolute;
        inset: 3px;
        border: 1px solid rgba(26, 39, 68, 0.3);
        transition: all 0.3s;
      }
      .btn-primary:hover {
        background: var(--gold-light);
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
      }

      .hero-photo-side {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
      }
      .hero-photo-frame {
        position: relative;
        width: 100%;
        max-width: 600px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
      }
      /* Subtle glow behind person */
      .hero-photo-frame::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 50%;
        background: radial-gradient(
          ellipse,
          rgba(201, 168, 76, 0.15) 0%,
          transparent 70%
        );
        z-index: 0;
        pointer-events: none;
      }
      .hero-photo-img {
        width: 90%;
        max-height: 82vh;
        object-fit: contain;
        object-position: center bottom;
        display: block;
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5))
          drop-shadow(0 0 30px rgba(201, 168, 76, 0.12));
      }

      /* Section shared styles */
      section {
        padding: 100px 60px;
      }
      .section-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .section-label {
        font-size: 1rem;
        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);
      }

      /* POMOC section */
      #pomoc {
        background: var(--white);
        position: relative;
      }
      #pomoc::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--gold), transparent);
      }
      .pomoc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px 80px;
        align-items: start;
      }
      .pomoc-intro {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 1.7;
        color: var(--navy);
        margin-bottom: 32px;
      }
      .pomoc-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .pomoc-list li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--text);
      }
      .pomoc-list li::before {
        content: "—";
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 2px;
      }
      .pomoc-visual {
        background: var(--cream);
        padding: 48px;
        position: relative;
        overflow: hidden;
      }
      .pomoc-stat {
        margin-bottom: 36px;
      }
      .pomoc-stat-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 3.5rem;
        font-weight: 300;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 6px;
      }
      .pomoc-stat-num span {
        color: var(--gold);
      }
      .pomoc-stat-label {
        font-size: 1rem;
        letter-spacing: 0.1em;
        color: var(--text-light);
      }
      .pomoc-stat-link {
        color: var(--gold);
        text-decoration: underline;
      }

      .pomoc-stat-link:hover {
        text-decoration: none;
      }

      /* PROČ JÁ */
      #proc {
        background: var(--cream);
      }
      .proc-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .proc-photo-wrap {
        position: relative;
      }
      .proc-photo-wrap::after {
        content: "";
        position: absolute;
        bottom: -24px;
        left: -24px;
        width: 60%;
        height: 60%;
        background: var(--gold);
        opacity: 0.1;
        z-index: 0;
      }
      .proc-photo {
        width: 100%;
        height: 520px;
        object-fit: contain;
        object-position: center;
        display: block;
        position: relative;
        z-index: 1;
        filter: contrast(1.02) brightness(1.04);
      }
      .proc-items {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .proc-item {
        padding-left: 24px;
        border-left: 2px solid var(--cream-dark);
        transition: border-color 0.3s;
      }
      .proc-item:hover {
        border-left-color: var(--gold);
      }
      .proc-item-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .proc-item-text {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-light);
      }

      /* PROCES */
      #proces {
        background: var(--navy);
        color: var(--white);
        position: relative;
        overflow: hidden;
      }
      #proces::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(201, 168, 76, 0.1) 0%,
          transparent 70%
        );
      }
      #proces h2 {
        color: var(--white);
      }
      .steps {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        position: relative;
      }
      .steps::before {
        content: "";
        position: absolute;
        top: 22px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(
          to right,
          var(--gold) 0%,
          rgba(201, 168, 76, 0.2) 100%
        );
      }
      .step {
        padding-top: 56px;
        padding-right: 24px;
        position: relative;
      }
      .step-num {
        position: absolute;
        top: 0;
        left: 0;
        width: 44px;
        height: 44px;
        background: var(--gold);
        color: var(--navy);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .step-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--white);
        margin-bottom: 8px;
        line-height: 1.3;
      }
      .step-text {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.55);
      }

      /* ŽIVOT */
      #zivot {
        background: var(--cream-dark);
      }
      .zivot-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .zivot-text p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 20px;
      }
      .zivot-highlight {
        padding: 32px 40px;
        background: var(--white);
        border-left: 3px solid var(--gold);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-style: italic;
        line-height: 1.6;
        color: var(--navy);
        margin-top: 32px;
      }
      .zivot-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .zivot-card {
        background: var(--white);
        padding: 28px 24px;
        position: relative;
      }
      .zivot-card-icon {
        font-size: 1.8rem;
        margin-bottom: 12px;
        display: block;
      }
      .zivot-card-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1rem;
        font-weight: 500;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .zivot-card-text {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.6;
        color: var(--text-light);
      }
      @media (max-width: 900px) {
        .zivot-card {
          grid-column: span 2;
        }
      }
      .zivot-card:first-child {
        grid-column: span 2;
        background: var(--navy);
        color: var(--white);
      }
      .zivot-card:first-child .zivot-card-title {
        color: var(--gold);
      }
      .zivot-card:first-child .zivot-card-text {
        color: rgba(255, 255, 255, 0.7);
      }

      /* KONTAKT */
      #kontakt {
        background: var(--white);
        position: relative;
        overflow: hidden;
      }
      .kontakt-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
      }
      .kontakt-intro {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--navy);
        margin-bottom: 40px;
        font-style: italic;
      }
      .kontakt-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .kontakt-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
      }
      .kontakt-item-label {
        font-size: 1rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
      }
      .kontakt-item-val {
        font-size: 1.05rem;
        font-weight: 400;
        color: var(--navy);
      }
      .kontakt-item-val a {
        color: var(--navy);
        text-decoration: none;
        border-bottom: 1px solid rgba(26, 39, 68, 0.15);
        padding-bottom: 2px;
        transition: border-color 0.3s;
      }
      .kontakt-item-val a:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .kontakt-form {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .form-group label {
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-light);
        font-weight: 500;
      }
      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid var(--cream-dark);
        background: var(--cream);
        font-family: "Jost", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        color: var(--text);
        outline: none;
        transition: border-color 0.3s;
      }
      .form-group input:focus,
      .form-group textarea:focus {
        border-color: var(--gold);
        background: var(--white);
      }
      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }
      .form-note {
        font-size: 1rem;
        font-weight: 300;
        color: var(--text-light);
        line-height: 1.6;
      }

      /* FOOTER */
      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: var(--white);
        letter-spacing: 0.08em;
      }
      .footer-logo span {
        color: var(--gold);
      }
      .footer-links {
        display: flex;
        gap: 32px;
        align-items: center;
      }
      .footer-links a {
        font-size: 1rem;
        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-sep {
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-copy {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.05em;
      }
      .divider {
        width: 40px;
        height: 1px;
        background: var(--gold);
        margin: 0 auto 0;
        opacity: 0.4;
      }

      /* ── ANIMATIONS ── */

      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(36px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeLeft {
        from {
          opacity: 0;
          transform: translateX(-40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes fadeRight {
        from {
          opacity: 0;
          transform: translateX(40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      @keyframes scaleIn {
        from {
          opacity: 0;
          transform: scale(0.93);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      @keyframes lineGrow {
        from {
          transform: scaleX(0);
        }
        to {
          transform: scaleX(1);
        }
      }
      @keyframes goldPulse {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
        }
        50% {
          box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.15);
        }
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      @keyframes shimmer {
        0% {
          background-position: -200% center;
        }
        100% {
          background-position: 200% center;
        }
      }
      @keyframes navSlideDown {
        from {
          transform: translateY(-100%);
          opacity: 0;
        }
        to {
          transform: translateY(0);
          opacity: 1;
        }
      }
      @keyframes countUp {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Hero entrance */
      .hero-text > * {
        animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        opacity: 0;
      }
      .hero-eyebrow {
        animation-delay: 0.15s;
      }
      .hero-h1 {
        animation-delay: 0.3s;
      }
      .hero-subtitle {
        animation-delay: 0.48s;
      }
      .hero-desc {
        animation-delay: 0.62s;
      }
      .btn-primary {
        animation-delay: 0.78s;
      }
      .hero-photo-side {
        animation: fadeRight 1.1s 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        opacity: 0;
      }

      /* Nav entrance */
      nav {
        animation: navSlideDown 0.6s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

      /* Floating photo on hero */
      .hero-photo-img {
        animation: float 7s 1.5s ease-in-out infinite;
      }

      /* Scroll-reveal base states */
      .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);
      }
      .reveal-scale {
        opacity: 0;
        transform: scale(0.92);
        transition:
          opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .is-visible {
        opacity: 1 !important;
        transform: none !important;
      }

      /* Staggered children */
      .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;
      }
      .stagger.is-visible > *:nth-child(5) {
        opacity: 1;
        transform: none;
        transition-delay: 0.45s;
      }
      .stagger.is-visible > *:nth-child(6) {
        opacity: 1;
        transform: none;
        transition-delay: 0.55s;
      }

      /* Gold line under section headings */
      h2 .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);
      }

      /* Step number gold pulse on hover */
      .step-num {
        transition:
          transform 0.3s,
          box-shadow 0.3s;
      }
      .step:hover .step-num {
        animation: goldPulse 1.2s ease-in-out;
        transform: scale(1.08);
      }

      /* proc-item border animate */
      .proc-item {
        transition:
          border-color 0.4s,
          transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.4s;
      }
      .proc-item:hover {
        transform: translateX(6px);
        box-shadow: -4px 0 0 var(--gold);
        border-left-color: var(--gold);
      }

      /* zivot card hover lift */
      .zivot-card {
        transition:
          transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.4s;
      }
      .zivot-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
      }

      /* Shimmer on btn */
      .btn-primary {
        background-size: 200% auto;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .btn-primary:hover {
        background-position: right center;
      }

      /* Gold stat numbers count-up reveal */
      .pomoc-stat {
        transition:
          opacity 0.5s,
          transform 0.5s;
      }

      /* Nav active link indicator */
      nav ul a {
        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 cubic-bezier(0.22, 1, 0.36, 1);
      }
      nav ul a:hover::after,
      nav ul a.active::after {
        transform: scaleX(1);
      }

      /* Parallax hero bg drift (JS driven via CSS var) */
      .hero-bg {
        transform: translateY(var(--parallax-y, 0px));
        transition: transform 0.1s linear;
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation: none !important;
          transition: none !important;
        }
        .reveal,
        .reveal-left,
        .reveal-right,
        .reveal-scale,
        .stagger > * {
          opacity: 1 !important;
          transform: none !important;
        }
      }

      @media (max-width: 900px) {
        nav {
          padding: 16px 24px;
        }
        nav ul {
          display: none;
        }
        section {
          padding: 72px 24px;
        }
        .hero-content {
          grid-template-columns: 1fr;
          padding: 100px 0 80px;
        }
        .hero-photo-side {
          display: none;
        }
        .pomoc-grid,
        .proc-grid,
        .zivot-inner,
        .kontakt-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .steps {
          grid-template-columns: 1fr 1fr;
          gap: 48px 24px;
        }
        .steps::before {
          display: none;
        }
        footer {
          padding: 32px 24px;
        }
        .footer-links {
          flex-direction: column;
          gap: 12px;
        }
      }

      /* Scroll indicator */
      .scroll-indicator {
        position: absolute;
        bottom: 100px;
        left: 60px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        animation: fadeUp 1s 1.2s ease forwards;
        opacity: 0;
      }
      .scroll-indicator span {
        font-size: 1rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.45);
        writing-mode: vertical-rl;
      }
      .scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s 1.5s infinite;
      }
      @keyframes scrollPulse {
        0% {
          transform: scaleY(0);
          transform-origin: top;
          opacity: 1;
        }
        50% {
          transform: scaleY(1);
          transform-origin: top;
          opacity: 1;
        }
        100% {
          transform: scaleY(1);
          transform-origin: bottom;
          opacity: 0;
        }
      }

      /* Hero photo – bottom-anchored tall portrait */
      #hero .hero-content {
        align-items: flex-end;
        padding-bottom: 90px;
      }
      .hero-photo-side {
        align-self: stretch;
        align-items: flex-end;
      }

      /* BLOG */
      #blog {
        background: var(--white);
      }
      .blog-intro {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-weight: 300;
        font-style: italic;
        color: var(--text-light);
        margin-bottom: 56px;
        line-height: 1.7;
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }
      .blog-card {
        display: flex;
        flex-direction: column;
        background: var(--cream);
        border: 1px solid var(--cream-dark);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        color: inherit;
        transition:
          transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.35s;
      }
      .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
      }
      .blog-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, var(--gold), var(--gold-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .blog-card:hover::before {
        transform: scaleX(1);
      }
      .blog-card-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 5rem;
        font-weight: 300;
        color: rgba(201, 168, 76, 0.12);
        line-height: 1;
        padding: 24px 28px 0;
        margin-bottom: -16px;
        transition: color 0.3s;
      }
      .blog-card:hover .blog-card-num {
        color: rgba(201, 168, 76, 0.22);
      }
      .blog-card-body {
        padding: 16px 28px 28px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .blog-card-tag {
        font-size: 1rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--gold);
        font-weight: 500;
      }
      .blog-card-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        font-weight: 500;
        color: var(--navy);
        line-height: 1.35;
        margin: 0;
      }
      .blog-card-excerpt {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-light);
        flex: 1;
      }
      .blog-card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold);
        margin-top: 8px;
        transition: gap 0.3s;
      }
      .blog-card:hover .blog-card-link {
        gap: 14px;
      }
      .blog-card-link::after {
        content: "→";
        font-size: 1rem;
      }

      @media (max-width: 900px) {
        .blog-grid {
          grid-template-columns: 1fr;
        }
      }

      /* ── RECENZE ── */
      #recenze {
        background: var(--navy);
        padding: 100px 60px;
        position: relative;
        overflow: hidden;
      }
      #recenze::before {
        content: '"';
        position: absolute;
        top: -40px;
        left: 40px;
        font-family: "Cormorant Garamond", serif;
        font-size: 20rem;
        font-weight: 700;
        color: rgba(201, 168, 76, 0.06);
        line-height: 1;
        pointer-events: none;
      }
      #recenze .section-label {
        color: var(--gold-light);
      }
      #recenze .section-label::before {
        background: var(--gold-light);
      }
      #recenze h2 {
        color: #fff;
        margin-bottom: 56px;
      }
      #recenze h2 em {
        color: var(--gold-light);
      }

      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .review-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(201, 168, 76, 0.15);
        padding: 36px 32px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: relative;
        transition:
          background 0.3s,
          border-color 0.3s,
          transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .review-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(201, 168, 76, 0.35);
        transform: translateY(-4px);
      }
      .review-quote-mark {
        font-family: "Cormorant Garamond", serif;
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 0.6;
        opacity: 0.6;
      }
      .review-text {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.15rem;
        font-weight: 400;
        font-style: italic;
        line-height: 1.75;
        color: rgba(255, 255, 255, 0.88);
        flex: 1;
      }
      .review-footer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding-top: 16px;
        border-top: 1px solid rgba(201, 168, 76, 0.2);
      }
      .review-author {
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        color: var(--gold-light);
      }
      .review-property {
        font-size: 1rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.45);
        font-style: italic;
      }

      @media (max-width: 900px) {
        #recenze {
          padding: 72px 24px;
        }
        .reviews-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
        .review-text {
          font-size: 1.1rem;
        }
      }

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



/* ── Blog archive styles (appended) ── */

      .page-hero-inner {
        max-width: 860px;
        margin: 0 auto;
      }


      /* ARCHIVE */
      .archive-section {
        padding: 72px 60px 100px;
      }

      .archive-inner {
        max-width: 860px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
      }


      .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-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;
      }

        .archive-section {
          padding: 48px 24px 72px;
        }

        .archive-card-body {
          padding: 20px 20px;
        }

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

/* ── Contact Form 7 ── */
.wpcf7 p { margin: 0; }
.wpcf7 br, .hidden-fields-container { display: none; }
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .wpcf7-form .form-row { grid-template-columns: 1fr; } }
.wpcf7 label { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); font-weight: 500; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--cream-dark); background: var(--cream); font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--text); outline: none; transition: border-color 0.3s, background 0.3s; border-radius: 0; -webkit-appearance: none; }
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus { border-color: var(--gold); background: var(--white); }
.wpcf7 textarea { resize: vertical; max-height: 160px; }
.wpcf7 input[type="submit"] { display: inline-block; padding: 16px 44px; background: var(--gold); color: var(--navy); border: none; font-family: 'Jost', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 0; -webkit-appearance: none; margin-top: 8px; }
.wpcf7 input[type="submit"]:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.3); }
.wpcf7-not-valid-tip { font-size: 0.78rem; color: #c0392b; margin-top: 4px; font-family: 'Jost', sans-serif; font-weight: 300; }
.wpcf7-response-output { margin-top: 16px; padding: 14px 18px; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300; border: none !important; }
.wpcf7-response-output.wpcf7-mail-sent-ok { background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold) !important; color: var(--navy); }
.wpcf7-response-output.wpcf7-validation-errors { background: rgba(192,57,43,0.06); border-left: 3px solid #c0392b !important; color: #c0392b; }
.wpcf7-not-valid { border-color: #c0392b !important; }

/* ── CF7 validační zprávy ── */

/* Seznam chyb nad formulářem */
.wpcf7-response-output {
  margin: 0 0 20px 0 !important;
  padding: 14px 18px !important;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  border: none !important;
  border-left: 3px solid #c0392b !important;
  background: rgba(192,57,43,0.06);
  color: #c0392b;
  list-style: none;
}

/* Skrýt duplicitní zprávu dole (CF7 ji zobrazuje dvakrát) */
.wpcf7-response-output + .wpcf7-response-output,
.kontakt-form .wpcf7 > .wpcf7-response-output:last-child {
  display: none;
}

/* Skrýt odrážkový seznam "Vyplňte toto pole" nad formulářem */
/* CF7 generuje tento seznam mimo .wpcf7-response-output */
.wpcf7 ul,
.wpcf7-form ul {
  display: none;
}

/* Úspěšné odeslání */
.wpcf7-response-output.wpcf7-mail-sent-ok {
  border-left-color: var(--gold) !important;
  background: rgba(201,168,76,0.08) !important;
  color: var(--navy) !important;
}

/* Chybová zpráva pod polem */
.wpcf7-not-valid-tip {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c0392b;
  margin-top: 5px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  display: block;
}

#formularinfo {
	font-family: 'Jost', sans-serif;
  	font-weight: 300;
	color: #6b6b6b;
}

#formularinfo a {
	color: var(--gold);
}

#formularinfo a:hover {
	text-decoration: none;
}

/* Červený rámeček chybného pole */
.wpcf7-not-valid {
  border-color: #c0392b !important;
  background: rgba(192,57,43,0.03) !important;
}

/* Skrýt prázdný response blok při načtení stránky */
.wpcf7-response-output:empty,
.wpcf7 .wpcf7-response-output {
  display: none;
}

/* Zobrazit až po odeslání (CF7 přidá třídu) */
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
  display: block;
}

.screen-reader-response p {
	color: #1a2744;
}

.header-soc {
	display: flex;
	align-items: center;
	gap: 8px;
}

.soc-contact {
	margin-bottom: 32px;
}

.soc-contact a {
	margin-left: 0;
}

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

/* Zobrazit screen-reader response viditelně po odeslání */
.wpcf7 .screen-reader-response p:not(:empty) {
  display: block !important;
  clip: unset !important;
  clip-path: unset !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  background: var(--navy);
  border-left: 4px solid var(--gold);
  color: #fff;
  padding: 20px 24px;
  margin-bottom: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
}

.wpcf7 .screen-reader-response ul {
  display: none !important;
}