/* ============================================
   PURE BLISS — Wellness & Lymfatické masáže
   Dizajnový systém + kompletný stylesheet
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --olive: #706034;
    --gold: #C9A96E;
    --gold-light: #E2C992;
    --gold-dark: #A8854A;
    --cream: #FDF8F0;
    --cream-warm: #F9F1E3;
    --blush: #E8C4B8;
    --blush-light: #F2DDD6;
    --text-primary: #3D3425;
    --text-secondary: #6B5D4F;
    --text-light: #F5F0E8;
    --dark: #2A231A;
    --dark-medium: #3D3425;
    --white: #FFFFFF;
    --border: #E8DFD3;
    --border-light: #F0E8DC;
    --shadow: rgba(112, 96, 52, 0.10);
    --shadow-strong: rgba(112, 96, 52, 0.22);
    --success: #5A8F5A;
    --error: #B85450;
    --transition: 0.3s ease;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --max-width: 1140px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    touch-action: manipulation;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    padding-top: 72px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

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

ul, ol {
    list-style: none;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--olive));
    border-radius: 4px;
}
* {
    scrollbar-color: var(--gold) var(--cream);
    scrollbar-width: thin;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Brand Font ---------- */
.brand-script {
    font-family: 'Great Vibes', cursive;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

@media (hover: hover) {
    .btn-primary:hover {
        background: var(--gold-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--shadow-strong);
    }
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

@media (hover: hover) {
    .btn-outline:hover {
        background: var(--gold);
        color: var(--white);
        transform: translateY(-2px);
    }
}

.btn-dark {
    background: var(--dark);
    color: var(--cream);
}

@media (hover: hover) {
    .btn-dark:hover {
        background: var(--dark-medium);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px var(--shadow-strong);
    }
}

.btn-light {
    background: rgba(255,255,255,0.15);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(4px);
}

@media (hover: hover) {
    .btn-light:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-2px);
    }
}

.btn-blush {
    background: var(--blush);
    color: var(--dark);
}

@media (hover: hover) {
    .btn-blush:hover {
        background: var(--blush-light);
        transform: translateY(-2px);
    }
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-brand-logo {
    height: 42px;
    width: 42px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(112, 96, 52, 0.15);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links a {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

@media (hover: hover) {
    .nav-links a:hover {
        color: var(--gold);
    }
    .nav-links a:hover::after {
        width: 60%;
    }
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 60%;
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

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

@media (hover: hover) {
    .nav-cta:hover {
        background: var(--gold-dark) !important;
        color: var(--white) !important;
    }
}

.nav-phone {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gold);
    text-decoration: none;
}

.nav-phone svg {
    width: 22px;
    height: 22px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    gap: 0.4rem;
}

.nav-toggle-icon {
    width: 20px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all var(--transition);
}

/* Mobile overlay menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 50%, var(--blush-light) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.nav-overlay-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-overlay-brand {
    margin-bottom: 1rem;
}

.nav-overlay-brand img {
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(112, 96, 52, 0.2);
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.nav-overlay-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.6rem 2rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(12px);
}

.nav-overlay.open .nav-overlay-links a {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.open .nav-overlay-links a:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.open .nav-overlay-links a:nth-child(2) { transition-delay: 0.14s; }
.nav-overlay.open .nav-overlay-links a:nth-child(3) { transition-delay: 0.20s; }
.nav-overlay.open .nav-overlay-links a:nth-child(4) { transition-delay: 0.26s; }
.nav-overlay.open .nav-overlay-links a:nth-child(5) { transition-delay: 0.32s; }
.nav-overlay.open .nav-overlay-links a:nth-child(6) { transition-delay: 0.38s; }
.nav-overlay.open .nav-overlay-links a:nth-child(7) { transition-delay: 0.44s; }

.nav-overlay-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s ease 0.5s;
}

.nav-overlay.open .nav-overlay-contact {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay-contact a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.nav-overlay-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.nav-overlay-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(112, 96, 52, 0.1);
    color: var(--olive);
    transition: all var(--transition);
}

@media (hover: hover) {
    .nav-overlay-social a:hover {
        background: var(--gold);
        color: var(--white);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-warm {
    background: var(--cream-warm);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background: var(--dark);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--cream);
}

.section-dark p {
    color: rgba(245, 240, 232, 0.8);
}

.section-olive {
    background: var(--olive);
    color: var(--text-light);
}

.section-olive h2,
.section-olive h3 {
    color: var(--cream);
}

.section-olive p {
    color: rgba(245, 240, 232, 0.8);
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
    display: block;
}

.section-header h2 {
    margin-bottom: 0.8rem;
}

.section-header p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* Section divider (SVG wave) */
.section-divider {
    display: block;
    width: 100%;
    height: auto;
    margin: -1px 0;
    line-height: 0;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    overflow: hidden;
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 55%;
    height: 110%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 45%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(232, 196, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco {
    position: absolute;
    pointer-events: none;
}

.hero-deco-left {
    left: 5%;
    top: 18%;
    width: 180px;
    height: 180px;
    border: 2px solid var(--gold);
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    opacity: 0.07;
    animation: morph 8s ease-in-out infinite;
}

.hero-deco-right {
    right: 6%;
    bottom: 20%;
    width: 140px;
    height: 140px;
    border: 2px solid var(--blush);
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    opacity: 0.08;
    animation: morph 10s ease-in-out infinite reverse;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
    33% { border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%; }
    66% { border-radius: 40% 60% 60% 40% / 50% 40% 50% 60%; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(112, 96, 52, 0.2), 0 0 0 1px rgba(201, 169, 110, 0.15);
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .hero-logo:hover {
        transform: scale(1.03);
    }
}

.hero-title {
    margin-bottom: 1.2rem;
}

.hero-title .hero-subtitle-line {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.hero-description {
    font-size: 1.08rem;
    max-width: 540px;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
    padding: 3rem 0 2.5rem;
    text-align: center;
    background: var(--cream-warm);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 60% at 50% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.page-hero h1 {
    margin-bottom: 0.6rem;
}

.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--gold);
}

/* ---------- Cards (Glass) ---------- */
.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--transition);
}

@media (hover: hover) {
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px var(--shadow-strong);
        border-color: rgba(201, 169, 110, 0.3);
    }
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 14px;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.card h3 {
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.95rem;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--blush), var(--gold));
    opacity: 0;
    transition: opacity var(--transition);
}

@media (hover: hover) {
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px var(--shadow-strong);
        border-color: rgba(201, 169, 110, 0.3);
    }
    .service-card:hover::before {
        opacity: 1;
    }
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(232, 196, 184, 0.15));
    border-radius: 50%;
    color: var(--gold);
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.service-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.service-card .price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ---------- Pricing Table (detailed) ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.2);
}

.pricing-card.featured::before {
    content: 'Najobľúbenejšia';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

@media (hover: hover) {
    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px var(--shadow-strong);
    }
}

.pricing-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(232, 196, 184, 0.12));
    border-radius: 50%;
    color: var(--gold);
}

.pricing-card-icon svg {
    width: 32px;
    height: 32px;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .duration {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pricing-card .price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.pricing-card .price-tag small {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-card .price-note {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-card-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

/* ---------- About (o nás) ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px var(--shadow-strong);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.about-value-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 10px;
    color: var(--gold);
}

.about-value-icon svg {
    width: 20px;
    height: 20px;
}

.about-value h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.about-value p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--blush));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.testimonial-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ---------- CTA Section ---------- */
.cta-section {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--dark) 0%, var(--olive) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 60% at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(232, 196, 184, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.cta-section p {
    color: rgba(245, 240, 232, 0.8);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact Form ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

@media (hover: hover) {
    a.contact-info-item:hover {
        background: rgba(201, 169, 110, 0.08);
    }
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 12px;
    color: var(--gold);
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-text h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-status {
    display: none;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    display: block;
    background: rgba(90, 143, 90, 0.12);
    color: var(--success);
    border: 1px solid rgba(90, 143, 90, 0.3);
}

.form-status.error {
    display: block;
    background: rgba(184, 84, 80, 0.12);
    color: var(--error);
    border: 1px solid rgba(184, 84, 80, 0.3);
}

/* ---------- Workshops / Kurzy ---------- */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.workshop-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

@media (hover: hover) {
    .workshop-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px var(--shadow-strong);
    }
}

.workshop-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--cream-warm), var(--blush-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.workshop-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

.workshop-card-body {
    padding: 1.5rem;
}

.workshop-card-body h3 {
    margin-bottom: 0.5rem;
}

.workshop-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.workshop-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.workshop-card-meta svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.workshop-card-body p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.workshop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workshop-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.workshop-card-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* ---------- Info Box ---------- */
.info-box {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
}

.info-box h3 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box p {
    font-size: 0.95rem;
}

/* ---------- Opening Hours ---------- */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.92rem;
}

.hours-row .day {
    font-weight: 600;
}

.hours-row .time {
    color: var(--text-secondary);
}

/* ---------- Map embed ---------- */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ---------- Legal pages ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.legal-content h1 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.legal-content .last-updated {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--olive);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand-area {
    text-align: center;
    padding: 4rem 0 2rem;
}

.footer-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    margin: 0 auto 1.2rem;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(248, 251, 12, 0.15);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: rgba(253, 248, 240, 0.8);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    opacity: 0.5;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 0 1.5rem 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.4rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
    color: rgba(253, 248, 240, 0.85);
    font-size: 0.9rem;
}

@media (hover: hover) {
    .footer-contact-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        color: var(--cream);
    }
}

.footer-contact-card svg {
    width: 18px;
    height: 18px;
    color: #f8fb0c;
    flex-shrink: 0;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
    padding: 0 1.5rem 2rem;
    font-size: 0.88rem;
}

.footer-links-row a {
    color: rgba(253, 248, 240, 0.6);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    transition: color var(--transition);
}

@media (hover: hover) {
    .footer-links-row a:hover {
        color: #f8fb0c;
    }
}

.footer-sep {
    color: rgba(253, 248, 240, 0.2);
    user-select: none;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding-bottom: 2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(253, 248, 240, 0.8);
    transition: all var(--transition);
}

@media (hover: hover) {
    .footer-social a:hover {
        background: #f8fb0c;
        color: var(--olive);
    }
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(253, 248, 240, 0.4);
}

.footer-bottom a {
    color: rgba(253, 248, 240, 0.5);
    transition: color var(--transition);
}

@media (hover: hover) {
    .footer-bottom a:hover {
        color: #f8fb0c;
    }
}

/* ---------- Cookie Consent ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    background: rgba(42, 35, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 1.2rem 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner.visible {
    display: flex;
}

.cookie-banner p {
    color: rgba(245, 240, 232, 0.85);
    font-size: 0.88rem;
    margin-bottom: 0;
    max-width: 600px;
}

.cookie-banner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--white);
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(245, 240, 232, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 800;
    box-shadow: 0 4px 16px var(--shadow-strong);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (hover: hover) {
    .back-to-top:hover {
        background: var(--gold-dark);
        transform: translateY(-3px);
    }
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ---------- 404 Page ---------- */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.error-page h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page h2 {
    margin-bottom: 1rem;
}

.error-page p {
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ---------- Placeholder (booking) ---------- */
.placeholder-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(201, 169, 110, 0.06);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    color: var(--gold);
}

.placeholder-icon svg {
    width: 40px;
    height: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle,
    .nav-phone {
        display: flex;
    }

    .hero-deco {
        display: none;
    }

    .hero-logo {
        width: 130px;
        height: 130px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 64px;
    }

    .nav-inner {
        height: 64px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        border-radius: 18px;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links-row {
        gap: 0;
    }

    .footer-brand-area {
        padding: 3rem 0 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for multiple elements */
.fade-in-up:nth-child(1) { transition-delay: 0s; }
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* Golden shimmer on cards */
@keyframes shimmer-gold {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ---------- Print ---------- */
@media print {
    .nav, .nav-overlay, .cookie-banner, .back-to-top, .footer {
        display: none !important;
    }
    body {
        padding-top: 0;
        color: #000;
        background: #fff;
    }
    .section-dark, .section-olive, .cta-section {
        background: #fff !important;
        color: #000 !important;
    }
}
