/* ══════════════════════════════════════════
   MIVA – Masážní studio WELL
   Barvy inspirované letáčkem
   Ledová modrá + Tmavá námořní + Tyrkys
══════════════════════════════════════════ */

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

:root {
    /* ── Hlavní paleta z letáčku ── */
    --ice: #C8E4F2;
    /* světle ledová modrá – pozadí letáčku */
    --ice-lt: #E0F1FA;
    /* velmi světlá bledá modrá */
    --ice-dk: #A8CFE8;
    /* střední ledová modrá */
    --navy: #162B5E;
    /* tmavá námořní modrá – nadpisy letáčku */
    --navy-md: #1E3C7A;
    /* střední námořní */
    --navy-lt: #2A5099;
    /* světlejší námořní */
    --teal: #3B9DBF;
    /* tyrkysová/aqua – akcent */
    --teal-lt: #5BB8D4;
    /* světlejší tyrkys */
    --teal-dk: #2A7A9A;
    /* tmavší tyrkys */
    --white: #FFFFFF;
    --text: #1A2A4A;
    /* tmavý text */
    --text-lt: #3D5275;
    /* světlejší text */
    --border: rgba(22, 43, 94, .15);

    --r: 16px;
    --shadow: 0 8px 32px rgba(22, 43, 94, .12);
    --shadow-lg: 0 20px 60px rgba(22, 43, 94, .18);

    /* Dynamické mezery */
    --pad-x: clamp(20px, 5vw, 64px);
    --pad-y: clamp(60px, 8vw, 100px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--ice-lt);
    color: var(--text);
    overflow-x: hidden;
}

/* ══ NAVIGACE ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    transition: background .4s, box-shadow .4s, padding .3s;
}

nav.scrolled {
    background: rgba(224, 241, 250, .94);
    backdrop-filter: blur(14px);
    box-shadow: 0 2px 24px rgba(22, 43, 94, .1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Zmenšený padding pro štíhlejší navbar */
    padding: 8px var(--pad-x);
    transition: padding .3s;
}

nav.scrolled .nav-inner {
    /* Při scrollování minimalizujeme mezery, navbar bude krásně tenký */
    padding: 4px var(--pad-x);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    /* Zlatá střední cesta: výška max 80px. Logo bude čitelné, ale nezabere půl obrazovky */
    height: clamp(60px, 7vw, 80px);
    width: auto;
    display: block;
}

.logo-dot {
    color: var(--teal);
    font-size: 1rem;
    margin-left: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
    transition: right .3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after {
    right: 0;
}

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 26px;
    border-radius: 50px;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
    box-shadow: 0 4px 16px rgba(22,43,94,.25);
}

.nav-cta:hover {
    background: var(--teal-dk) !important;
    color: var(--white) !important;
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(22,43,94,.35) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: .3s;
}

/* ══ ORNAMENT / MANDALA PATTERN ══ */
.hero-ornament,
.onas-ornament,
.kontakt-ornament {
    position: absolute;
    pointer-events: none;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 157, 191, .18) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, transparent 30%, rgba(22, 43, 94, .08) 31%, transparent 32%),
        radial-gradient(circle at 50% 50%, transparent 45%, rgba(22, 43, 94, .06) 46%, transparent 47%),
        radial-gradient(circle at 50% 50%, transparent 60%, rgba(22, 43, 94, .05) 61%, transparent 62%);
}

.hero-ornament--tl {
    top: 80px;
    left: -60px;
    width: 280px;
    height: 280px;
    opacity: .7;
}

.hero-ornament--br {
    bottom: 40px;
    right: -60px;
    width: 260px;
    height: 260px;
    opacity: .5;
}

.onas-ornament--l {
    top: 20%;
    left: -80px;
    opacity: .5;
}

.onas-ornament--r {
    bottom: 10%;
    right: -80px;
    width: 260px;
    height: 260px;
    opacity: .4;
}

.kontakt-ornament--tl {
    top: -60px;
    left: -60px;
    opacity: .5;
}

.kontakt-ornament--br {
    bottom: -60px;
    right: -60px;
    opacity: .4;
}

/* ══ HERO ══ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--pad-x);
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(170deg, var(--ice-lt) 0%, var(--ice) 55%, var(--ice-dk) 100%);
}

/* Dekorativní pozadí tvary */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero-bg-shape--1 {
    width: 700px; height: 700px;
    top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(59,157,191,.15) 0%, transparent 65%);
}
.hero-bg-shape--2 {
    width: 500px; height: 500px;
    bottom: -150px; right: -100px;
    background: radial-gradient(circle, rgba(22,43,94,.1) 0%, transparent 65%);
}
.hero-bg-shape--3 {
    width: 300px; height: 300px;
    top: 50%; right: 15%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(59,157,191,.08) 0%, transparent 70%);
}

/* Tečkovaná textura */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle 1px at 15% 25%, rgba(22,43,94,.18) 0%, transparent 2px),
        radial-gradient(circle 1px at 80% 15%, rgba(22,43,94,.13) 0%, transparent 2px),
        radial-gradient(circle 1px at 45% 75%, rgba(22,43,94,.1) 0%, transparent 2px),
        radial-gradient(circle 1px at 90% 55%, rgba(22,43,94,.1) 0%, transparent 2px),
        radial-gradient(circle 1px at 25% 90%, rgba(22,43,94,.12) 0%, transparent 2px),
        radial-gradient(circle 1px at 65% 40%, rgba(22,43,94,.08) 0%, transparent 2px);
    pointer-events: none;
}

.hero-center {
    position: relative; z-index: 2;
    max-width: 760px;
    padding-top: 80px;
    /* Bezpečnostní zóna dole, aby se obsah nikdy nepřekryl se scrollbarem */
    padding-bottom: 90px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 24px;
    justify-content: center;
}
.eyebrow::before { content: '✦'; font-size: .7rem; }
.eyebrow::after  { content: '✦'; font-size: .7rem; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 24px;
}
.hero-title em {
    font-style: italic;
    color: var(--teal-dk);
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-lt);
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
}

/* Odznaky pod tlačítky */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59,157,191,.2);
    border-radius: 60px;
    padding: 14px 28px;
    gap: 4px;
    box-shadow: 0 4px 24px rgba(22,43,94,.08);
}
.hero-badge {
    display: flex; align-items: center; gap: 7px;
    padding: 4px 14px;
    font-size: .8rem; font-weight: 600; color: var(--navy);
}
.hero-badge-icon { font-size: 1rem; }
.hero-badge-sep {
    width: 1px; height: 20px;
    background: rgba(59,157,191,.25);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 15px 36px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 6px 24px rgba(22,43,94,.3);
    display: inline-block;
}
.btn-primary:hover {
    background: var(--teal-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(22,43,94,.35);
}

.btn-ghost {
    color: var(--navy);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(22,43,94,.2);
    padding: 13px 28px;
    border-radius: 50px;
    transition: color .3s, border-color .3s, background .3s;
}
.btn-ghost:hover {
    color: var(--teal-dk);
    border-color: var(--teal);
    background: rgba(59,157,191,.06);
}

.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--text-lt); z-index: 2;
}
.scroll-line {
    width: 1px; height: 44px;
    background: linear-gradient(var(--teal), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

/* ══ STATS ══ */
.stats-bar {
    background: var(--navy);
    padding: clamp(40px, 5vw, 48px) var(--pad-x);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 157, 191, .12) 0%, transparent 50%, rgba(59, 157, 191, .08) 100%);
}

.stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-n {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--teal-lt);
}

.stat-l {
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(224, 241, 250, .5);
    margin-top: 8px;
    font-weight: 600;
}

/* ══ SEKCE – OBECNÉ ══ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.section-label::before {
    content: '✦';
    font-size: .65rem;
}

.section-label--light {
    color: var(--teal-lt);
}

.section-label--light::before {
    color: var(--teal-lt);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--teal-dk);
}

.section-title--light {
    color: var(--ice-lt);
}

.section-sub {
    font-size: .95rem;
    line-height: 1.85;
    color: var(--text-lt);
    max-width: 560px;
}

.section-sub--light {
    color: rgba(224, 241, 250, .65);
}

.section-sub strong {
    color: var(--teal-lt);
    font-weight: 700;
}

/* ══ MASÁŽE ══ */
.section-masaze {
    padding: var(--pad-y) var(--pad-x);
    background: var(--ice-lt);
}

.section-head {
    margin-bottom: 64px;
}

.cards-list {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.mcard {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(59, 157, 191, .15);
    transition: transform .3s, box-shadow .3s;
}

.mcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mcard:nth-child(even) {
    flex-direction: row-reverse;
}

.mcard-img {
    flex: 0 0 35%; /* Upraveno pro užší fotku */
    position: relative;
    background: var(--ice-dk);
    min-height: 320px; /* Upraveno pro menší výšku */
}

.mcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.mcard-body {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mcard-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
}

.mcard-meta {
    font-size: .85rem;
    color: var(--teal-dk);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.mcard-short {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-lt);
    margin-bottom: 8px;
}

.mcard-toggle {
    width: 100%;
    margin-top: 24px;
    padding: 16px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    border-top: 1px solid rgba(59, 157, 191, .18);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-dk);
    transition: color .2s;
}

.mcard-toggle:hover {
    color: var(--navy);
}

.toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--ice-dk);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1), background .3s, border-color .3s;
    flex-shrink: 0;
    color: var(--teal-dk);
}

.mcard-toggle:hover .toggle-icon {
    border-color: var(--teal);
    background: rgba(59, 157, 191, .12);
}

.mcard.open .toggle-icon {
    transform: rotate(45deg);
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* --- PLYNULÉ ROZBALOVÁNÍ KARET --- */
.mcard-expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s ease-out;
}

.mcard.open .mcard-expand {
    grid-template-rows: 1fr;
}

.mcard-expand-inner {
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transition: padding .4s ease-out, opacity .3s ease-out;
}

.mcard.open .mcard-expand-inner {
    padding-top: 24px;
    opacity: 1;
}

.exp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

.exp-col-block h4 {
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--teal-dk);
}

.exp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.exp-list li {
    font-size: .85rem;
    line-height: 1.55;
    color: var(--text-lt);
    padding-left: 18px;
    position: relative;
}

.exp-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.exp-list--warn li::before {
    color: #C07A3A;
}

.exp-row {
    margin-bottom: 18px;
}

.exp-row h4 {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal-dk);
    margin-bottom: 8px;
    font-weight: 700;
}

.exp-row p {
    font-size: .88rem;
    line-height: 1.75;
    color: var(--text-lt);
}

.exp-row--freq h4 {
    color: var(--navy);
}

.freq-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(59, 157, 191, .2);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
}

.freq-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    font-size: .83rem;
    gap: 16px;
}

.freq-row:nth-child(odd) {
    background: rgba(59, 157, 191, .06);
}

.freq-row span {
    color: var(--text-lt);
    flex: 1;
}

.freq-row strong {
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
    font-size: .8rem;
}

.freq-note {
    font-size: .78rem;
    color: var(--text-lt);
    font-style: italic;
    margin-top: 6px;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.exp-tags span {
    background: rgba(59, 157, 191, .1);
    color: var(--navy-lt);
    border: 1px solid rgba(59, 157, 191, .25);
    font-size: .73rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 50px;
}

.exp-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--navy);
    color: var(--white);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 14px;
    transition: background .3s, transform .2s;
}

.exp-btn:hover {
    background: var(--teal-dk);
    transform: translateY(-1px);
}

/* ══ O NÁS ══ */
.section-onas {
    background: var(--navy);
    padding: var(--pad-y) var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.section-onas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 157, 191, .08) 0%, transparent 50%);
    pointer-events: none;
}

.onas-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.onas-feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.onas-feat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(59, 157, 191, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.onas-feat h4 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ice-lt);
    margin-bottom: 4px;
}

.onas-feat p {
    font-size: .85rem;
    line-height: 1.65;
    color: rgba(224, 241, 250, .5);
}

.onas-visual {
    position: relative;
    z-index: 1;
    width: 100%;
}

.onas-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px; 
    width: 100%;
    max-width: 500px; 
    margin: 0 auto; 
}

.onas-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    border: 1px solid rgba(224, 241, 250, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onas-image-grid img:hover {
    transform: scale(1.04) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 2; 
}

.onas-image-grid img:nth-child(even):hover {
    transform: scale(1.04) rotate(-1deg);
}

/* ══ POSTUP ══ */
.section-postup {
    padding: var(--pad-y) var(--pad-x);
    background: var(--ice);
}

.postup-head {
    text-align: center;
    margin-bottom: 64px;
}

.postup-head .section-label {
    justify-content: center;
}

.postup-head .section-label::before {
    display: none;
}

.postup-head .section-label::after {
    content: '✦';
    font-size: .65rem;
    color: var(--teal);
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.step {
    text-align: center;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--teal-lt);
    opacity: .5;
    font-weight: 300;
    margin-top: -20px;
}

.step-num {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(59, 157, 191, .2);
    transition: background .3s, color .3s, border-color .3s;
}

.step:hover .step-num {
    background: var(--navy);
    color: var(--teal-lt);
    border-color: var(--navy);
}

.step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step p {
    font-size: .86rem;
    line-height: 1.7;
    color: var(--text-lt);
}

/* ══ KONTAKT ══ */
.section-kontakt {
    padding: var(--pad-y) var(--pad-x);
    background:
        radial-gradient(ellipse 80% 80% at 0% 100%, rgba(59, 157, 191, .14) 0%, transparent 60%),
        var(--ice-lt);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.k-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.k-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.k-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 157, 191, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.k-detail h4 {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-lt);
    margin-bottom: 4px;
    font-weight: 700;
}

.k-detail p {
    font-size: .95rem;
    color: var(--navy);
    font-weight: 700;
}

.k-detail span {
    font-size: .84rem;
    color: var(--text-lt);
}

.kontakt-phone {
    position: relative; z-index: 1;
}

.phone-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 44px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59,157,191,.15);
}

.phone-card-top {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 36px;
}

.phone-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-lt), var(--navy));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    flex-shrink: 0;
}

.phone-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--navy);
}

.phone-role {
    font-size: .78rem; color: var(--text-lt); margin-top: 2px;
}

.phone-number {
    display: flex; align-items: center; justify-content: center;
    gap: 14px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    border-radius: 14px;
    padding: 22px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 700; letter-spacing: .04em;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 8px 32px rgba(22,43,94,.28);
    margin-bottom: 12px;
}

.phone-number:hover {
    background: var(--teal-dk);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(22,43,94,.35);
}

.phone-hint {
    text-align: center; font-size: .75rem;
    color: var(--text-lt); margin-bottom: 28px;
    letter-spacing: .06em;
}

.phone-hours {
    background: var(--ice-lt);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 24px;
    border: 1px solid rgba(59,157,191,.15);
}

.phone-hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0;
    font-size: .88rem;
}

.phone-hours-row:not(:last-child) {
    border-bottom: 1px solid rgba(59,157,191,.12);
}

.phone-hours-row span { color: var(--text-lt); }

.phone-hours-row strong { color: var(--navy); font-weight: 700; }

.phone-divider {
    height: 1px; background: rgba(59,157,191,.15);
    margin-bottom: 20px;
}

.phone-services-label {
    font-size: .68rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: var(--teal-dk); margin-bottom: 12px;
}

.phone-service-tags {
    display: flex; flex-wrap: wrap; gap: 7px;
}

.phone-service-tags span {
    background: rgba(59,157,191,.1);
    color: var(--navy-lt);
    border: 1px solid rgba(59,157,191,.22);
    font-size: .73rem; font-weight: 600;
    padding: 5px 13px; border-radius: 50px;
}

/* ══ FOOTER ══ */
footer {
    background: var(--navy);
    border-top: 4px solid var(--teal-dk);
    position: relative;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 80px var(--pad-x) 60px;
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.8;
    color: rgba(224, 241, 250, .6);
    margin-top: 16px;
    max-width: 320px;
}

.footer-brand .logo-dot {
    color: var(--teal-lt);
}

.footer-col h4 {
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ice-lt);
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a, 
.footer-contact-list li {
    font-size: .9rem;
    color: rgba(224, 241, 250, .55);
    text-decoration: none;
    display: inline-block;
    transition: color .3s ease, transform .3s ease;
    will-change: transform;
}

.footer-col ul a:hover {
    color: var(--teal-lt);
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.footer-contact-list li span {
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(10, 20, 50, 0.4);
    padding: 20px var(--pad-x);
    text-align: center;
    border-top: 1px solid rgba(224, 241, 250, 0.05);
}

.footer-bottom p {
    font-size: .8rem;
    color: rgba(224, 241, 250, .4);
}

/* ══ FADE IN ══ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease var(--delay, 0s), transform .7s ease var(--delay, 0s);
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════
   RESPONZIVITA (Media Queries)
══════════════════════════════════════════ */

@media (max-width: 1100px) {
    .section-onas { grid-template-columns: 1fr; gap: 60px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .section-kontakt { grid-template-columns: 1fr; gap: 50px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    /* Na větším tabletu zmenšíme sloupce a skryjeme šipky */
    .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .step-arrow { display: none; }
}

@media (max-width: 900px) {
    /* Karty masáží se poskládají úhledně pod sebe */
    .mcard, .mcard:nth-child(even) { flex-direction: column; }
    
    /* ZDE JE ZMĚNA: min-height sníženo z 300px na 200px */
    .mcard-img { min-height: 200px; flex: 0 0 auto; width: 100%; }
    
    .mcard-body { padding: clamp(24px, 5vw, 48px); }
    
    .exp-two-col { grid-template-columns: 1fr; gap: 24px; }
    .freq-row { flex-direction: column; align-items: flex-start; gap: 8px; }
    
    /* Na menším tabletu dáme kroky do hezčí mřížky 2x2 */
    .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 110px; }
    
    .hero-badges { 
        gap: 8px; 
        padding: 12px; 
        justify-content: center; 
        border-radius: 16px;
    }
    .hero-badge-sep { display: none; }
    .hero-badge { font-size: 0.8rem; padding: 4px 8px; }
    
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; }
    .phone-number { font-size: clamp(1.3rem, 5vw, 1.7rem); padding: 18px 20px; flex-wrap: wrap; }
    
    .stats-bar { grid-template-columns: 1fr; gap: 24px; }
    
    /* --- VYLEPŠENÉ PLYNULÉ MOBILNÍ MENU --- */
    nav .nav-inner { padding: 6px var(--pad-x); } /* Zmenšený padding pro mobily */
    
    .nav-links { 
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(224, 241, 250, .98);
        backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        padding: 0 var(--pad-x);
        
        /* Skrytý stav připravený k animaci */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
        box-shadow: none;
        border-bottom: 1px solid transparent;
    }
    
    .nav-links.open { 
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 10px var(--pad-x) 30px;
        box-shadow: 0 10px 20px rgba(22, 43, 94, .1);
        border-bottom-color: var(--border);
    }

    /* Odkazy vyjíždějící z boku (kaskádový efekt) */
    .nav-links li { 
        width: 100%;
        opacity: 0;
        transform: translateX(-15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Zpoždění pro jednotlivé odkazy */
    .nav-links.open li:nth-child(1) { transition-delay: 0.08s; }
    .nav-links.open li:nth-child(2) { transition-delay: 0.13s; }
    .nav-links.open li:nth-child(3) { transition-delay: 0.18s; }
    .nav-links.open li:nth-child(4) { transition-delay: 0.23s; }
    .nav-links.open li:nth-child(5) { transition-delay: 0.28s; }

    .nav-links a { 
        display: block; 
        padding: 18px 0; 
        font-size: 1.05rem; 
        border-bottom: 1px solid rgba(22, 43, 94, .08);
    }
    
    .nav-cta { 
        display: inline-block; 
        width: 100%; 
        text-align: center; 
        margin-top: 15px; 
        padding: 14px 26px !important;
    }
    
    .nav-burger { display: flex; padding: 12px; margin-right: -12px; }
    /* ---------------------------------------- */
    
    .steps { grid-template-columns: 1fr; gap: 30px; }
    .onas-image-grid { max-width: 100%; gap: 12px; }
    .onas-image-grid img { border-radius: 8px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .postup-head .section-title { font-size: 2rem; }
}

/* --- Výšková responzivita pro Hero (zabrání překrývání na malých displejích) --- */
@media (max-height: 720px) {
    .hero-scroll { display: none; }
    .hero-center { padding-bottom: 40px; }
}
/* ══════════════════════════════════════════
   CENÍK
══════════════════════════════════════════ */

.section-cenik {
    padding: var(--pad-y) var(--pad-x);
    background: var(--ice);
}

.cenik-head {
    max-width: 600px;
    margin-bottom: 56px;
}

.cenik-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* ── Karta ceníku ── */
.cenik-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 36px 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(59, 157, 191, .15);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cenik-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(59, 157, 191, .15);
}

.cenik-card-icon {
    font-size: 1.5rem;
    width: 48px; height: 48px;
    background: rgba(59, 157, 191, .1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.cenik-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

/* ── Položky ceníku ── */
.cenik-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cenik-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(59, 157, 191, .1);
}

.cenik-item:last-child { border-bottom: none; }

.cenik-item--highlight {
    background: rgba(59, 157, 191, .06);
    border-radius: 8px;
    padding: 11px 12px;
    margin: 0 -12px;
    border-bottom: none;
}

.cenik-item-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.cenik-item-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.cenik-item-dur {
    font-size: .78rem;
    color: var(--text-lt);
    font-style: normal;
}

.cenik-reserve {
    color: var(--teal-dk);
    font-style: normal;
    font-weight: 600;
}

.cenik-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Balíčky ── */
.cenik-card--packages {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-md) 100%);
    border-color: transparent;
}

.cenik-card--packages .cenik-card-header {
    border-bottom-color: rgba(224, 241, 250, .15);
}

.cenik-card--packages .cenik-card-header h3 { color: var(--ice-lt); }

.cenik-packages {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cenik-pkg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(224, 241, 250, .15);
    border-radius: 10px;
    padding: 18px 22px;
}

.cenik-pkg-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ice-lt);
}

.cenik-pkg-badge {
    background: rgba(59, 157, 191, .25);
    color: var(--teal-lt);
    border: 1px solid rgba(59, 157, 191, .4);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.cenik-pkg-badge--gold {
    background: rgba(210, 170, 80, .2);
    color: #E8C96A;
    border-color: rgba(210, 170, 80, .4);
}

/* ── Upozornění ── */
.cenik-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 36px;
    background: rgba(22, 43, 94, .06);
    border: 1px solid rgba(22, 43, 94, .12);
    border-left: 3px solid var(--teal-dk);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: .85rem;
    color: var(--text-lt);
    line-height: 1.65;
    max-width: 680px;
}

.cenik-notice strong { color: var(--navy); }
.cenik-notice svg    { color: var(--teal-dk); }

@media (max-width: 900px) {
    .cenik-grid { grid-template-columns: 1fr; }
    .cenik-card { padding: 28px 28px; }
}

@media (max-width: 600px) {
    .cenik-card { padding: 24px 20px; }
    .cenik-item { flex-direction: column; align-items: flex-start; gap: 4px; }
    .cenik-item-price { font-size: 1rem; }
}

/* ══════════════════════════════════════════
   HOVER EFEKTY – sdílené komponenty
══════════════════════════════════════════ */

/* ── Stats ── */
.stat {
    transition: transform .3s ease;
    cursor: default;
}
.stat:hover { transform: translateY(-4px); }
.stat:hover .stat-n { color: var(--ice-lt); }
.stat-n { transition: color .3s ease; }

/* ── O nás – features ── */
.onas-feat {
    transition: transform .3s ease;
    border-radius: 12px;
    padding: 4px 6px;
    margin: -4px -6px;
}
.onas-feat:hover { transform: translateX(6px); }
.onas-feat:hover .onas-feat-icon {
    background: rgba(59,157,191,.32);
    box-shadow: 0 0 0 6px rgba(59,157,191,.1);
}
.onas-feat-icon { transition: background .3s ease, box-shadow .3s ease; }

/* ── Kontakt – detail řádky ── */
.k-detail {
    transition: transform .3s ease;
    border-radius: 10px;
    padding: 6px 8px;
    margin: -6px -8px;
}
.k-detail:hover { transform: translateX(6px); }
.k-detail:hover .k-icon {
    background: rgba(59,157,191,.24);
    box-shadow: 0 0 0 5px rgba(59,157,191,.08);
}
.k-icon { transition: background .3s ease, box-shadow .3s ease; }

/* ── Kontakt – hodiny ── */
.phone-hours-row {
    transition: background .25s ease;
    border-radius: 6px;
    padding: 8px 8px;
    margin: 0 -8px;
}
.phone-hours-row:hover { background: rgba(59,157,191,.08); }

/* ── Kontakt – tagy ── */
.phone-service-tags span {
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
    cursor: default;
}
.phone-service-tags span:hover {
    background: rgba(59,157,191,.2);
    color: var(--navy);
    border-color: rgba(59,157,191,.45);
    transform: translateY(-2px);
}

/* ── Ceník – karty ── */
.cenik-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cenik-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59,157,191,.35);
}

/* ── Ceník – řádky ── */
.cenik-item {
    transition: background .2s ease, padding .2s ease;
    border-radius: 6px;
    padding: 11px 8px;
    margin: 0 -8px;
    border-bottom: 1px solid rgba(59,157,191,.1);
}
.cenik-item:last-child { border-bottom: none; }
.cenik-item:hover { background: rgba(59,157,191,.06); }
.cenik-item:hover .cenik-item-name { color: var(--navy); }
.cenik-item:hover .cenik-item-price { color: var(--teal-dk); }
.cenik-item-name, .cenik-item-price { transition: color .2s ease; }

/* ── Ceník – zvýrazněná položka přepis ── */
.cenik-item--highlight {
    background: rgba(59,157,191,.06);
    border-radius: 8px;
    padding: 11px 12px;
    margin: 0 -12px;
    border-bottom: none;
}
.cenik-item--highlight:hover { background: rgba(59,157,191,.12); }

/* ── Footer – logo hover ── */
.footer-brand .nav-logo {
    transition: opacity .3s ease;
}
.footer-brand .nav-logo:hover { opacity: .8; }

/* ══════════════════════════════════════════
   EXTRA RESPONZIVITA – sdílená
══════════════════════════════════════════ */

/* Velký tablet na výšku */
@media (max-width: 900px) {
    .section-onas { gap: 48px; }
}

/* Malý telefon */
@media (max-width: 480px) {
    :root {
        --pad-x: 18px;
        --pad-y: 48px;
    }
    .section-title  { font-size: clamp(1.75rem, 7vw, 2.2rem); }
    .hero-title     { font-size: clamp(2.2rem, 9vw, 3rem); }
    .stat-n         { font-size: 2.2rem; }
    .phone-card     { padding: 28px 20px; }
    .phone-number   { font-size: 1.3rem; padding: 16px; gap: 10px; }
    .footer-inner   { padding-top: 48px; padding-bottom: 40px; }
    .cenik-card     { padding: 20px 16px; }
    .cenik-item     { margin: 0 -4px; padding: 10px 4px; }
}

/* Velmi malý telefon */
@media (max-width: 360px) {
    .hero-title { font-size: 2rem; }
    .nav-logo img { height: 48px; }
    .btn-primary, .btn-ghost { padding: 13px 20px; font-size: .78rem; }
}