/* ============================================/* ════════════════════════════════════════════════════════════════
   ČISTUČKO — vasecistucko.sk
   ════════════════════════════════════════════════════════════════

   1. PREMENNÉ
   2. RESET & ZÁKLAD
   3. LAYOUT POMÔCKY
   4. TLAČIDLÁ
   5. NAVIGÁCIA
   6. HERO
   7. SLUŽBY (karty medzi hero a ponukam)
   8. PONUKAM (Starostlivosť…)
   9. CENNÍK + TABY
  10. OBJEDNÁVKA + FORMULÁR
  11. FOOTER
  12. RESPONSIVE
  13. REVEAL ANIMÁCIA
  14. WORDPRESS / HELLO ELEMENTOR OVERRIDES
      14a. Layout fixes (background, padding, margins)
      14b. Typography (fonty nadpisov)
      14c. Linky (žiadna ružová)
      14d. Tlačidlá (všetky stavy)
      14e. Contact Form 7 (polia, checklist, GDPR)

   ════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════
   1. PREMENNÉ
   ════════════════════════════════════════════ */

:root {
    --cream:        #f8f4ed;
    --cream-soft:   #fbf8f2;
    --cream-warm:   #f0e9dc;
    --sand:         #d9c8ad;
    --sand-deep:    #b89e7a;
    --taupe:        #a89377;

    --brown:        #5b3f29;
    --brown-deep:   #3d2a1a;
    --brown-warm:   #6f513a;

    --ink:          #2a2723;
    --ink-soft:     #4a443c;
    --muted:        #847a6c;
    --line:         #e6dccd;
    --white:        #ffffff;

    --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

    --shadow-sm:    0 2px 14px rgba(91, 63, 41, 0.08);
    --shadow-md:    0 10px 40px rgba(91, 63, 41, 0.14);
    --shadow-lg:    0 30px 80px rgba(61, 42, 26, 0.18);

    --radius:       2px;
    --radius-lg:    6px;
}


/* ════════════════════════════════════════════
   2. RESET & ZÁKLAD
   ════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--brown); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }


/* ════════════════════════════════════════════
   3. LAYOUT POMÔCKY
   ════════════════════════════════════════════ */

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

section { padding: 110px 0; position: relative; }

.section-title {
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--brown); }

.lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 580px;
    font-weight: 300;
}


/* ════════════════════════════════════════════
   4. TLAČIDLÁ
   ════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all .35s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--brown-deep);
    color: var(--cream);
}
.btn--primary:hover {
    background: var(--brown);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
}
.btn--full { width: 100%; padding: 20px; }


/* ════════════════════════════════════════════
   5. NAVIGÁCIA
   ════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: all .4s ease;
    background: transparent;
}
.nav.is-scrolled {
    background: rgba(248, 244, 237, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.nav__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav__logo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    transition: width .4s ease, height .4s ease;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}
.nav.is-scrolled .nav__logo { width: 60px; height: 60px; }

.nav__links { display: flex; gap: 38px; }
.nav__links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--brown);
    transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__phone { padding: 14px 24px; font-size: 13px; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span {
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: all .3s ease;
}


/* ════════════════════════════════════════════
   6. HERO
   ════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 220px;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(248, 244, 237, 0.4) 0%,
        rgba(248, 244, 237, 0.7) 60%,
        rgba(248, 244, 237, 0.95) 100%
    );
}
.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    text-align: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    letter-spacing: 0.32em;
    color: var(--brown-deep);
    font-weight: 600;
    margin-bottom: 40px;
}
.hero__eyebrow .line {
    width: 36px; height: 1px;
    background: var(--brown);
}
.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(44px, 6.4vw, 96px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.hero__title em {
    font-style: italic;
    color: var(--brown);
    font-weight: 300;
}
.hero__lead {
    font-size: 19px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 48px;
    color: var(--ink-soft);
    font-weight: 300;
}
.hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   7. SLUŽBY (karty plávajúce medzi hero a ponukam)
   ════════════════════════════════════════════ */

.sluzby {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 5;
}
.sluzby__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -150px;
    margin-bottom: -175px;
    position: relative;
    z-index: 5;
}
.sluzba {
    background: var(--cream-soft);
    padding: 46px 32px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    position: relative;
    transition: all .4s ease;
    box-shadow: var(--shadow-md);
}
.sluzba:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sand);
}
.sluzba__icon {
    width: 64px;
    height: 64px;
    color: var(--brown);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sluzba__icon svg {
    width: 100%; height: 100%;
    fill: currentColor;
}
.sluzba h3 {
    font-size: 25px;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.2;
}
.sluzba p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}


/* ════════════════════════════════════════════
   8. PONUKAM (Starostlivosť, ktorú váš domov cíti)
   ════════════════════════════════════════════ */

.ponukam {
    background: var(--cream);
    padding: 280px 0 140px;
}
.ponukam__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}
.ponukam__head { padding-right: 10px; }
.ponukam__img {
    aspect-ratio: 5 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.ponukam__img img {
    width: 100%; height: 100%;
    object-fit: cover;
}


/* ════════════════════════════════════════════
   9. CENNÍK + TABY
   ════════════════════════════════════════════ */

.cennik { background: var(--cream-warm); }
.cennik__head {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}
.cennik__head .lead { margin: 0 auto; }

/* Taby */
.tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab {
    padding: 18px 36px;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all .3s ease;
    min-width: 240px;
    color: var(--ink-soft);
}
.tab:hover { border-color: var(--brown); color: var(--ink); }
.tab.is-active {
    background: var(--brown-deep);
    border-color: var(--brown-deep);
    color: var(--cream);
}
.tab__label {
    display: block;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2px;
}
.tab__sub {
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
}
.tab-panel { display: none; animation: fadeIn .5s ease; }
.tab-panel.is-active { display: block; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

/* Cenníková karta */
.cennik-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}
.cennik-card__sub {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 6px;
    color: var(--ink);
}
.cennik-card__note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    font-style: italic;
}

/* Cenové riadky */
.price-rows { display: flex; flex-direction: column; }
.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: none; }
.price-row h4 {
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 4px;
}
.price-row p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}
.price {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--brown);
    white-space: nowrap;
    font-weight: 500;
    text-align: right;
}
.price small {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 400;
}

/* Orientačná mriežka (byty) */
.orient-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.orient {
    background: var(--cream-warm);
    padding: 24px 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    border: 1px solid transparent;
    transition: all .3s ease;
}
.orient:hover { border-color: var(--sand); background: var(--white); }
.orient__type {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
}
.orient__price {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--ink);
}

/* Mriežka sedačiek */
.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.dot {
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: var(--cream-soft);
    transition: background .25s ease;
}
.dot:hover { background: var(--white); }
.dot span { font-size: 14px; color: var(--ink-soft); }
.dot b {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--brown);
    white-space: nowrap;
}

/* Cenník meta info */
.cennik-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
}
.cennik-meta > div { display: flex; flex-direction: column; gap: 4px; }
.cennik-meta span {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
}
.cennik-meta strong {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--ink);
    font-weight: 500;
}
.cennik-meta em {
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
}

.cennik__footnote {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
    white-space: nowrap;
    overflow-x: auto;
}
@media (max-width: 900px) {
    .cennik__footnote {
        white-space: normal;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ════════════════════════════════════════════
   10. OBJEDNÁVKA + FORMULÁR
   ════════════════════════════════════════════ */

.objednavka {
    background: var(--cream);
    padding: 130px 0;
}
.objednavka__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.objednavka__intro { padding-top: 10px; }
.objednavka__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}
.contact-mini {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.contact-mini__label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    width: 80px;
    flex-shrink: 0;
}
.contact-mini__value {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ink);
}
.contact-mini:hover .contact-mini__value { color: var(--brown); }

/* Formulár box */
.form {
    background: var(--cream-soft);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.form__row { margin-bottom: 20px; }
.form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field { display: block; }
.field > span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 8px;
    font-weight: 500;
}
.field__hint {
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-left: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(91, 63, 41, 0.14);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select:not([multiple]) {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23847a6c' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

/* GDPR checkbox (statická verzia) */
.check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 24px 0 28px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    cursor: pointer;
}
.check input { margin-top: 4px; accent-color: var(--brown); }

.form__note {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 18px;
    font-style: italic;
}


/* ════════════════════════════════════════════
   11. FOOTER
   ════════════════════════════════════════════ */

.footer {
    background: var(--brown-deep);
    color: var(--cream);
    padding: 90px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(216, 200, 173, 0.12);
}
.footer__owner {
    font-family: var(--font-serif);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--cream);
    margin-bottom: 6px;
}
.footer__owner span {
    display: block;
    font-size: 24px;
    letter-spacing: 0;
    margin-top: 6px;
    color: var(--sand);
}
.footer__tag {
    color: rgba(248, 244, 237, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}
.footer__social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(248, 244, 237, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all .3s ease;
}
.footer__social svg { width: 18px; height: 18px; }
.footer__social a:hover {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--brown-deep);
    transform: translateY(-2px);
}
.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 16px;
    font-weight: 500;
}
.footer__col p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(248, 244, 237, 0.72);
}
.footer__col a:hover { color: var(--sand); }
.footer__bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: rgba(248, 244, 237, 0.5);
    text-transform: uppercase;
}


/* ════════════════════════════════════════════
   12. RESPONSIVE
   ════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .hero__title { white-space: normal; }
    .sluzby__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -120px;
        margin-bottom: -120px;
    }
    .hero { padding-bottom: 180px; }
    .ponukam { padding-top: 220px; }
}

@media (max-width: 1024px) {
    .nav__links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--cream-soft);
        padding: 30px;
        gap: 22px;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all .3s ease;
    }
    .nav__links.is-open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav__burger { display: flex; }
    section { padding: 80px 0; }
    .ponukam__grid,
    .objednavka__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .ponukam__head { padding-right: 0; }
    .cennik-card { padding: 40px 28px; }
    .orient-grid { grid-template-columns: repeat(2, 1fr); }
    .dot-grid { grid-template-columns: repeat(2, 1fr); }
    .cennik-meta { grid-template-columns: 1fr; gap: 18px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer__brand { grid-column: span 2; }
}

@media (max-width: 640px) {
    .container { padding: 0 13px; }
    section { padding: 70px 0; }
    .sluzby { padding: 0; }
    .sluzby__grid {
        grid-template-columns: 1fr;
        margin-top: -90px;
        margin-bottom: -60px;
        gap: 16px;
    }
    .sluzba { padding: 38px 26px; }
.nav__logo { width: 90px; height: 90px; }
.nav.is-scrolled .nav__logo { width: 70px; height: 70px; }
.nav__phone { padding: 10px 14px; font-size: 10px; letter-spacing: 0.06em; }
    .hero {
        min-height: auto;
        padding: 130px 0 150px;
    }
    .hero__eyebrow { font-size: 11px; letter-spacing: 0.24em; }
    .hero__lead { font-size: 16px; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }
    .ponukam { padding-top: 100px; }
    .cennik-card { padding: 32px 22px; }
    .price-row { grid-template-columns: 1fr; gap: 8px; }
    .price { text-align: left; font-size: 24px; }
    .orient-grid { grid-template-columns: 1fr; }
    .dot-grid { grid-template-columns: 1fr; }
    .tabs { gap: 8px; }
    .tab { min-width: 0; flex: 1; padding: 14px 16px; }
    .tab__label { font-size: 17px; }
    .tab__sub { font-size: 10px; letter-spacing: 0.15em; }
    .form { padding: 32px 22px; }
    .form__row--2 { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: auto; }
}

@media (max-width: 400px) {
    .nav__phone { display: none; }
}

/* ════════════════════════════════════════════
   13. REVEAL ANIMÁCIA
   ════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* ════════════════════════════════════════════════════════════════
   14. WORDPRESS / HELLO ELEMENTOR OVERRIDES
   ════════════════════════════════════════════════════════════════

   Všetko nižšie sa aktivuje len na <body class="cistucko-landing">.
   Tieto pravidlá prebíjajú default styly Hello Elementor témy
   pomocou vyššej špecifikoty (html body) + !important.

   ════════════════════════════════════════════════════════════════ */


/* ───── 14a. Layout fixes ───── */

body.cistucko-landing {
    margin: 0 !important;
    padding: 0 !important;
}
body.cistucko-landing section {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}


/* ───── 14b. Typography (fonty nadpisov) ───── */

body.cistucko-landing,
body.cistucko-landing p,
body.cistucko-landing a,
body.cistucko-landing button,
body.cistucko-landing input,
body.cistucko-landing select,
body.cistucko-landing textarea,
body.cistucko-landing li,
body.cistucko-landing span {
    font-family: var(--font-sans);
}

body.cistucko-landing h1,
body.cistucko-landing h2,
body.cistucko-landing h3,
body.cistucko-landing h4,
body.cistucko-landing h5,
body.cistucko-landing h6,
body.cistucko-landing .hero__title,
body.cistucko-landing .section-title,
body.cistucko-landing .sluzba h3,
body.cistucko-landing .price-row h4,
body.cistucko-landing .price,
body.cistucko-landing .cennik-card__sub,
body.cistucko-landing .orient__price,
body.cistucko-landing .cennik-meta strong,
body.cistucko-landing .dot b,
body.cistucko-landing .tab__label,
body.cistucko-landing .contact-mini__value,
body.cistucko-landing .footer__owner,
body.cistucko-landing .footer__owner span {
    font-family: var(--font-serif) !important;
    font-weight: 400 !important;
}

body.cistucko-landing .hero__title em,
body.cistucko-landing .section-title em {
    font-style: italic !important;
    font-weight: 300 !important;
}

body.cistucko-landing .btn,
body.cistucko-landing .nav__phone,
body.cistucko-landing .nav__links a {
    font-family: var(--font-sans) !important;
}


/* ───── 14c. Linky (žiadna ružová) ───── */

html body.cistucko-landing a,
html body.cistucko-landing a:link,
html body.cistucko-landing a:visited,
html body.cistucko-landing a:active {
    color: inherit !important;
    text-decoration: none !important;
    background-color: transparent !important;
}
html body.cistucko-landing a:hover {
    color: var(--brown) !important;
}

html body.cistucko-landing .nav__links a { color: var(--ink-soft) !important; }
html body.cistucko-landing .nav__links a:hover { color: var(--brown) !important; }

html body.cistucko-landing .footer a { color: rgba(248, 244, 237, 0.72) !important; }
html body.cistucko-landing .footer a:hover { color: var(--sand) !important; }

html body.cistucko-landing .contact-mini,
html body.cistucko-landing .contact-mini__value { color: var(--ink) !important; }
html body.cistucko-landing .contact-mini:hover .contact-mini__value { color: var(--brown) !important; }


/* ───── 14d. Tlačidlá (všetky stavy, žiadna ružová) ───── */

html body.cistucko-landing .btn--primary,
html body.cistucko-landing a.btn--primary,
html body.cistucko-landing button.btn--primary,
html body.cistucko-landing input.btn--primary,
html body.cistucko-landing .nav__phone,
html body.cistucko-landing .wpcf7-submit,
html body.cistucko-landing input[type="submit"] {
    background-color: var(--brown-deep) !important;
    color: var(--cream) !important;
    border: 1px solid transparent !important;
}

html body.cistucko-landing .btn--primary:hover,
html body.cistucko-landing a.btn--primary:hover,
html body.cistucko-landing button.btn--primary:hover,
html body.cistucko-landing input.btn--primary:hover,
html body.cistucko-landing .nav__phone:hover,
html body.cistucko-landing .wpcf7-submit:hover,
html body.cistucko-landing input[type="submit"]:hover {
    background-color: var(--brown) !important;
    color: var(--cream) !important;
}

html body.cistucko-landing .btn--ghost {
    background-color: transparent !important;
    color: var(--ink) !important;
    border: 1px solid var(--ink) !important;
}
html body.cistucko-landing .btn--ghost:hover {
    background-color: var(--ink) !important;
    color: var(--cream) !important;
}

/* Hamburger — žiadny ružový border z Hello reset.css */
html body.cistucko-landing button.nav__burger,
html body.cistucko-landing button.nav__burger:hover,
html body.cistucko-landing button.nav__burger:focus {
    background-color: transparent !important;
    border: none !important;
    padding: 8px !important;
    color: inherit !important;
}

/* Social ikony vo footri */
html body.cistucko-landing .footer__social a {
    color: var(--cream) !important;
    border-color: rgba(248, 244, 237, 0.25) !important;
}
html body.cistucko-landing .footer__social a:hover {
    background-color: var(--sand) !important;
    color: var(--brown-deep) !important;
    border-color: var(--sand) !important;
}


/* ───── 14e. Contact Form 7 ───── */

/* Základné polia */
.wpcf7 { font-family: var(--font-sans); }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance) {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    border-radius: var(--radius);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance):focus {
    outline: none;
    border-color: var(--brown);
    box-shadow: 0 0 0 3px rgba(91, 63, 41, 0.14);
}
.wpcf7 textarea { resize: vertical; min-height: 100px; }

/* Form spacing */
body.cistucko-landing .form .form__row { margin-bottom: 20px !important; }
body.cistucko-landing .form .form__row:last-of-type { margin-bottom: 0 !important; }

/* Submit tlačidlo — finálne štýly */
html body.cistucko-landing .wpcf7-submit,
html body.cistucko-landing input[type="submit"] {
    width: 100% !important;
    padding: 20px 30px !important;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    border-radius: var(--radius) !important;
    margin-top: 24px !important;
    cursor: pointer !important;
    transition: all .35s ease !important;
    line-height: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}
html body.cistucko-landing .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md) !important;
}

/* CF7 multi-select checklist */
.checklist-cf7 {
    display: block !important;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
}
.checklist-cf7 .wpcf7-list-item { display: block !important; margin: 0 !important; }
.checklist-cf7 .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-soft);
    transition: background .2s ease;
    user-select: none;
}
.checklist-cf7 .wpcf7-list-item label:hover { background: var(--cream-warm); }
.checklist-cf7 input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--brown);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}
.checklist-cf7 input[type="checkbox"]:checked + .wpcf7-list-item-label {
    color: var(--brown);
    font-weight: 500;
}
.checklist-cf7::-webkit-scrollbar { width: 6px; }
.checklist-cf7::-webkit-scrollbar-track { background: var(--cream-soft); }
.checklist-cf7::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

/* GDPR checkbox — kompaktný layout fajfka + text */
html body.cistucko-landing .form .check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 24px 0 8px !important;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    cursor: pointer;
}

/* CF7 wrapper okolo checkboxu — vynulovať všetky šírky a marginy */
html body.cistucko-landing .form .check .wpcf7-form-control-wrap,
html body.cistucko-landing .form .check .wpcf7-acceptance,
html body.cistucko-landing .form .check .wpcf7-list-item,
html body.cistucko-landing .form .check .wpcf7-list-item > label {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

/* Skryť prázdny label, ktorý CF7 generuje navyše */
html body.cistucko-landing .form .check .wpcf7-list-item-label {
    display: none !important;
}

/* Samotná fajfka */
html body.cistucko-landing .form .check input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin: 2px 0 0 !important;
    accent-color: var(--brown);
    cursor: pointer;
    flex-shrink: 0;
}

/* Text vedľa fajfky */
html body.cistucko-landing .form .check .check__text {
    flex: 1;
    user-select: none;
}

/* CF7 validačné hlášky */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
    border-color: #b73d3d;
    background: #fdf5f5;
    color: #b73d3d;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--brown);
    background: var(--cream-warm);
    color: var(--brown-deep);
}
.wpcf7-response-output {
    margin: 24px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: var(--radius);
    font-size: 14px;
}
.wpcf7-not-valid-tip {
    color: #b73d3d !important;
    font-size: 12px !important;
    margin-top: 6px !important;
    font-style: italic;
}
.wpcf7-spinner { background-color: var(--brown) !important; }

/* ───── 14f. NUKE button :hover & :focus ───── */

html body.cistucko-landing button:hover,
html body.cistucko-landing button:focus,
html body.cistucko-landing [type="button"]:hover,
html body.cistucko-landing [type="button"]:focus,
html body.cistucko-landing [type="submit"]:hover,
html body.cistucko-landing [type="submit"]:focus,
html body.cistucko-landing input[type="submit"]:hover,
html body.cistucko-landing input[type="submit"]:focus,
html body.cistucko-landing .wpcf7-submit:hover,
html body.cistucko-landing .wpcf7-submit:focus {
    background-color: var(--brown) !important;
    color: var(--cream) !important;
    outline: none !important;
}

/* Výnimky — buttony ktoré majú vlastné pozadie */
html body.cistucko-landing .tab:hover,
html body.cistucko-landing .tab:focus {
    background-color: var(--cream-soft) !important;
    color: var(--ink) !important;
}
html body.cistucko-landing .tab.is-active,
html body.cistucko-landing .tab.is-active:hover,
html body.cistucko-landing .tab.is-active:focus {
    background-color: var(--brown-deep) !important;
    color: var(--cream) !important;
}
html body.cistucko-landing .nav__burger:hover,
html body.cistucko-landing .nav__burger:focus {
    background-color: transparent !important;
}