/* ==========================================================
   APP.CSS
   Michal Husár
========================================================== */


/* ==========================================================
   TYPOGRAPHY
========================================================== */

body{

    font-family:Inter, sans-serif;

    color:var(--text);

    background:var(--background);

}

.display{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(3rem,7vw,5.8rem);

    line-height:.95;

    letter-spacing:-.03em;

    max-width:900px;

    margin-bottom:32px;

}

.heading-lg{

    font-family:"Cormorant Garamond",serif;

    font-size:clamp(2.1rem,4vw,3.2rem);

    margin-bottom:24px;

}

.heading-md{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

    margin-bottom:18px;

}

.lead{

    max-width:760px;

    font-size:1.15rem;

    line-height:1.9;

    color:var(--text-light);

}



/* ==========================================================
   HERO
========================================================== */

.hero{

    padding:120px 0 90px;

}

.hero-kicker{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:.18em;

    font-size:.8rem;

    margin-bottom:22px;

}

.hero-actions{

    display:flex;

    gap:18px;

    margin-top:42px;

}



/* ==========================================================
   BUTTONS
========================================================== */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    line-height:1.35;

    padding:15px 30px;

    border-radius:999px;

    font-weight:600;

    transition:.25s;

}

.button-primary{

    background:var(--primary);

    color:#fff;

}

.button-primary:hover{

    background:var(--primary-hover);

    transform:translateY(-2px);

}

.button-secondary{

    border:1px solid var(--border);

    background:#fff;

}

.button-secondary:hover{

    border-color:var(--primary);

    color:var(--primary);

}

.button-disabled {
    cursor: default;
    background: #dedbd2;
    color: var(--text-light);
    pointer-events: none;
}



/* ==========================================================
   TWO CARDS
========================================================== */

.cards-two{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:20px;

}

.feature-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:42px;

    transition:.25s;

}

.feature-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.feature-card p{

    color:var(--text-light);

    line-height:1.8;

    margin-bottom:24px;

}

.feature-card a{

    color:var(--primary);

    font-weight:600;

}

/* ==========================================================
   ABOUT
========================================================== */

.about-home{

    max-width:860px;

}

.about-home p{

    font-size:1.08rem;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:36px;

}



/* ==========================================================
   WORKSHOPS
========================================================== */

.workshops-preview{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:42px;

}

.workshop-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:.25s;

}

.workshop-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.workshop-image{

    aspect-ratio:16/10;

    background:#ece8df;

}

.workshop-content{

    padding:28px;

}

.workshop-date{

    font-size:.82rem;

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:.12em;

    margin-bottom:12px;

}

.workshop-title{

    font-family:"Cormorant Garamond",serif;

    font-size:1.8rem;

    margin-bottom:14px;

}

.workshop-text{

    color:var(--text-light);

    line-height:1.8;

}



/* ==========================================================
   CTA
========================================================== */

.section-cta{

    text-align:center;

    padding:120px 0;

}

.section-cta .lead{

    margin:0 auto 40px;

}



/* ==========================================================
   SPACING
========================================================== */

.section+.section{

    padding-top:0;

}



/* ==========================================================
   LINKS
========================================================== */

.feature-card a,
.workshop-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

    color:var(--primary);

}

.feature-card a:hover,
.workshop-card a:hover{

    gap:14px;

}



/* ==========================================================
   IMAGES
========================================================== */

.hero img,
.about-home img,
.feature-card img{

    border-radius:20px;

}



/* ==========================================================
   SEPARATORS
========================================================== */

.section:not(:first-child){

    border-top:1px solid rgba(0,0,0,.04);

}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer{

    margin-top:80px;

    padding:50px 0;

    background:#fff;

    border-top:1px solid var(--border);

}

.footer-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.footer-brand{

    font-family:"Cormorant Garamond",serif;

    font-size:2rem;

}

.footer-text{

    color:var(--text-light);

    line-height:1.8;

}

.footer-menu{

    display:flex;

    gap:28px;

    flex-wrap:wrap;

}

.footer-menu a{

    color:var(--text-light);

}

.footer-menu a:hover{

    color:var(--primary);

}



/* ==========================================================
   ANIMATIONS
========================================================== */

.hero,
.feature-card,
.about-home,
.workshop-card{

    animation:fadeUp .7s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(28px);

    }

    to{

        opacity:1;

        transform:none;

    }

}



/* ==========================================================
   UTILITIES
========================================================== */

.text-center{

    text-align:center;

}

.mt-0{

    margin-top:0;

}

.mb-0{

    margin-bottom:0;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:32px;

}

.mb-4{

    margin-bottom:48px;

}

.hidden{

    display:none;

}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:980px){

    .hero{

        padding:90px 0 70px;

    }

    .cards-two{

        grid-template-columns:1fr;

    }

    .workshops-preview{

        grid-template-columns:1fr;

    }

    .footer-inner{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-actions{

        flex-direction:column;

        align-items:flex-start;

    }

    .button{

        width:100%;

    }

}

@media (max-width:640px){

    .display{

        line-height:1.02;

    }

    .feature-card{

        padding:28px;

    }

    .workshop-content{

        padding:22px;

    }

    .section-cta{

        padding:80px 0;

    }

}

.workshop-image{

    height:220px;

    overflow:hidden;

    background:#ECE9E1;

}

.workshop-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.workshop-placeholder{

    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

    background:linear-gradient(135deg,#F2EFE8,#E6E0D5);

    color:var(--primary);

}

.workshop-placeholder::before{

    content:"◌";

    font-size:4.5rem;

    opacity:.18;

    line-height:1;

}

.workshop-placeholder span{

    font-family:var(--font-heading);

    font-size:1.5rem;

}

/* ==========================================================
   ABOUT
========================================================== */

.about-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:72px;

    align-items:center;

}

.about-grid p{

    margin-top:22px;

    color:var(--text-light);

    line-height:1.9;

}

.about-photo{

    aspect-ratio:4/5;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #EFECE5,
        #E2DBCF
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-family:var(--font-heading);

    font-size:2rem;

    box-shadow:var(--shadow);

}

.about-box{

    max-width:900px;

    margin:auto;

    background:#fff;

    padding:56px;

    border-radius:28px;

    box-shadow:var(--shadow);

}

.about-box p{

    margin-top:22px;

    color:var(--text-light);

    line-height:1.9;

}

@media(max-width:980px){

    .about-grid{

        grid-template-columns:1fr;

        gap:48px;

    }

    .about-box{

        padding:36px;

    }

    .about-photo{

        width:100%;

        min-height:0;

        aspect-ratio:auto;

    }

    .about-photo-card{

        height:auto;

        min-height:0;

    }

}

.about-photo-card{

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:32px;

}

.about-photo-placeholder{

    width:220px;

    aspect-ratio:1;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    font-family:var(--font-heading);

    font-size:2rem;

    color:var(--primary);

}

.about-photo-card h3{

    margin-bottom:8px;

    font-family:var(--font-heading);

    font-size:2rem;

}

.about-photo-card p{

    color:var(--text-light);

    line-height:1.7;

}

.about-photo-image{

    width:220px;

    aspect-ratio:1;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:28px;

    box-shadow:var(--shadow);

}

/* ==========================================================
   CONSTELLATION TOPICS
========================================================== */

.constellation-topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.topic-card {
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.topic-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.topic-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.constellation-note {
    max-width: 820px;
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--surface-alt);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 980px) {
    .constellation-topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .constellation-topics {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   SYSTEMIC CONSTELLATIONS PAGE
========================================================== */

.section-soft {
    background: var(--surface-alt);
}

.section-kicker {
    padding-top: 9px;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.constellation-intro-card {
    min-height: 520px;
}

.topic-number {
    display: none;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    right: 7%;
    left: 7%;
    height: 1px;
    background: var(--border);
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.process-number {
    display: flex;
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--background);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.process-step h3 {
    margin-bottom: 14px;
    font-family: var(--font-heading);
    font-size: 1.7rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

.expectations-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.expectations-intro {
    margin-top: 28px;
    color: var(--text-light);
    font-size: 1.08rem;
    line-height: 1.9;
}

.expectations-list {
    display: grid;
    gap: 20px;
}

.expectation-item {
    padding: 30px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .65);
}

.expectation-item h3 {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 1.55rem;
}

.expectation-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.representative-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.representative-card {
    display: flex;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at center,
            rgba(168, 140, 99, .12),
            transparent 55%
        ),
        var(--surface);
    box-shadow: var(--shadow-sm);
}

.representative-symbol {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: .2em;
    opacity: .7;
}

.representative-grid p:not(.section-kicker) {
    margin-top: 22px;
    color: var(--text-light);
    line-height: 1.9;
}

.section-cta-actions {
    justify-content: center;
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 54px;
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 980px) {
    .expectations-grid,
    .representative-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .representative-card {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        padding: 0;
    }

    .constellation-intro-card {
        min-height: auto;
    }
}

/* ==========================================================
   TEXT AND GRID OVERFLOW FIX
========================================================== */

.about-grid > *,
.constellation-topics > *,
.process-grid > *,
.expectations-grid > *,
.representative-grid > * {
    min-width: 0;
}

.display,
.heading-lg,
.heading-md,
.topic-card h3,
.process-step h3,
.expectation-item h3,
.about-photo-card h3 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
}

.representative-card {
    overflow: hidden;
}

.representative-photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

@media (max-width: 980px) {
    .representative-photo {
        min-height: 300px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: normal;
    word-break: normal;
    -webkit-hyphens: none;
    hyphens: none;
}

.heading-lg {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.topic-card {
    padding: 28px;
}

.topic-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.topic-card p {
    font-size: 1rem;
}

.process-step {
    min-width: 0;
    padding-inline: 10px;
}

.process-step h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    line-height: 1.2;
}

.expectation-item {
    min-width: 0;
}

.expectation-item h3 {
    line-height: 1.2;
}

.about-photo-card h3 {
    padding-inline: 12px;
    line-height: 1.2;
}

@media (max-width: 1250px) {

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 52px;
    }

    .process-grid::before {
        display: none;
    }

    .expectations-grid {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 48px;
    }
}

@media (max-width: 980px) {

    .expectations-grid,
    .representative-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {

    .about-photo-card {
        padding: 28px 22px;
    }

    .about-photo-image {
        width: min(220px, 78vw);
        max-width: 100%;
        height: auto;
        flex: 0 0 auto;
    }

    .topic-card,
    .expectation-item {
        padding: 24px;
    }

    .process-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ==========================================================
   LIFE INTEGRATION PAGE
========================================================== */

.life-intro-grid,
.life-journey-grid,
.life-for-whom {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 72px;
    align-items: center;
}

.home-about-button {
    gap: 10px;
    border-color: rgba(92, 107, 87, .55);
    color: var(--primary);
}

.home-about-button span {
    transition: transform .2s ease;
}

.home-about-button:hover span {
    transform: translateX(4px);
}

.representative-card picture {
    display: block;
    width: 100%;
}

/* Záverečná časť má nadväzovať na karty bez nadmernej prázdnej plochy. */
.life-benefits-section {
    padding-bottom: clamp(1.5rem, 2vw, 2.25rem);
}

.life-for-whom-section {
    padding-top: 0 !important;
}

.section-cta {
    padding-top: 0;
    padding-bottom: 32px;
}

.section-cta + .site-footer {
    margin-top: 0;
}

/* Posledná obsahová časť nepotrebuje pred záverečnou výzvou plný sekčný odstup. */
.section:not(.hero):not(.section-cta):has(+ .section-cta) {
    padding-bottom: 48px;
}

.life-intro-grid > *,
.life-journey-grid > *,
.life-for-whom > * {
    min-width: 0;
}

.life-intro-grid p:not(.section-kicker),
.life-journey-grid p:not(.section-kicker),
.life-for-whom p:not(.section-kicker) {
    margin-top: 22px;
    color: var(--text-light);
    line-height: 1.9;
}

.life-intro-card {
    min-height: 480px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(
            circle at center,
            rgba(168, 140, 99, .14),
            transparent 58%
        ),
        var(--surface);
    box-shadow: var(--shadow-sm);
}

.life-intro-symbol {
    display: flex;
    width: 150px;
    height: 150px;
    margin-bottom: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(92, 107, 87, .22);
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 5rem;
}

.life-intro-card h3 {
    max-width: 360px;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.life-intro-card p {
    max-width: 430px;
    margin-top: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.life-stages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.life-stage,
.life-benefit {
    min-width: 0;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: var(--transition);
}

.life-stage:hover,
.life-benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.life-stage-number,
.life-benefit-number {
    display: none;
}

.life-stage h3,
.life-benefit h3 {
    margin-bottom: 16px;
    overflow-wrap: break-word;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2vw, 1.9rem);
    line-height: 1.2;
}

.life-stage p,
.life-benefit p {
    margin-top: 12px;
    color: var(--text-light);
    line-height: 1.8;
}

.life-journey-grid {
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.life-journey-visual {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            135deg,
            rgba(242, 240, 234, .85),
            rgba(255, 255, 255, .9)
        );
    box-shadow: var(--shadow-sm);
}

.life-journey-visual span {
    max-width: 100%;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4.6rem);
    letter-spacing: .12em;
    opacity: .7;
    white-space: nowrap;
}

.life-journey-visual {
    overflow: hidden;
}

.life-journey-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.life-journey-visual picture {
    display: block;
    width: 100%;
}

.life-benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin-top: 52px;
}

.life-benefit {
    padding: 28px;
}

.life-benefit-number {
    display: none;
}

.life-intro-image {
    display: block;
    width: 150px;
    height: 150px;
    margin-bottom: 34px;
    border: 1px solid rgba(92, 107, 87, .22);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.life-benefit h3 {
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
}

.life-for-whom {
    align-items: start;
}

@media (max-width: 1200px) {
    .life-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .life-intro-grid,
    .life-journey-grid,
    .life-for-whom {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .life-stages {
        grid-template-columns: minmax(0, 1fr);
    }

    .life-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .life-intro-card,
    .life-journey-visual {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .life-intro-card,
    .life-stage,
    .life-benefit {
        padding: 26px;
    }

    .life-benefits {
        grid-template-columns: minmax(0, 1fr);
    }

    .life-journey-visual {
        min-height: 260px;
    }

    .life-journey-visual span {
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-hero { position: relative; overflow: hidden; }
.contact-hero::after { content: ""; position: absolute; right: 9%; top: 48%; width: clamp(190px, 25vw, 380px); aspect-ratio: 1; border: 1px solid rgba(92,107,87,.17); border-radius: 50% 50% 14% 50%; box-shadow: 0 0 0 34px rgba(168,140,99,.055); transform: translateY(-50%) rotate(45deg); pointer-events: none; }
.contact-hero .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 72px; align-items: stretch; }
.contact-copy { display: flex; min-width: 0; flex-direction: column; }
#formular { scroll-margin-top: 118px; }
.contact-copy > p:not(.section-kicker) { margin-top: 22px; color: var(--text-light); line-height: 1.85; }
.contact-promise { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 14px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--border); }
.contact-promise > span { color: var(--accent); font-family: var(--font-heading); font-size: 1.8rem; }
.contact-promise p { margin: 0; color: var(--text-light); font-size: .94rem; line-height: 1.7; }
.contact-socials { margin-top: auto; padding: 27px 28px 28px; border: 1px solid rgba(168,140,99,.22); border-radius: 18px; background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(241,237,226,.72)); box-shadow: 0 12px 34px rgba(55,62,52,.045); }
.contact-socials-kicker { margin: 0 0 7px !important; color: var(--accent) !important; font-size: .72rem !important; font-weight: 700; letter-spacing: .18em; line-height: 1.4 !important; text-transform: uppercase; }
.contact-socials h3 { margin: 0; color: var(--text); font-family: var(--font-heading); font-size: 1.55rem; font-weight: 500; line-height: 1.2; }
.contact-socials-copy { margin: 10px 0 19px !important; color: var(--text-light) !important; font-size: .88rem !important; line-height: 1.65 !important; }
.contact-social-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.contact-social-links a { display: grid; grid-template-columns: 32px minmax(0, 1fr) auto; align-items: center; gap: 10px; min-height: 54px; padding: 9px 13px 9px 10px; border: 1px solid rgba(92,107,87,.19); border-radius: 12px; background: rgba(255,255,255,.78); color: var(--primary); font-size: .88rem; font-weight: 650; transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.contact-social-links a:hover { border-color: rgba(92,107,87,.4); background: #fff; box-shadow: 0 8px 20px rgba(55,62,52,.07); transform: translateY(-2px); }
.contact-social-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: #fff; }
.contact-social-icon svg { width: 17px; height: 17px; overflow: visible; fill: currentColor; stroke: currentColor; stroke-width: 1.7; }
.contact-social-icon svg rect, .contact-social-icon svg circle:not(.contact-social-dot) { fill: none; }
.contact-social-icon svg .contact-social-dot { fill: currentColor; stroke: none; }
.contact-social-arrow { color: var(--accent); font-size: 1rem; transition: transform .2s ease; }
.contact-social-links a:hover .contact-social-arrow { transform: translate(2px,-2px); }

.contact-form-card { padding: 42px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); scroll-margin-top: 110px; }
.contact-form { display: grid; gap: 24px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form-field { display: grid; gap: 9px; }
.form-field label { color: var(--text); font-size: .86rem; font-weight: 600; }
.form-field label span, .contact-form-footer p span { color: var(--accent); }
.form-field label small { color: var(--text-light); font-weight: 400; }
.form-field input, .form-field textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); font: inherit; transition: var(--transition); }
.form-field textarea { min-height: 190px; resize: vertical; line-height: 1.65; }
.form-field input:focus, .form-field textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(92,107,87,.1); }
.registration-interest { display: grid; gap: 11px; margin: 0; padding: 20px; border: 1px solid var(--border); border-radius: 12px; }
.registration-interest legend { padding: 0 8px; font-weight: 600; }
.registration-interest legend small { color: var(--text-light); font-weight: 400; }
.registration-interest label, .registration-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--text-light); line-height: 1.55; }
.registration-interest input, .registration-consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--primary); }
.registration-consent a { text-decoration: underline; }
.contact-form-footer { display: flex; gap: 20px; align-items: center; justify-content: space-between; }
.contact-form-footer p { color: var(--text-light); font-size: .82rem; }
.contact-alert { margin-bottom: 24px; padding: 16px 18px; border-radius: 10px; line-height: 1.6; }
.contact-alert-success { border: 1px solid rgba(92,107,87,.26); background: rgba(92,107,87,.09); color: var(--primary); }
.contact-alert-error { border: 1px solid rgba(151,76,58,.24); background: rgba(151,76,58,.08); color: #7b3f32; }
.contact-alert-info { border: 1px solid rgba(92,107,87,.2); background: #f3f1e9; color: var(--text); }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.contact-location-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: 72px; align-items: start; }
.contact-location-grid > div:first-child > p:not(.section-kicker) { margin-top: 20px; color: var(--text-light); line-height: 1.8; }
.contact-address strong { color: var(--text); font-family: var(--font-heading); font-size: 1.65rem; font-weight: 500; }
.contact-map-link { display: inline-flex; margin-top: 26px; color: var(--primary); font-weight: 600; }
.contact-map { overflow: hidden; min-height: 440px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #e9e6de; box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; width: 100%; height: 440px; border: 0; }

@media (max-width: 980px) {
    .contact-hero::after { right: -110px; opacity: .5; }
    .contact-grid, .contact-location-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
    .contact-copy { display: block; }
    .contact-socials { margin-top: 58px; }
}

.home-events-all{
    display:flex;
    justify-content:center;
    margin-top:38px;
}

.about-box-approaches{

    padding-top:36px;

}

/* Fuller about-page composition */
.about-story-section { padding-block: clamp(72px, 8vw, 118px); }
.about-story-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr); align-items: center; gap: clamp(54px, 8vw, 112px); }
.about-story-copy { max-width: 720px; }
.about-story-copy > p { margin-top: 24px; color: var(--text-light); font-size: 1.05rem; line-height: 1.9; }
.about-quote { position: relative; margin: 38px 0 0; padding: 26px 30px 26px 38px; border-left: 3px solid var(--accent); border-radius: 0 18px 18px 0; background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(239,236,229,.72)); color: var(--text); font-family: var(--font-heading); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.45; box-shadow: var(--shadow-sm); }
.about-portrait-card { width: min(100%, 430px); margin: 0 auto; padding: 26px; border: 1px solid var(--border); border-radius: 28px; background: linear-gradient(145deg, #f7f5ef, #e8e2d7); box-shadow: var(--shadow); }
.about-portrait-frame { overflow: hidden; width: min(100%, 330px); aspect-ratio: 1 / 1.08; margin: 0 auto; border-radius: 22px; background: #ddd6ca; }
.about-portrait-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-portrait-card figcaption { padding: 24px 8px 4px; text-align: center; }
.about-portrait-card h3 { margin: 0 0 7px; font-family: var(--font-heading); font-size: clamp(1.65rem, 2.4vw, 2.1rem); font-weight: 500; }
.about-portrait-card p { margin: 0; color: var(--text-light); line-height: 1.6; }
.about-content-section { padding-block: clamp(72px, 8vw, 112px); }
.about-content-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.about-content-card { min-width: 0; padding: clamp(34px, 5vw, 58px); border: 1px solid var(--border); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.about-content-card-accent { background: linear-gradient(145deg, #fff, #f2eee5); }
.about-content-card .heading-lg { margin-top: 12px; font-size: clamp(2rem, 3.2vw, 2.65rem); }
.about-content-card > p:last-child { margin-top: 22px; color: var(--text-light); line-height: 1.85; }
.about-closing-section { padding-block: clamp(58px, 7vw, 92px); }
.about-collaboration-heading { max-width: 780px; margin: 0 auto; text-align: center; }
.about-collaboration-heading .heading-lg { margin-top: 10px; }
.about-collaboration-heading > p:last-child { margin-top: 18px; color: var(--text-light); line-height: 1.8; }
.about-collaboration-grid { margin-top: 42px; }
.about-collaboration-grid .feature-card { height: 100%; }
.about-contact-action { display: flex; justify-content: center; margin-top: 36px; }

@media (max-width: 980px) {
    .about-story-grid, .about-content-cards { grid-template-columns: minmax(0, 1fr); }
    .about-story-copy { max-width: none; }
    .about-portrait-card { width: min(100%, 520px); }
}

@media (max-width: 640px) {
    .about-story-section, .about-content-section { padding-block: 58px; }
    .about-story-grid { gap: 42px; }
    .about-quote { margin-top: 28px; padding: 22px 22px 22px 28px; }
    .about-portrait-card { padding: 18px; border-radius: 22px; }
    .about-portrait-frame { width: 100%; border-radius: 16px; }
    .about-content-cards { gap: 20px; }
    .about-content-card { padding: 28px 24px; border-radius: 22px; }
    .about-contact-action .button { width: 100%; }
}

@media (max-width: 640px) {
    .contact-hero::after { display: none; }
    .contact-form-card { padding: 26px; }
    .contact-form-row { grid-template-columns: minmax(0, 1fr); }
    .contact-form-footer { align-items: flex-start; flex-direction: column; }
    .contact-form-footer .button { width: 100%; }
    .contact-socials { padding: 23px 20px; }
    .contact-social-links { grid-template-columns: minmax(0, 1fr); }
    .contact-map, .contact-map iframe { min-height: 340px; height: 340px; }
}

/* ==========================================================
   PUBLIC WORKSHOPS PAGE
========================================================== */

.workshops-hero { position: relative; overflow: hidden; }
.workshops-hero::after { content: ""; position: absolute; right: 7%; top: 50%; width: clamp(210px, 27vw, 410px); aspect-ratio: 1; border: 1px solid rgba(92,107,87,.16); border-radius: 50%; box-shadow: 0 0 0 34px rgba(168,140,99,.055), 0 0 0 72px rgba(92,107,87,.035); transform: translateY(-50%); pointer-events: none; }
.workshops-hero .container { position: relative; z-index: 1; }

.workshops-heading-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr); gap: 64px; align-items: end; }
.workshops-heading-row > p { color: var(--text-light); line-height: 1.85; }
.workshops-list { display: grid; gap: 24px; margin-top: 54px; }
.workshop-month-divider { display: flex; align-items: center; gap: 22px; margin: 20px 0 2px; color: var(--primary); }
.workshop-month-divider:first-child { margin-top: 0; }
.workshop-month-divider::before, .workshop-month-divider::after { content: ""; flex: 1 1 auto; height: 1px; background: linear-gradient(90deg, transparent, rgba(92,107,87,.32)); }
.workshop-month-divider::after { background: linear-gradient(90deg, rgba(92,107,87,.32), transparent); }
.workshop-month-divider span { flex: 0 0 auto; font-family: var(--font-heading); font-size: 1.35rem; letter-spacing: .025em; }
.workshop-list-card { display: grid; grid-template-columns: 180px 100px minmax(0, 1fr) 190px; gap: 30px; padding: 28px; align-items: start; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); transition: var(--transition); }
.workshop-list-visual { overflow: hidden; border-radius: var(--radius); }
.workshop-list-visual img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.workshop-list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.workshop-list-card[data-event-card-href], .past-event-card[data-event-card-href] { cursor: pointer; }
.workshop-list-card[data-event-card-href]:focus-visible, .past-event-card[data-event-card-href]:focus-visible { outline: 3px solid var(--primary); outline-offset: 4px; }
.workshop-list-date { display: flex; min-height: 100px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(92,107,87,.2); border-radius: 50%; color: var(--primary); }
.workshop-list-date span { font-family: var(--font-heading); font-size: 2.7rem; line-height: .9; }
.workshop-list-date small { margin-top: 10px; font-size: .7rem; letter-spacing: .16em; }
.workshop-list-type { margin-bottom: 9px; color: var(--accent); font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.workshop-list-main h3 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.45rem); line-height: 1.15; }
.workshop-list-main > p:not(.workshop-list-type) { margin-top: 13px; color: var(--text-light); line-height: 1.75; }
.workshop-list-meta { display: flex; flex-wrap: wrap; gap: 20px 34px; margin-top: 26px; }
.workshop-list-meta span { color: var(--text-light); font-size: .92rem; }
.workshop-list-meta strong { display: block; margin-bottom: 5px; color: var(--text); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.workshop-list-action { padding-left: 28px; border-left: 1px solid var(--border); }
.workshop-list-action p { margin-bottom: 15px; }
.workshop-list-action small, .workshop-list-action strong { display: block; }
.workshop-list-action small { color: var(--text-light); }
.workshop-list-action strong { margin-top: 2px; color: var(--primary); font-family: var(--font-heading); font-size: 1.6rem; }
.workshop-list-action .button { margin-top: 12px; }
.workshop-detail-link { display: inline-flex; margin: 4px 0 10px; color: var(--primary); font-size: .9rem; font-weight: 600; }

.past-events-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; margin-top: 52px; }
.past-event-card { display: grid; grid-template-columns: 170px minmax(0, 1fr); overflow: hidden; min-width: 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: var(--transition); }
.past-event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.past-event-card.is-hidden { display: none; }
.past-event-image img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.past-event-content { padding: 27px; }
.past-event-content h3 { font-family: var(--font-heading); font-size: clamp(1.45rem, 2vw, 1.8rem); line-height: 1.2; }
.past-event-content > p:not(.workshop-list-type) { margin-top: 12px; color: var(--text-light); line-height: 1.7; }
.past-event-content .past-event-meta { color: var(--accent); font-size: .85rem; }
.past-event-content > a { display: inline-flex; margin-top: 18px; color: var(--primary); font-weight: 600; }
.past-events-more { margin-top: 42px; text-align: center; }
.past-events-more .button { appearance: none; -webkit-appearance: none; color: var(--text); font: inherit; font-weight: 600; cursor: pointer; }
.past-events-more .button:visited, .past-events-more .button:focus { color: var(--text); }
.past-events-more .button:hover, .past-events-more .button:active { color: var(--primary); }

.workshops-empty { max-width: 760px; margin: 54px auto 0; padding: 60px 40px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
.workshops-empty > span { color: var(--accent); font-family: var(--font-heading); font-size: 4rem; }
.workshops-empty h3 { margin-top: 12px; font-family: var(--font-heading); font-size: 2rem; }
.workshops-empty p { max-width: 580px; margin: 16px auto 28px; color: var(--text-light); line-height: 1.8; }

.workshop-info-grid, .workshop-note { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.workshop-info-cards { display: grid; gap: 24px; }
.workshop-info-cards article { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.workshop-info-cards span { color: var(--accent); font-size: .82rem; letter-spacing: .12em; }
.workshop-info-cards h3 { font-family: var(--font-heading); font-size: 1.55rem; }
.workshop-info-cards p { margin-top: 8px; color: var(--text-light); line-height: 1.75; }
.workshop-note ul { list-style: none; padding: 0; margin: 0; }
.workshop-note li { position: relative; padding: 0 0 22px 34px; margin-bottom: 22px; color: var(--text-light); line-height: 1.8; border-bottom: 1px solid var(--border); }
.workshop-note li::before { content: "○"; position: absolute; left: 0; color: var(--accent); }

@media (max-width: 980px) {
    .workshops-hero::after { right: -120px; opacity: .5; }
    .workshops-heading-row, .workshop-info-grid, .workshop-note { grid-template-columns: minmax(0, 1fr); gap: 42px; }
    .workshop-list-card { grid-template-columns: 150px 82px minmax(0, 1fr); }
    .workshop-list-date { min-height: 82px; }
    .workshop-list-action { grid-column: 3; padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--border); }
    .past-events-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
    .workshops-hero::after { display: none; }
    .workshop-month-divider { gap: 14px; margin-top: 14px; }
    .workshop-month-divider span { font-size: 1.15rem; }
    .workshop-list-card { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 26px; }
    .workshop-list-visual img { aspect-ratio: 16 / 9; }
    .workshop-list-date { width: 78px; min-height: 78px; }
    .workshop-list-date span { font-size: 2.2rem; }
    .workshop-list-action { grid-column: 1; }
    .workshops-empty { padding: 42px 24px; }
    .past-event-card { grid-template-columns: minmax(0, 1fr); }
    .past-event-image img { min-height: 0; aspect-ratio: 16 / 9; }
}

/* ==========================================================
   WORKSHOP DETAIL
========================================================== */

.workshop-detail-hero { position: relative; overflow: hidden; }
.workshop-detail-hero::after { content: ""; position: absolute; right: 8%; top: 50%; width: clamp(210px, 27vw, 400px); aspect-ratio: 1; border: 1px solid rgba(92,107,87,.16); border-radius: 50%; box-shadow: 0 0 0 32px rgba(168,140,99,.05), 0 0 0 68px rgba(92,107,87,.035); transform: translateY(-50%); pointer-events: none; }
.workshop-detail-hero .container { position: relative; z-index: 1; }
.workshop-detail-image-wrap { margin-top: -45px; position: relative; z-index: 2; }
.workshop-detail-image-wrap img { display: block; width: 100%; max-height: 620px; aspect-ratio: 16 / 8; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.workshop-back-link { display: inline-flex; margin-bottom: 40px; color: var(--text-light); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.workshop-detail-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr); gap: 72px; align-items: start; }
.workshop-description-text { margin-top: 28px; color: var(--text-light); font-size: 1.08rem; line-height: 1.95; }
.workshop-description-text p + p { margin-top: 20px; }
.workshop-detail-panel { padding: 38px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.workshop-detail-panel > h2 { margin-bottom: 26px; font-family: var(--font-heading); font-size: 2rem; }
.workshop-detail-panel > div { padding: 17px 0; border-bottom: 1px solid var(--border); }
.workshop-detail-panel small, .workshop-detail-panel strong, .workshop-detail-panel span { display: block; }
.workshop-detail-panel small { margin-bottom: 5px; color: var(--accent); font-size: .7rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.workshop-detail-panel strong { color: var(--text); line-height: 1.5; }
.workshop-detail-panel span { margin-top: 4px; color: var(--text-light); font-size: .9rem; }
.workshop-detail-panel .workshop-detail-map { padding: 18px 0 0; border-bottom: 0; }
.workshop-detail-map iframe { display: block; width: 100%; height: 210px; border: 0; border-radius: var(--radius); background: var(--surface-alt); }
.workshop-detail-panel .button { width: 100%; margin-top: 28px; text-align: center; justify-content: center; }
.workshop-availability-note { margin-top: 18px; padding: 14px 16px; border-radius: 10px; background: rgba(168, 140, 99, .12); color: var(--text); line-height: 1.65; }
.workshop-source-link { display: inline-flex; margin-top: 22px; color: var(--primary); font-size: .9rem; font-weight: 600; line-height: 1.5; }
.workshop-detail-note { max-width: 900px; text-align: center; }
.workshop-detail-note p:last-child { max-width: 690px; margin: 22px auto 0; color: var(--text-light); line-height: 1.85; }
.event-updates-card { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); gap: 72px; align-items: center; }
.event-updates-card > div > p:last-child { color: var(--text-light); line-height: 1.8; }
.event-updates-form { position: relative; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.event-updates-form > label:first-of-type { display: block; margin-bottom: 9px; font-weight: 600; }
.event-updates-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
.event-updates-input-row input { min-width: 0; padding: 14px 17px; border: 1px solid var(--border); border-radius: 999px; background: #fff; font: inherit; }
.event-updates-input-row .button { white-space: nowrap; }
.event-updates-consent { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; margin-top: 18px; color: var(--text-light); font-size: .84rem; line-height: 1.55; }
.event-updates-consent input { margin-top: 3px; }
.event-updates-consent span { min-width: 0; }
.event-updates-consent a { display: inline; color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Samostatná stránka odberu má po formulári plynulo nadviazať na pätu. */
.event-updates-page-section {
    padding-bottom: clamp(48px, 5vw, 72px);
}

/* Ochrana súkromia */
.workshop-preview-banner { position: relative; z-index: 5; padding: 11px 20px; background: #4f5e4b; color: #fff; text-align: center; font-size: .88rem; font-weight: 600; }
.workshop-list-visual, .past-event-image { display: block; }
.workshop-list-visual img, .past-event-image img { transition: transform .3s ease; }
.workshop-list-visual:hover img, .past-event-image:hover img { transform: scale(1.025); }
.workshop-list-visual:focus-visible, .past-event-image:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.privacy-hero { position: relative; overflow: hidden; }
.privacy-hero::after { content: ""; position: absolute; right: 8%; top: 50%; width: clamp(210px, 27vw, 410px); aspect-ratio: 1; border: 1px solid rgba(92,107,87,.17); border-radius: 50%; box-shadow: 0 0 0 36px rgba(168,140,99,.055), 0 0 0 72px rgba(92,107,87,.025); transform: translateY(-50%); pointer-events: none; }
.privacy-hero-inner { position: relative; z-index: 1; }
.privacy-hero .lead { max-width: 760px; }
.privacy-intro { max-width: 780px; margin-bottom: clamp(34px, 5vw, 58px); }
.privacy-intro > p:last-child { margin-top: 20px; color: var(--text-light); line-height: 1.85; }
.privacy-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.privacy-card { min-width: 0; padding: clamp(27px, 3.5vw, 42px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.72); }
.privacy-card-mark { display: block; margin-bottom: 20px; color: var(--accent); font-size: 2rem; line-height: 1; }
.privacy-card h3 { font-family: var(--font-heading); font-size: clamp(1.55rem, 2.3vw, 2rem); font-weight: 500; line-height: 1.12; overflow-wrap: normal; word-break: normal; hyphens: none; }
.privacy-card p { margin-top: 18px; color: var(--text-light); line-height: 1.8; }
.privacy-rights-card { display: flex; align-items: center; justify-content: space-between; gap: 38px; padding: clamp(30px, 5vw, 58px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,255,255,.7); }
.privacy-rights-card > div { max-width: 720px; }
.privacy-rights-card p:last-child { margin-top: 18px; color: var(--text-light); line-height: 1.8; }
.privacy-rights-card .button { flex: 0 0 auto; text-align: center; }
@media (max-width: 900px) {
    .privacy-grid { grid-template-columns: 1fr; }
    .privacy-card { max-width: 760px; }
    .privacy-hero::after { right: -130px; opacity: .55; }
}

.feature-card-links{

    display:grid;

    margin-top:auto;

    border-top:1px solid var(--border);

}

.feature-card-navigation{

    display:flex;

    flex-direction:column;

}

.feature-card-heading{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:18px;
}

.feature-card-heading .heading-md{
    margin:0;
}

.collaboration-icon{
    display:grid;
    flex:0 0 68px;
    width:68px;
    height:68px;
    place-items:center;
    border-radius:50%;
}

.collaboration-icon-group{ background:var(--primary); }
.collaboration-icon-individual{ background:#d9c29a; }

.collaboration-icon svg{
    width:44px;
    height:44px;
    fill:none;
    stroke:#fff;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.feature-card-links a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    padding:13px 0;

    border-bottom:1px solid var(--border);

    line-height:1.35;

}

.feature-card-link-image{
    flex:0 0 88px;
    width:88px;
    height:58px;
    object-fit:cover;
    border-radius:10px !important;
}

.feature-card-link-label{
    flex:1 1 auto;
    min-width:0;
}

.feature-card-links a .feature-card-link-label{
    color:inherit;
}

.feature-card-links a .feature-card-link-arrow{
    flex:0 0 auto;
    color:var(--accent);
    transition:transform .2s ease;
}

.feature-card-links a:last-child{

    border-bottom:0;

    padding-bottom:0;

}

.feature-card-links a > span:last-child{

    flex:0 0 auto;

    color:var(--accent);

    transition:transform .2s ease;

}

.feature-card-links a:hover > span:last-child{

    transform:translateX(4px);

}

@media (max-width:640px){
    .feature-card-heading{ gap:14px; }
    .collaboration-icon{ flex-basis:58px; width:58px; height:58px; }
    .collaboration-icon svg{ width:38px; height:38px; }
    .feature-card-link-image{ flex-basis:72px; width:72px; height:50px; }
    .feature-card-links a{ gap:12px; }
}

.feature-card[data-event-card-href]{

    cursor:pointer;

}

.feature-card[data-event-card-href]:focus-visible{

    outline:3px solid var(--primary);

    outline-offset:4px;

}

/* Domov: obrazový prehľad spôsobov spolupráce. */
.home-collaboration-section{
    background:var(--surface-alt);
}

.home-collaboration-intro{
    max-width:780px;
    margin:0 auto;
    text-align:center;
}

.home-collaboration-intro .heading-lg{
    margin-top:10px;
}

.home-collaboration-intro > p:last-child{
    max-width:690px;
    margin:18px auto 0;
    color:var(--text-light);
    line-height:1.8;
}

.home-collaboration-group{
    margin-top:clamp(42px,5vw,64px);
}

.home-collaboration-group + .home-collaboration-group{
    padding-top:clamp(42px,5vw,62px);
    border-top:1px solid var(--border);
}

.home-collaboration-group-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:28px;
    text-align:left;
}

.home-collaboration-group-heading h3{
    font-family:var(--font-heading);
    font-size:clamp(1.65rem,2.4vw,2.15rem);
    font-weight:500;
    line-height:1.15;
}

.home-collaboration-group-heading p{
    margin-top:6px;
    color:var(--text-light);
    line-height:1.55;
}

.home-collaboration-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.home-collaboration-card{
    display:flex;
    min-width:0;
    overflow:hidden;
    flex-direction:column;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:var(--surface);
    color:var(--text);
    box-shadow:0 1px 0 rgba(47,48,43,.02);
    transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.home-collaboration-card:hover{
    transform:translateY(-4px);
    border-color:rgba(92,107,87,.28);
    box-shadow:var(--shadow-sm);
}

.home-collaboration-card:focus-visible{
    outline:3px solid var(--primary);
    outline-offset:4px;
}

.home-collaboration-card > img,
.home-collaboration-card > picture,
.home-collaboration-card > picture img{
    display:block;
    width:100%;
    aspect-ratio:16 / 10;
    object-fit:cover;
    border-radius:0;
}

.home-collaboration-card > img,
.home-collaboration-card > picture img{
    transition:transform .35s ease;
}

.home-collaboration-card:hover > img,
.home-collaboration-card:hover > picture img{
    transform:scale(1.025);
}

.home-collaboration-card-body{
    display:flex;
    flex:1 1 auto;
    flex-direction:column;
    align-items:flex-start;
    padding:25px 26px 24px;
}

.home-collaboration-card-body > strong{
    font-family:var(--font-heading);
    font-size:clamp(1.45rem,2vw,1.8rem);
    font-weight:500;
    line-height:1.2;
    overflow-wrap:normal;
    word-break:normal;
    hyphens:none;
}

.home-collaboration-card-body > span:not(.home-collaboration-card-link){
    margin-top:14px;
    color:var(--text-light);
    line-height:1.7;
}

.home-collaboration-card-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    padding-top:22px;
    color:var(--primary);
    font-size:.78rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.home-collaboration-card-link span{
    color:var(--accent);
    transition:transform .2s ease;
}

.home-collaboration-card:hover .home-collaboration-card-link span{
    transform:translateX(4px);
}

@media (max-width:980px){
    .home-collaboration-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:640px){
    .home-collaboration-group-heading{
        justify-content:flex-start;
        margin-bottom:22px;
    }

    .home-collaboration-grid{
        grid-template-columns:minmax(0,1fr);
        gap:18px;
    }

    .home-collaboration-card{
        display:grid;
        grid-template-columns:112px minmax(0,1fr);
        align-items:stretch;
    }

    .home-collaboration-card > img,
    .home-collaboration-card > picture,
    .home-collaboration-card > picture img{
        height:100%;
        min-height:178px;
        aspect-ratio:auto;
    }

    .home-collaboration-card-body{
        padding:21px 20px;
    }

    .home-collaboration-card-body > strong{
        font-size:1.38rem;
    }

    .home-collaboration-card-body > span:not(.home-collaboration-card-link){
        margin-top:10px;
        font-size:.92rem;
        line-height:1.6;
    }

    .home-collaboration-card-link{
        padding-top:16px;
        font-size:.7rem;
    }
}

@media (max-width:430px){
    .home-collaboration-card{
        grid-template-columns:94px minmax(0,1fr);
    }

    .home-collaboration-card > img,
    .home-collaboration-card > picture,
    .home-collaboration-card > picture img{
        min-height:170px;
    }

    .home-collaboration-card-body{
        padding:19px 17px;
    }
}

.workshop-card:has(a){

    cursor:pointer;

}

.workshop-card > .workshop-content > a::after{

    content:"";

    position:absolute;

    inset:0;

}

.workshop-card > .workshop-content > a:focus-visible::after{

    outline:3px solid var(--primary);

    outline-offset:-4px;

    border-radius:18px;

}
@media (max-width: 640px) {
    .privacy-hero::after { display: none; }
    .privacy-rights-card { align-items: stretch; flex-direction: column; }
    .privacy-rights-card .button { align-self: flex-start; }
}

/* Panoramatický úvod obsahových stránok */
.systemic-landscape-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 60vw, 690px);
    padding: 80px 0;
    overflow: hidden;
    background: #e8dfcf url('../images/systemic-hero-landscape.jpg') center center / cover no-repeat;
}
.systemic-landscape-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(249,247,241,.96) 0%, rgba(249,247,241,.84) 29%, rgba(249,247,241,.28) 53%, rgba(249,247,241,0) 72%);
}
.systemic-landscape-hero .container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}
.systemic-landscape-hero .display { max-width: 610px; margin-bottom: 25px; }
.systemic-landscape-hero .lead { max-width: 570px; color: var(--text); font-size: 1.06rem; line-height: 1.75; }
.systemic-landscape-hero .hero-actions { margin-top: 30px; }

@media (max-width: 760px) {
    .systemic-landscape-hero {
        min-height: 620px;
        padding: 68px 0;
        align-items: flex-end;
        background-position: 63% center;
    }
    .systemic-landscape-hero::before {
        background: linear-gradient(0deg, rgba(249,247,241,.97) 0%, rgba(249,247,241,.9) 42%, rgba(249,247,241,.18) 76%, rgba(249,247,241,0) 100%);
    }
    .systemic-landscape-hero .display { font-size: clamp(3rem, 15vw, 4.6rem); }
    .systemic-landscape-hero .container { width: calc(100% - 32px); }
    .systemic-landscape-hero .hero-actions { align-items: stretch; flex-direction: column; }
    .systemic-landscape-hero .button { width: 100%; }
}

.content-landscape-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(520px, 60vw, 690px);
    padding: 80px 0;
    overflow: hidden;
    background-color: #e8dfcf;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.content-landscape-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(249,247,241,.96) 0%, rgba(249,247,241,.84) 29%, rgba(249,247,241,.28) 53%, rgba(249,247,241,0) 72%);
}
.content-landscape-hero.service-hero::after { display: none; }
.content-landscape-hero::after { display: none; }
.content-landscape-hero.contact-hero::after,
.content-landscape-hero.workshops-hero::after,
.content-landscape-hero.privacy-hero::after { display: none; }
.content-landscape-hero .container {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}
.content-landscape-hero .display { max-width: 650px; margin-bottom: 25px; }
.content-landscape-hero .lead { max-width: 590px; color: var(--text); font-size: 1.06rem; line-height: 1.75; }
.service-hero.content-landscape-hero .display { max-width: 650px; }
.service-hero.content-landscape-hero .lead { max-width: 590px; }
.content-landscape-hero .hero-actions { margin-top: 30px; }

.about-landscape-hero { background-image: url('../images/about-hero-landscape.jpg'); }
.life-integration-landscape-hero { background-image: url('../images/life-integration-hero-landscape.jpg'); }
.astro-landscape-hero { background-image: url('../images/astro-hero-landscape.jpg'); }
.figure-landscape-hero { background-image: url('../images/figure-hero-landscape.jpg'); }
.intention-landscape-hero { background-image: url('../images/intention-hero-landscape.jpg'); }
.online-landscape-hero { background-image: url('../images/online-hero-landscape.jpg'); }
.home-landscape-hero { background-image: url('../images/home-hero-landscape.jpg'); }
.events-landscape-hero { background-image: url('../images/events-hero-landscape.jpg'); }
.contact-landscape-hero { background-image: url('../images/contact-hero-landscape.jpg'); }
.privacy-landscape-hero { background-image: url('../images/privacy-hero-landscape.jpg'); }

.privacy-hero.content-landscape-hero .lead,
.contact-hero.content-landscape-hero .lead,
.workshops-hero.content-landscape-hero .lead { max-width: 590px; }
.contact-landscape-hero .lead + .button,
.events-landscape-hero .lead + .button { margin-top: 30px; }

@media (max-width: 760px) {
    .content-landscape-hero {
        min-height: 620px;
        padding: 68px 0;
        align-items: flex-end;
        background-position: 63% center;
    }
    .content-landscape-hero::before {
        background: linear-gradient(0deg, rgba(249,247,241,.97) 0%, rgba(249,247,241,.9) 48%, rgba(249,247,241,.18) 78%, rgba(249,247,241,0) 100%);
    }
    .content-landscape-hero .container { width: calc(100% - 32px); }
    .content-landscape-hero .display { font-size: clamp(2.75rem, 14vw, 4.5rem); }
    .content-landscape-hero .hero-actions { align-items: stretch; flex-direction: column; }
    .content-landscape-hero .button { width: 100%; }
}
.event-updates-message { margin-top: 18px; padding: 12px 14px; border-radius: var(--radius-sm); font-size: .9rem; }
.event-updates-message-success { background: #e5eee6; color: #2f5536; }
.event-updates-message-error { background: #f5e5e1; color: #843c30; }
.section + .contact-secondary-section { padding-top: 0; }
.contact-updates-section { padding-bottom: 0; background: #f8f6f0; }
.site-footer-contact { margin-top: 0; }
.contact-updates-card { padding: 0 0 48px; border-top: 0; border-bottom: 1px solid var(--border); background: transparent; }
.contact-updates-card .heading-lg { font-size: clamp(2rem, 3.5vw, 3.3rem); }
.contact-updates-card .event-updates-form { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }

@media (max-width: 980px) {
    .event-updates-card { grid-template-columns: minmax(0, 1fr); gap: 42px; }
    .workshop-detail-hero::after { right: -120px; opacity: .45; }
    .workshop-detail-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 640px) {
    .contact-updates-card { padding: 0 0 34px; }
    .event-updates-form { padding: 24px; }
    .event-updates-input-row { grid-template-columns: minmax(0, 1fr); }
    .workshop-detail-hero::after { display: none; }
    .workshop-detail-panel { padding: 26px; }
}

/* ==========================================================
   SERVICE DETAIL PAGES
========================================================== */

.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::after {
    content: "";
    position: absolute;
    right: max(5vw, 32px);
    top: 50%;
    width: clamp(190px, 26vw, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(92, 107, 87, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(168, 140, 99, .05), 0 0 0 70px rgba(92, 107, 87, .035);
    transform: translateY(-50%);
    pointer-events: none;
}

.service-hero .container { position: relative; z-index: 1; }
.service-hero .display, .service-hero .lead { max-width: 820px; }
.service-hero-figures::after { border-radius: 42% 58% 62% 38%; transform: translateY(-50%) rotate(18deg); }
.service-hero-intention::after { border-radius: 50% 50% 12% 50%; transform: translateY(-50%) rotate(45deg); }
.service-hero-online::after { box-shadow: 0 0 0 22px rgba(168, 140, 99, .06), 0 0 0 46px rgba(92, 107, 87, .04), 0 0 0 74px rgba(168, 140, 99, .025); }

.service-intro-grid,
.service-process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 72px;
    align-items: center;
}

.service-intro-grid > *, .service-process-grid > * { min-width: 0; }
.service-intro-grid p:not(.section-kicker), .service-copy { margin-top: 22px; color: var(--text-light); line-height: 1.9; }

.service-symbol-card {
    min-height: 440px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle, rgba(168, 140, 99, .13), transparent 58%), var(--surface);
    box-shadow: var(--shadow-sm);
}

.service-symbol-card h3 { margin-top: 26px; font-family: var(--font-heading); font-size: clamp(1.7rem, 3vw, 2.25rem); line-height: 1.18; }
.service-symbol-card p { max-width: 410px; margin-top: 16px; color: var(--text-light); line-height: 1.8; }
.service-photo-card { justify-content: flex-start; padding: 24px 24px 38px; overflow: hidden; }
.service-photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: calc(var(--radius-lg) - 12px); }
.service-photo-card picture { display: block; width: 100%; }
.service-photo-card h3 { margin-top: 30px; }
.service-orbit, .intention-mark { display: grid; place-items: center; width: 138px; height: 138px; border: 1px solid rgba(92, 107, 87, .24); border-radius: 50%; color: var(--primary); font-family: var(--font-heading); font-size: 4.5rem; }
.intention-mark { border-radius: 50% 50% 12% 50%; font-size: 3.4rem; transform: rotate(-45deg); }
.intention-mark::first-letter { transform: rotate(45deg); }

.figure-scene { height: 145px; display: flex; align-items: flex-end; gap: 34px; }
.figure-scene i { position: relative; display: block; width: 34px; height: 76px; border-radius: 18px 18px 8px 8px; background: var(--primary); opacity: .82; }
.figure-scene i::before { content: ""; position: absolute; left: 4px; top: -34px; width: 26px; height: 26px; border: 1px solid var(--primary); border-radius: 50%; background: var(--surface); }
.figure-scene i:nth-child(2) { height: 102px; background: var(--accent); }
.figure-scene i:nth-child(3) { height: 64px; opacity: .55; }

.online-rings { position: relative; width: 175px; height: 135px; }
.online-rings i { position: absolute; top: 18px; width: 104px; height: 104px; border: 2px solid var(--primary); border-radius: 50%; }
.online-rings i:first-child { left: 0; }
.online-rings i:last-child { right: 0; border-color: var(--accent); }

.service-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 52px; }
.service-card-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { min-width: 0; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: var(--transition); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.service-card > span { display: none; }
.service-card h3 { overflow-wrap: break-word; font-family: var(--font-heading); font-size: clamp(1.4rem, 2vw, 1.75rem); line-height: 1.2; }
.service-card p { margin-top: 15px; color: var(--text-light); line-height: 1.78; }

.service-process-grid { align-items: start; }
.service-steps { list-style: none; padding: 0; margin: 0; }
.service-steps li { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 22px; padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--border); }
.service-steps li:last-child { margin-bottom: 0; }
.service-steps > li > span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 50%; color: var(--accent); font-weight: 600; }
.service-steps h3 { font-family: var(--font-heading); font-size: 1.55rem; }
.service-steps p { margin-top: 8px; color: var(--text-light); line-height: 1.75; }

.service-price {
    display: grid;
    grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
    gap: 64px;
    align-items: center;
}

.service-price .heading-lg { margin-top: 8px; color: var(--primary); }
.site-announcement { padding: 13px 0; background: var(--primary); color: #fff; text-align: center; }
.site-announcement p { margin: 0; }
.site-announcement a { color: inherit; font-weight: 600; text-decoration: none; }
.site-announcement a:hover { text-decoration: underline; }
.service-price > p { max-width: 650px; color: var(--text-light); font-size: 1.12rem; line-height: 1.85; }

.planet-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 48px; }
.planet-card { flex: 1 1 130px; max-width: 170px; min-width: 130px; padding: 24px 16px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.planet-card strong { display: block; margin-bottom: 18px; color: var(--primary); font-family: var(--font-heading); font-size: 1.35rem; }
.planet-card span { display: block; margin-top: 7px; color: var(--text-light); font-size: .92rem; overflow-wrap: break-word; }
.planet-card span:last-child::before { content: "↔"; display: block; margin: 7px 0; color: var(--accent); }

.astro-paradox-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; margin-top: 48px; }
.astro-paradox-grid article { padding: 32px; border-left: 2px solid var(--accent); background: rgba(255,255,255,.5); }
.astro-paradox-grid h3 { font-family: var(--font-heading); font-size: 1.65rem; }
.astro-paradox-grid p { margin-top: 14px; color: var(--text-light); line-height: 1.8; }
.astro-quote { max-width: 920px; margin: 54px auto 0; text-align: center; }
.astro-quote p { color: var(--primary); font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.45; }

.astro-practical { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.astro-practical-list p { position: relative; padding: 0 0 24px 34px; margin-bottom: 24px; color: var(--text-light); line-height: 1.8; border-bottom: 1px solid var(--border); }
.astro-practical-list p::before { content: "○"; position: absolute; left: 0; top: 0; color: var(--accent); }

@media (max-width: 1100px) {
    .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
    .service-hero::after { right: -100px; opacity: .55; }
    .service-intro-grid, .service-process-grid, .service-price, .astro-practical { grid-template-columns: minmax(0, 1fr); gap: 48px; }
    .service-symbol-card { min-height: 340px; }
    .astro-paradox-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
    .service-hero::after { display: none; }
    .service-card-grid { grid-template-columns: minmax(0, 1fr); }
    .service-symbol-card, .service-card { padding: 26px; }
    .service-steps li { grid-template-columns: 46px minmax(0, 1fr); gap: 16px; }
    .service-steps > li > span { width: 42px; height: 42px; }
}
