/* =====================================================
   REGEN ŽILINA — Modern Premium Design
   Green-dominant, editorial, high-end
   ===================================================== */

:root {
    --green: #53614a;
    --green-light: #7d9270;
    --green-lighter: #95a88a;
    --green-pale: #e4ebe0;
    --green-wash: #f0f4ee;
    --cream: white;
    --gold: #C9A96E;
    --text: #1a1a1a;
    --text-secondary: #232323;
    --text-muted: #3f3f3f;
    --border: #e5e5e5;
    --white: #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
    position: fixed;
    padding: 10px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav--menu-open {
    transition: none;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--ease);
}

.nav--scrolled {
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.nav--menu-open.nav--scrolled {
    background: transparent;
    backdrop-filter: none;
}

.nav--scrolled .nav__inner { height: 64px; }

.nav__logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    transition: color 0.4s var(--ease);
}

.nav--scrolled .nav__logo { color: var(--green); }

.nav__logo-r { font-weight: 300; }
.nav__logo-dot { color: var(--gold); }

.nav__logo-img {
    height: 52px;
    width: auto;
    display: block;
    transition: height 0.4s var(--ease);
}

.nav__logo-img--dark { display: none; }

.nav--scrolled .nav__logo-img { height: 52px; }
.nav--scrolled .nav__logo-img--white { display: none; }
.nav--scrolled .nav__logo-img--dark { display: block; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: white;
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav--scrolled .nav__link { color: var(--text-secondary); }
.nav__link:hover, .nav__link--active { color: var(--white); }
.nav--scrolled .nav__link:hover, .nav--scrolled .nav__link--active { color: var(--green); }

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.nav__cta {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--green);
    background: var(--white);
    padding: 10px 24px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--green);
    transform: translateY(-1px);
}

.nav--scrolled .nav__cta {
    background: var(--green);
    color: var(--white);
}

.nav--scrolled .nav__cta:hover {
    background: var(--green-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.nav--scrolled .nav__toggle span { background: var(--green); }

.nav__toggle--open { gap: 0; }
.nav__toggle--open span,
.nav--scrolled .nav__toggle--open span { background: var(--white); }
.nav__toggle--open span:first-child { transform: rotate(45deg) translate(0, 1px); }
.nav__toggle--open span:last-child { transform: rotate(-45deg) translate(0, -1px); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 127, 94, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.btn--ghost-dark {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn--ghost-dark:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline-light:hover {
    background: var(--white);
    color: var(--green);
}

.btn--sm { padding: 10px 24px; font-size: 18px; }
.btn--lg { padding: 18px 40px; font-size: 18px; }

.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
.label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.label--light { color: rgba(255,255,255,0.9); }

.h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: bold;
    line-height: 1.15;
    color: var(--green);
    letter-spacing: -0.5px;
}

.h2--light { color: var(--white); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    margin-top: 24px;
    transition: gap 0.3s var(--ease);
}

.link-arrow:hover { gap: 12px; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: var(--green);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' fill='white'/%3E%3C/svg%3E");
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(42, 90, 69, 0.4);
    top: -200px;
    right: -100px;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(30, 68, 50, 0.5);
    bottom: -100px;
    left: -100px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero__title span {
    font-style: italic;
    color: var(--green-pale);
}

.hero__text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__card-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 340px;
}

.hero__float-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease);
}

.hero__float-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(8px);
}

.hero__float-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hero__float-card-price {
    font-size: 14px;
    color: var(--green-pale);
    font-weight: 500;
}

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

.hero .btn--primary:hover {
    background: var(--green-pale);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =====================================================
   STRIP
   ===================================================== */
.strip {
    background: var(--green);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 0;
}

.strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.strip__item {
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.strip__item:last-child { border-right: none; }

.strip__number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -1px;
}

.strip__label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 120px 0;
}

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

.section--dark .label { color: var(--green); }
.section--dark .h2 { color: var(--green); }

.section--green {
    background: #2c3527;
}

.section--green .label { color: rgba(255,255,255,0.8); }
.section--green .h2 { color: var(--white); }

.section--soft {
    background: var(--green-wash);
}

.section__head {
    margin-bottom: 64px;
}

.section__action {
    text-align: center;
    margin-top: 56px;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
    background-color: var(--green);
    background-size: cover;
    background-position: center;
    padding-top: 190px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(42, 90, 69, 0.3);
    filter: blur(120px);
    top: -200px;
    right: -100px;
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 46, 35, 0.86), rgba(20, 46, 35, 0.8));
    z-index: 1;
}

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

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    position: relative;
}

.page-hero__title span {
    font-style: italic;
    color: var(--green-pale);
}

/* =====================================================
   INTRO (Homepage)
   ===================================================== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro__right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* =====================================================
   SERVICES PREVIEW (Homepage)
   ===================================================== */
.services-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sp-card {
    display: flex;
    flex-direction: column;
    padding: 36px 32px;
    background: var(--green);
    border: 1px solid var(--green-light);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-pale), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.sp-card:hover {
    background: var(--green-light);
    border-color: var(--green-lighter);
    transform: translateY(-4px);
}

.sp-card:hover::before { opacity: 1; }

.sp-card__num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1;
    margin-bottom: 24px;
}

.sp-card__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 12px;
}

.sp-card__text {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    flex: 1;
    margin-bottom: 24px;
}

.sp-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.sp-card__meta {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}

.sp-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.sp-card__arrow {
    position: absolute;
    top: 32px;
    right: 32px;
    color: rgba(255,255,255,0.15);
    transition: all 0.3s var(--ease);
}

.sp-card:hover .sp-card__arrow {
    color: var(--green-pale);
    transform: translate(2px, -2px);
}

/* =====================================================
   CTA
   ===================================================== */
.cta {
    padding: 120px 0;
    background: var(--green-wash);
}

.cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: bold;
    color: var(--green);
    margin-bottom: 16px;
}

.cta__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid__text h2 { margin-bottom: 24px; }

.about-grid__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-visual {
    position: relative;
    height: 400px;
}

.about-visual__block {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
}

.about-visual__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-visual__block--1 {
    width: 260px;
    height: 320px;
    top: 0;
    left: 0;
}

.about-visual__block--2 {
    width: 200px;
    height: 240px;
    bottom: 0;
    right: 0;
}

.about-visual__stat {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-visual__stat span {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    padding: 40px 32px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--green-pale);
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* Target cards */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.target-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.target-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(107, 127, 94, 0.06);
}

.target-card__line {
    width: 40px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 24px;
}

.target-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
    line-height: 1.4;
}

.target-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.svc-item:first-child { padding-top: 0; }

.svc-item__num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 300;
    color: var(--green-pale);
    line-height: 1;
}

.svc-item__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.svc-item__head h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: bold;
    color: var(--green);
}

.svc-item__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.svc-item__duration {
    font-size: 13px;
    color: var(--text-muted);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.svc-item__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
}

.svc-item__body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 20px;
}

/* Addon cards */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.addon-card {
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.addon-card:hover {
    border-color: var(--green);
    box-shadow: 0 12px 40px rgba(107, 127, 94, 0.06);
}

.addon-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.addon-card__top h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
}

.addon-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
}

.addon-card__duration {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: block;
}

.addon-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   PRICING PAGE
   ===================================================== */
.pricing {
    max-width: 800px;
    margin: 0 auto;
}

.pricing__group-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 32px 0 16px;
}

.pricing__row:first-child .pricing__group-label { padding-top: 0; }

.pricing__row-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    gap: 24px;
}

.pricing__row:last-child .pricing__row-inner { border-bottom: none; }

.pricing__row-left h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 4px;
}

.pricing__row-desc {
    font-size: 16px;
    color: var(--text-muted);
    display: block;
}

.pricing__row-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.pricing__row-duration {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing__row-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
    min-width: 50px;
    text-align: right;
}

.pricing__row-btn {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    padding: 8px 20px;
    border: 1px solid var(--green);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.pricing__row-btn:hover {
    background: var(--green);
    color: var(--white);
}

/* =====================================================
   BOOKING
   ===================================================== */
.booking {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.booking__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.booking__step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    transition: all 0.3s var(--ease);
}

.booking__step--active { opacity: 1; }
.booking__step--done { opacity: 0.7; }

.booking__step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    background: var(--green-pale);
    color: var(--green);
    transition: all 0.3s var(--ease);
}

.booking__step--active .booking__step-num {
    background: var(--green);
    color: var(--white);
}

.booking__step-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.booking__step-line {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 0 12px;
}

.booking__panel { display: none; }
.booking__panel--active { display: block; animation: fadeUp 0.4s var(--ease-out); }

.booking__panel-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 28px;
}

.booking__services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.booking__svc input { display: none; }

.booking__svc-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    gap: 12px;
}

.booking__svc-card:hover { border-color: var(--green); }

.booking__svc input:checked + .booking__svc-card {
    border-color: var(--green);
    background: var(--green-wash);
}

.booking__svc-left {
    min-width: 0;
    flex: 1;
}

.booking__svc-left strong {
    display: block;
    font-size: 18px;
    color: var(--green);
}

.booking__svc-left span {
    font-size: 16px;
    color: var(--text-muted);
    display: block;
    white-space: normal;
    word-wrap: break-word;
}

.booking__svc-right { text-align: right; flex-shrink: 0; }

.booking__svc-duration {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.booking__svc-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
}

.booking__datetime {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.booking__date-col,
.booking__time-col {
    min-width: 0;
}

.booking__slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.booking__slot {
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s var(--ease);
    background: none;
    font-family: var(--font-body);
}

.booking__slot:hover { border-color: var(--green); color: var(--green); }

.booking__slot--active,
.booking__slot--active:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.booking__slots-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 24px;
}

.booking__actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
}

.booking__summary {
    background: var(--green-wash);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 28px;
}

.booking__sum-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 127, 94, 0.06);
}

.booking__sum-row:last-child { border-bottom: none; }
.booking__sum-row span { font-size: 14px; color: var(--text-secondary); }
.booking__sum-row strong { font-size: 14px; color: var(--green); }

.booking__sum-row--total { margin-top: 8px; padding-top: 16px; border-top: 2px solid var(--green); border-bottom: none; }
.booking__sum-row--total strong { font-size: 18px; }

.booking__success { text-align: center; padding: 40px 0; }
.booking__success-icon { color: var(--green); margin-bottom: 24px; }
.booking__success h3 { font-family: var(--font-display); font-size: 32px; color: var(--green); margin-bottom: 12px; }
.booking__success p { color: var(--text-secondary); font-size: 15px; max-width: 400px; margin: 0 auto; line-height: 1.7; }

/* =====================================================
   FORMS
   ===================================================== */
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s var(--ease);
}

input[type="date"].form-input,
input[type="time"].form-input {
    -webkit-min-logical-width: 0px;
}

input[type="date"].form-input::-webkit-date-and-time-value {
    text-align: left;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
    margin-left: 4px;
    padding: 0;
}

.form-input:focus {
    outline: none;
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 127, 94, 0.08);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--green-pale);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-info__item strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 4px;
}

.contact-info__item p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 24px;
}

.contact-form .form-group { margin-bottom: 20px; }

.contact-form__msg {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
}

.contact-form__msg--ok { color: var(--green); }
.contact-form__msg--err { color: #dc3545; }

.map-section { background: var(--green); padding: 0px 0 0; }
.map-section iframe { display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer__cta {
    background: var(--green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.footer__cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.footer__cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
}

.footer__cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.746);
    line-height: 1.6;
}

.footer__main {
    background: #2c3a2e;
    padding: 80px 0 56px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer__logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.footer__col--brand > p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__social a {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s var(--ease);
}

.footer__social a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.75);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__social svg {
    width: 28px;
    height: 28px;
}

.footer__col h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.footer__col a {
    display: block;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    padding: 6px 0;
    transition: all 0.3s var(--ease);
}

.footer__col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__col p {
    font-size: 18px !important;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
    width: 22px;
    height: 22px;
}

.footer__contact-link {
    display: inline !important;
    padding: 0 !important;
}

.footer__hours {
    display: none;
    
    justify-content: space-between;
    max-width: 180px;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.footer__bottom {
    background: #242e26;
    padding: 24px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s var(--ease);
}

.footer__bottom-links a:hover {
    color: rgba(255,255,255,0.6);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.anim-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.7s var(--ease-out) forwards;
}

.anim-fade[data-delay="1"] { animation-delay: 0.15s; }
.anim-fade[data-delay="2"] { animation-delay: 0.3s; }
.anim-fade[data-delay="3"] { animation-delay: 0.45s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.anim-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s var(--ease-out);
}

.anim-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-reveal[data-delay="1"] { transition-delay: 0.12s; }
.anim-reveal[data-delay="2"] { transition-delay: 0.24s; }
.anim-reveal[data-delay="3"] { transition-delay: 0.36s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .section { padding: 80px 0; }
    .cta { padding: 80px 0; }

    .hero__container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero__text { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__card-stack { max-width: 300px; margin: 0 auto; }

    .intro { grid-template-columns: 1fr; gap: 40px; }

    .services-preview { grid-template-columns: 1fr 1fr; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 300px; }

    .values-grid,
    .target-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 1100px) {
    .nav__toggle { display: flex; z-index: 1002; position: relative; }
    .nav__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #2c3527;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 1001;
    }

    .nav__menu--open { display: flex; }

    .nav__menu .nav__link {
        font-size: 24px;
        font-family: var(--font-display);
        font-weight: 400;
        color: var(--white);
        padding: 16px;
    }

    .nav__menu .nav__link--active::after { display: none; }

    .nav__menu .nav__cta {
        margin-top: 24px;
        font-size: 16px;
        padding: 14px 36px;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .btn { font-size: 16px; padding: 12px 30px; }
    .btn--sm { padding: 8px 22px; font-size: 16px; }
    .btn--lg { font-size: 18px; }
    .link-arrow { font-size: 16px; }
    .sp-card__text { font-size: 18px; }

    .section { padding: 64px 0; }
    .cta { padding: 64px 0; }

    .strip__grid { grid-template-columns: 1fr; gap: 0; }
    .strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px; }
    .strip__item:last-child { border-bottom: none; }

    .services-preview { grid-template-columns: 1fr; }

    .svc-item { grid-template-columns: 1fr; gap: 0; }
    .svc-item__num { font-size: 36px; margin-bottom: 12px; }
    .svc-item__head { flex-direction: column; }

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

    .booking { padding: 28px 20px; }
    .contact-form-wrap { padding: 28px 20px; }
    .booking__step-text { display: none; }
    .booking__step-num { font-size: 16px; }
    .booking__datetime { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }

    .booking__svc-left span {
        font-size: 14px;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .pricing__row-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .pricing__row-right { width: 100%; flex-wrap: wrap; align-items: center; }
    .pricing__row-right .pricing__row-price { order: 1; }
    .pricing__row-right .pricing__row-duration { order: 2; }
    .pricing__row-right .pricing__row-btn { order: 3; margin-left: auto; }
    .pricing__row-desc { max-width: 100%; }

    .page-hero { padding-top: 150px; padding-bottom: 60px; }

    .footer { font-size: 16px; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__col h4 { font-size: 16px; }
    .footer__col a { font-size: 16px; }
    .footer__col p { font-size: 16px !important; }
    .footer__bottom { font-size: 14px; }
    .footer__bottom p { font-size: 14px; }
    .footer__bottom-links a { font-size: 14px; }
    .footer__social a { width: 44px; height: 44px; }
    .footer__social svg { width: 20px; height: 20px; }
    .footer__bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
    .footer__bottom-links { justify-content: center; }
}

/* Cookie consent */
.cookie-banner[hidden] { display: none; }

.cookie-banner {
    position: fixed;
    z-index: 10000;
    right: 24px;
    bottom: 24px;
    left: 24px;
    max-width: 1040px;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: #173124;
    color: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.cookie-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cookie-banner__content { max-width: 650px; }
.cookie-banner__eyebrow { display: block; margin-bottom: 5px; color: #c9a96e; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.cookie-banner h2 { margin: 0 0 7px; color: #fff; font-size: 25px; }
.cookie-banner p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 14px; line-height: 1.6; }
.cookie-banner a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex-shrink: 0; gap: 10px; }
.cookie-banner__button { min-height: 46px; padding: 11px 19px; border: 1px solid #fff; border-radius: 8px; font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; }
.cookie-banner__button--primary { background: #fff; color: #173124; }
.cookie-banner__button--secondary { background: transparent; color: #fff; }
.cookie-banner__button:focus-visible { outline: 3px solid #c9a96e; outline-offset: 3px; }

.map-consent__placeholder {
    display: flex;
    min-height: 450px;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #eef1ed;
    text-align: center;
}
.map-consent__placeholder h2, .map-consent__placeholder p { margin: 0; }
.map-consent__placeholder a { color: #173124; font-size: 14px; text-decoration: underline; }

@media (max-width: 760px) {
    .cookie-banner { right: 12px; bottom: 12px; left: 12px; padding: 20px; }
    .cookie-banner__inner { align-items: stretch; flex-direction: column; gap: 18px; }
    .cookie-banner__actions { flex-direction: column-reverse; }
    .cookie-banner__button { width: 100%; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 36px; }
    .hero__actions { flex-direction: column; align-items: center; width: 100%; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .booking__slots { grid-template-columns: repeat(2, 1fr); }
    .booking__step-line { width: 20px; }
}

/* =====================================================
   MASSAGE VISUALIZATION
   ===================================================== */
.massage-viz { overflow: hidden; }

.mviz {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
}

.mviz__scene {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mviz__svg {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 500px;
}

.mviz__spine {
    stroke-dasharray: 4 8;
    animation: spineGlow 3s ease-in-out infinite;
}

@keyframes spineGlow {
    0%, 100% { stroke: rgba(149,168,138,0.3); }
    50% { stroke: rgba(149,168,138,0.6); }
}

.mviz__muscle { transition: all 2.5s var(--ease); }

/* Napätie body */
.mviz__tension {
    fill: #e53e3e;
    opacity: 0.7;
    transition: all 2s var(--ease);
    animation: tensionPulse 4s ease-in-out infinite;
}

@keyframes tensionPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.85; }
}

/* Fáza 2 — masáž */
.mviz--phase-2 .mviz__tension {
    opacity: 0.4;
    r: 8;
    fill: #e5a03e;
    animation: none;
}

/* Fáza 3 — uvoľnenie */
.mviz--phase-3 .mviz__tension {
    opacity: 0;
    r: 0;
    animation: none;
}

/* Vlny uvoľnenia */
.mviz__wave {
    fill: none;
    stroke: rgba(107,127,94,0.2);
    stroke-width: 1.5;
    opacity: 0;
    transition: all 1.5s var(--ease);
}

.mviz--phase-3 .mviz__wave {
    animation: waveExpand 5s ease-out infinite;
}

.mviz--phase-3 .mviz__wave--2 { animation-delay: 1.7s; }
.mviz--phase-3 .mviz__wave--3 { animation-delay: 3.4s; }

@keyframes waveExpand {
    0% { r: 10; opacity: 0.4; stroke-width: 2; }
    100% { r: 120; opacity: 0; stroke-width: 0.3; }
}

/* Ruky */
.mviz__hand ellipse {
    fill: rgba(149,168,138,0.15);
    stroke: rgba(149,168,138,0.35);
    stroke-width: 1;
    transition: all 2s var(--ease);
}

.mviz__hand {
    opacity: 0;
    transition: opacity 2s var(--ease);
}

.mviz--phase-2 .mviz__hand {
    opacity: 1;
    animation: handMove 5s ease-in-out infinite;
}

.mviz--phase-2 .mviz__hand ellipse {
    fill: rgba(149,168,138,0.25);
    stroke: rgba(149,168,138,0.5);
}

.mviz--phase-3 .mviz__hand {
    opacity: 0.5;
}

@keyframes handMove {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(140px); }
}

.mviz__hand--r { animation-delay: 0.4s; }
.mviz--phase-2 .mviz__hand--r { animation-delay: 0.4s; }

/* Šípky pohybu */
.mviz__stroke {
    stroke: rgba(149,168,138,0.25);
    opacity: 0;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: all 1.5s var(--ease);
}

.mviz--phase-2 .mviz__stroke {
    opacity: 1;
    stroke: rgba(149,168,138,0.55);
    animation: strokeDraw 4s ease-in-out infinite;
}

@keyframes strokeDraw {
    0% { stroke-dashoffset: 60; opacity: 0; }
    40% { stroke-dashoffset: 0; opacity: 1; }
    80% { stroke-dashoffset: -60; opacity: 0; }
    100% { stroke-dashoffset: -60; opacity: 0; }
}

.mviz__stroke--2 { animation-delay: 0.3s !important; }
.mviz__stroke--3 { animation-delay: 0.6s !important; }
.mviz__stroke--4 { animation-delay: 0.9s !important; }

/* Častice uvoľnenia */
.mviz__particle {
    fill: var(--green-lighter);
    opacity: 0;
    transition: all 1.5s var(--ease);
}

.mviz--phase-3 .mviz__particle { animation: particleFloat 6s ease-in-out infinite; }
.mviz--phase-3 .mviz__particle--2 { animation-delay: 0.8s; }
.mviz--phase-3 .mviz__particle--3 { animation-delay: 1.5s; }
.mviz--phase-3 .mviz__particle--4 { animation-delay: 2.3s; }
.mviz--phase-3 .mviz__particle--5 { animation-delay: 3s; }
.mviz--phase-3 .mviz__particle--6 { animation-delay: 1.1s; }
.mviz--phase-3 .mviz__particle--7 { animation-delay: 2s; }
.mviz--phase-3 .mviz__particle--8 { animation-delay: 2.7s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translate(0, 0) scale(1); }
    15% { opacity: 0.7; }
    100% { opacity: 0; transform: translate(var(--px, 30px), var(--py, -80px)) scale(0); }
}

.mviz__particle--1 { --px: -40px; --py: -70px; }
.mviz__particle--2 { --px: 50px; --py: -60px; }
.mviz__particle--3 { --px: -30px; --py: -80px; }
.mviz__particle--4 { --px: 40px; --py: -50px; }
.mviz__particle--5 { --px: -20px; --py: -90px; }
.mviz__particle--6 { --px: 35px; --py: -75px; }
.mviz__particle--7 { --px: -50px; --py: -55px; }
.mviz__particle--8 { --px: 45px; --py: -85px; }

/* Svalové vrstvy zmena */
.mviz--phase-2 .mviz__muscle { stroke: rgba(149,168,138,0.25); }
.mviz--phase-3 .mviz__muscle { stroke: rgba(149,168,138,0.3); }
.mviz--phase-3 .mviz__spine { stroke: rgba(149,168,138,0.6); stroke-dasharray: none; animation: none; }

/* Info panel */
.mviz__info {
    position: relative;
    min-height: 200px;
}

.mviz__phase {
    display: none;
}

.mviz__phase--active {
    display: block;
    animation: fadeUp 0.5s var(--ease-out);
}

.mviz__phase-label {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--green-lighter);
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 12px;
}

.mviz__phase h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: bold;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mviz__phase p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 420px;
}

/* Ovládacie tlačidlá */
.mviz__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.mviz__btn {
    padding: 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.3px;
}

.mviz__btn:hover {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.mviz__btn--active {
    background: var(--green-light);
    color: var(--white);
    border-color: var(--green-light);
}

@media (max-width: 1024px) {
    .mviz { grid-template-columns: 1fr; gap: 40px; }
    .mviz__svg { max-width: 100%; min-height: 400px; }
    .mviz__phase p { max-width: 100%; }
    .mviz__info { text-align: center; }
}

@media (max-width: 768px) {
    .mviz__svg { max-width: 100%; min-height: 350px; }
    .mviz__controls { flex-direction: column; align-items: center; }
    .mviz__btn { width: 200px; text-align: center; }
    .mviz__phase p { font-size: 18px; }
}

/* =====================================================
   TIMELINE (unused, kept for reference)
   ===================================================== */
.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline__progress {
    width: 100%;
    height: 0;
    background: var(--green);
    transition: height 0.1s linear;
    border-radius: 1px;
}

.timeline__steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline__step {
    display: flex;
    gap: 32px;
    padding: 36px 0;
    position: relative;
}

.timeline__step:first-child { padding-top: 0; }
.timeline__step:last-child { padding-bottom: 0; }

.timeline__step-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 72px;
}

.timeline__step-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: color 0.5s var(--ease);
}

.timeline__step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: all 0.5s var(--ease);
}

.timeline__step--reached .timeline__step-icon {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 127, 94, 0.2);
}

.timeline__step--reached .timeline__step-num {
    color: var(--green);
}

.timeline__step-content {
    padding-top: 4px;
    flex: 1;
}

.timeline__step-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 8px;
    transition: color 0.5s var(--ease);
}

.timeline__step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 440px;
}

@media (max-width: 768px) {
    .timeline__line { left: 24px; }
    .timeline__step { gap: 20px; padding: 28px 0; }
    .timeline__step-marker { width: 48px; }
    .timeline__step-icon { width: 44px; height: 44px; }
    .timeline__step-icon svg { width: 22px; height: 22px; }
    .timeline__step-content h3 { font-size: 18px; }
}

/* =====================================================
   BODY MAP PAGE
   ===================================================== */
.page-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-top: 16px;
    line-height: 1.6;
}

.bodymap-section {
    padding: 0;
    background: var(--cream);
    overflow: visible;
}

.bodymap-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px 100px;
}

.bodymap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    min-height: 700px;
}

.bodymap__figure {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    overflow: visible;
}

.bodymap__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(107, 127, 94, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.bodymap__svg {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.bodymap__silhouette {
    fill: url(#bodyGrad);
    stroke: #a3bfad;
    stroke-width: 1;
    transition: all 0.5s var(--ease);
}

.bodymap__hit {
    fill: transparent;
    cursor: pointer;
}

.bodymap__ring {
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.15));
}

.bodymap__dot {
    fill: var(--white);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.bodymap__pulse {
    fill: none;
    stroke: var(--white);
    stroke-width: 1.5;
    opacity: 0.5;
    animation: bmpulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bmpulse {
    0%, 100% { r: 10; opacity: 0.5; stroke-width: 1.5; }
    50% { r: 22; opacity: 0; stroke-width: 0.5; }
}

.bodymap__point { cursor: pointer; }

.bodymap__point:hover .bodymap__ring {
    stroke: var(--green);
    stroke-width: 3;
}

.bodymap__point:hover .bodymap__dot {
    fill: var(--green);
}

.bodymap__point--active .bodymap__ring {
    stroke: #ef4444;
    stroke-width: 3;
}

.bodymap__point--active .bodymap__dot {
    fill: #ef4444;
}

.bodymap__point--active .bodymap__pulse {
    stroke: #ef4444;
    animation-name: bmpulse-active;
}

@keyframes bmpulse-active {
    0%, 100% { r: 12; opacity: 0.6; stroke-width: 2; }
    50% { r: 28; opacity: 0; stroke-width: 0.5; }
}

/* SVG inline labels */
.bodymap__svg-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    fill: var(--green);
    cursor: pointer;
    transition: fill 0.3s;
}

.bodymap__svg-label--left {
    text-anchor: end;
}

.bodymap__svg-label:hover {
    fill: var(--green-lighter);
}

.bodymap__svg-label--active {
    fill: #ef4444;
    font-weight: 700;
}

/* Panel */
.bodymap__panel {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    min-height: 400px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.04);
}

.bodymap__panel-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
    gap: 16px;
}

.bodymap__panel-icon {
    color: var(--green);
    opacity: 0.25;
}

.bodymap__panel-default h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: bold;
    color: var(--green);
}

.bodymap__panel-default p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.7;
}

.bodymap__panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color 0.2s;
}

.bodymap__panel-close:hover { color: var(--text); }

.bodymap__panel-content--enter {
    animation: panelIn 0.4s var(--ease-out);
}

@keyframes panelIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.bodymap__panel-zone {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 8px;
}

.bodymap__panel-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 12px;
}

.bodymap__panel-content > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.bodymap__panel-problems {
    margin-bottom: 28px;
}

.bodymap__panel-problems h4,
.bodymap__panel-recommend h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.bodymap__panel-problems ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bodymap__panel-problems li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.bodymap__panel-problems li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.bodymap__svc-card {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s var(--ease);
}

.bodymap__svc-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(107, 127, 94, 0.06);
}

.bodymap__svc-card strong {
    font-size: 16px;
    color: var(--green);
    display: block;
    margin-bottom: 6px;
}

.bodymap__svc-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .bodymap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bodymap__figure {
        max-width: 100%;
        margin: 0 auto;
    }
    .bodymap__glow { width: 260px; height: 460px; }
    .bodymap__panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .bodymap-full { padding: 48px 20px 64px; }
    .bodymap__figure { max-width: 100%; }
    .bodymap__glow { width: 300px; height: 500px; }
    .bodymap__panel { padding: 32px 24px; }
}

/* =====================================================
   PROMO POPUP
   ===================================================== */
.promo {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 900;
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    width: 320px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s var(--ease);
}

.promo--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promo__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color 0.2s;
}

.promo__close:hover { color: var(--text); }

.promo__header { margin-bottom: 12px; }

.promo__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.promo__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: bold;
    color: var(--green);
    line-height: 1.2;
}

.promo__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.promo__spin-btn {
    width: 100%;
    padding: 14px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-bottom: 8px;
}

.promo__spin-btn:hover {
    background: var(--green-light);
}

.promo__spin-btn--loading {
    pointer-events: none;
    opacity: 0.7;
}

.promo__dismiss {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
}

.promo__dismiss:hover { color: var(--text); }

/* Result state */
.promo__percent {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
    animation: percentPop 0.5s var(--ease-out);
}

@keyframes percentPop {
    0% { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

.promo__win {
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 16px;
}

.promo__code-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green-wash);
    border: 1px dashed var(--green);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.promo__code-box span {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2px;
}

.promo__copy {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color 0.2s;
}

.promo__copy:hover { color: var(--green); }

.promo__note {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo__book-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s var(--ease);
}

.promo__book-btn:hover { background: var(--green-light); }

@media (max-width: 480px) {
    .promo {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
    }
}

/* Discount in booking */
.booking__discount {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.booking__discount-row {
    display: flex;
    gap: 10px;
}

.booking__discount-row .form-input {
    flex: 1;
}

.booking__discount-msg {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}

.booking__discount-msg--ok { color: var(--green); }
.booking__discount-msg--err { color: #ef4444; }

@media (max-width: 480px) {
    .spin-modal { padding: 32px 24px; }
    .spin-wheel { width: 220px; height: 220px; }
    .spin-trigger { bottom: 90px; right: 16px; padding: 10px 16px; }
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.35s var(--ease);
    box-shadow: 0 4px 20px rgba(107, 127, 94, 0.25);
}

.scroll-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(107, 127, 94, 0.3);
}

/* =====================================================
   COOKIE SETTINGS FAB
   ===================================================== */
.cookie-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 899;
    transition: all 0.35s var(--ease);
    box-shadow: 0 4px 20px rgba(107, 127, 94, 0.25);
}

.scroll-top--visible ~ .cookie-fab {
    bottom: 92px;
}

.cookie-fab:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(107, 127, 94, 0.3);
}

.cookie-fab--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
}

@media (max-width: 480px) {
    .cookie-fab { width: 44px; height: 44px; bottom: 20px; right: 20px; }
    .scroll-top--visible ~ .cookie-fab { bottom: 76px; }
}

/* =====================================================
   VARIANT DIVIDER (dočasné — na výber variantu)
   ===================================================== */
.variant-divider {
    background: #ff6b35;
    padding: 16px 32px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.variant-divider span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* =====================================================
   TEXT MARQUEE
   ===================================================== */
.text-marquee {
    background: var(--cream);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.text-marquee__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: textMarquee 50s linear infinite;
}

.text-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    letter-spacing: 0.3px;
    padding: 0 32px;
}

.text-marquee__icon {
    color: var(--green);
    flex-shrink: 0;
}

@keyframes textMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================================================
   HERO VIDEO VARIANT
   ===================================================== */
.hero--video {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video__bg {
    position: absolute;
    inset: 0;
}

.hero-video__el {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(36 54 42 / 56%) 0%, rgb(54 76 59 / 48%) 52%, rgb(75 99 76 / 58%) 100%);
}

.hero-video__inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 680px;
}

.hero-video__label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
}

.hero-video__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 78px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-video__title span {
    font-style: italic;
    color: var(--green-pale);
}

.hero-video__text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-video__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.btn--white:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-video__inner { padding: 100px 20px 60px; }
    .hero-video__actions { flex-direction: column; width: 100%; }
    .hero-video__actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   HERO VARIANT A — Deco geometric visual
   ===================================================== */
.hero--a { }

.hero-a__deco {
    position: relative;
    width: 340px;
    height: 400px;
}

.hero-a__deco-block {
    position: absolute;
    border-radius: 20px;
}

.hero-a__deco-block--1 {
    width: 220px;
    height: 280px;
    background: var(--green-light);
    top: 0;
    right: 0;
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-a__deco-block--2 {
    width: 180px;
    height: 220px;
    background: var(--green-lighter);
    bottom: 0;
    left: 0;
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-a__deco-ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* =====================================================
   HERO VARIANT B — Centrovaný, veľká typografia
   ===================================================== */
.hero--b {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    overflow: hidden;
}

.hero-b__bg {
    position: absolute;
    inset: 0;
}

.hero-b__circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.04);
}

.hero-b__circle--1 { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-b__circle--2 { width: 560px; height: 560px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.hero-b__circle--3 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.hero-b__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 32px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-b__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.hero-b__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 48px;
}

.hero-b__title em {
    font-style: italic;
    color: var(--green-pale);
}

.hero-b__dot {
    color: var(--green-pale);
}

.hero-b__actions {
    margin-bottom: 80px;
}

.hero-b__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

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

.hero-b__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
}

.hero-b__stat span {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-b__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* =====================================================
   HERO VARIANT C — Editorial / asymetrický
   ===================================================== */
.hero--c {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-c__bg {
    position: absolute;
    inset: 0;
    background: var(--green);
}

.hero-c__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.hero-c__left {
    display: flex;
    align-items: center;
    padding: 120px 64px 80px;
    background: var(--green);
    position: relative;
}

.hero-c__left::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1), transparent);
}

.hero-c__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.hero-c__title {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 100px);
    font-weight: bold;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-c__title--outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
}

.hero-c__right {
    display: flex;
    align-items: center;
    padding: 120px 64px 80px;
    background: var(--green-light);
}

.hero-c__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 36px;
    max-width: 400px;
}

.hero-c__heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-c__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =====================================================
   HERO VARIANT D — Vertikálny, dekoratívne linky
   ===================================================== */
.hero--d {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    overflow: hidden;
}

.hero-d__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a3a2b 0%, var(--green) 50%, #0f2119 100%);
}

.hero-d__line {
    position: absolute;
    width: 1px;
    background: rgba(255,255,255,0.04);
    top: 0;
    bottom: 0;
}

.hero-d__line--1 { left: 25%; }
.hero-d__line--2 { left: 50%; }
.hero-d__line--3 { left: 75%; }

.hero-d__inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    text-align: center;
    width: 100%;
}

.hero-d__top {
    margin-bottom: 56px;
}

.hero-d__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.hero-d__center {
    margin-bottom: 48px;
}

.hero-d__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: bold;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.hero-d__title span {
    font-style: italic;
    color: var(--green-pale);
}

.hero-d__subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
}

.hero-d__bottom {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   HERO VARIANT E — Split screen, zelená + krémová
   ===================================================== */
.hero--e {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.hero-e__left {
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 64px 80px;
    position: relative;
}

.hero-e__left-inner {
    max-width: 400px;
}

.hero-e__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
}

.hero-e__title {
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 88px);
    font-weight: bold;
    color: var(--white);
    line-height: 0.95;
    letter-spacing: -2px;
}

.hero-e__line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 32px 0;
}

.hero-e__tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    letter-spacing: 0.5px;
}

.hero-e__right {
    background: var(--cream);
    display: flex;
    align-items: center;
    padding: 120px 64px 80px;
}

.hero-e__right-inner {
    max-width: 460px;
}

.hero-e__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: bold;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-e__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-e__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* =====================================================
   VARIANT RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-c__inner { grid-template-columns: 1fr; }
    .hero-c__left { padding: 140px 32px 40px; }
    .hero-c__left::after { display: none; }
    .hero-c__right { padding: 40px 32px 80px; }

    .hero--e { grid-template-columns: 1fr; }
    .hero-e__left { padding: 140px 32px 48px; text-align: center; }
    .hero-e__left-inner { max-width: 100%; }
    .hero-e__line { margin: 32px auto; }
    .hero-e__right { padding: 48px 32px 80px; }
    .hero-e__right-inner { max-width: 100%; }
    .hero-e__actions { justify-content: center; }
}

@media (max-width: 768px) {
    .hero-b__title { font-size: clamp(32px, 8vw, 56px); }
    .hero-b__bottom { flex-direction: column; gap: 24px; }
    .hero-b__divider { width: 40px; height: 1px; }

    .hero-c__title { font-size: clamp(40px, 12vw, 72px); }
    .hero-c__left { padding: 120px 20px 32px; }
    .hero-c__right { padding: 32px 20px 64px; }
    .hero-c__cta { flex-direction: column; }

    .hero-d__title { font-size: clamp(28px, 8vw, 48px); }

    .hero-e__left { padding: 120px 20px 40px; }
    .hero-e__right { padding: 40px 20px 64px; }
    .hero-e__title { font-size: clamp(44px, 12vw, 72px); }
    .hero-e__actions { flex-direction: column; width: 100%; }
    .hero-e__actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
}

.testi__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.testi__featured {
    position: relative;
}

.testi__quote-mark {
    font-family: var(--font-display);
    font-size: 160px;
    font-weight: 700;
    color: var(--green);
    opacity: 0.06;
    line-height: 0.8;
    position: absolute;
    top: -24px;
    left: -12px;
    user-select: none;
}

.testi__featured-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--green);
    line-height: 1.4;
    margin-bottom: 32px;
    position: relative;
}

.testi__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-pale);
    font-family: var(--font-display);
    flex-shrink: 0;
}

.testi__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.testi__author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.testi__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi__card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: all 0.4s var(--ease);
    position: relative;
}

.testi__card:hover {
    border-color: var(--green);
    box-shadow: 0 8px 32px rgba(107, 127, 94, 0.06);
}

.testi__card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.testi__star {
    color: var(--green);
}

.testi__card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-style: italic;
}

.testi__card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi__card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--green-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-display);
}

.testi__card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.testi__card-meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* Testimonials marquee */
.testi__marquee {
    overflow: hidden;
    position: relative;
}

.testi__marquee::before,
.testi__marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testi__marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--cream), transparent);
}

.testi__marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--cream), transparent);
}

.testi__marquee-track {
    display: flex;
    gap: 28px;
    animation: marquee 45s linear infinite;
    width: max-content;
}

.testi__marquee-track:hover {
    animation-play-state: paused;
}

.testi__marquee-item {
    flex-shrink: 0;
    padding: 32px 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 400px;
    transition: border-color 0.3s var(--ease);
}

.testi__marquee-item:hover {
    border-color: var(--green);
}

.testi__marquee-stars {
    font-size: 16px;
    color: var(--green);
    letter-spacing: 2px;
}

.testi__marquee-text {
    font-size: 18px;
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.testi__marquee-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .testi__layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .testimonials { padding: 64px 0; }
    .testi__marquee-item { min-width: 280px; padding: 12px 12px; }
    .testi__marquee-text { font-size: 16px; }
}

/* =====================================================
   SERVICES PAGE — Expanded detail
   ===================================================== */
.svc-detail {
    margin-bottom: 0;
}

.svc-detail__item {
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.svc-detail__item:first-child { padding-top: 0; }
.svc-detail__item:last-child { border-bottom: none; }

.svc-detail__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.svc-detail__num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.svc-detail__name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: bold;
    color: var(--green);
    line-height: 1.1;
}

.svc-detail__price-block {
    text-align: right;
    flex-shrink: 0;
}

.svc-detail__duration {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.svc-detail__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
}

.svc-detail__body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.svc-detail__desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.svc-detail__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-detail__feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.svc-detail__feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}

.svc-detail__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.svc-detail__tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 100px;
    background: var(--white);
    color: var(--green);
    border: 1px solid var(--green-pale);
}

.svc-detail__cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (max-width: 768px) {
    .svc-detail__body { grid-template-columns: 1fr; gap: 32px; }
    .svc-detail__top { flex-direction: column; }
    .svc-detail__price-block { text-align: left; }
}

.about-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 340px));
    justify-content: center;
    gap: 32px;
}

.about-video {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--green);
    box-shadow: 0 18px 50px rgba(23, 49, 36, 0.14);
}

.about-video video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.about-video figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 9px 12px;
    border-radius: 8px;
    background: rgba(23, 49, 36, 0.88);
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    pointer-events: none;
}

@media (max-width: 700px) {
    .about-videos__grid { grid-template-columns: minmax(0, 360px); }
}
