/* ================================================
   RITUAL BEAUTY – Global Luxury Dark Theme
   Gold / Black / Deep Dark Glassmorphism
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Parisienne&display=swap');

/* ---- Reset & Root ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --gold: #c9a96e;
    --gold-l: #f0d080;
    --gold-d: #8b6914;
    --accent: #c9a96e;
    /* alias for legacy selectors */
    --black: #060608;
    --surface: #0d0d14;
    --surface2: #13131e;
    --surface3: #1c1c2a;
    --glass: rgba(255, 255, 255, .04);
    --glass2: rgba(255, 255, 255, .07);
    --border: rgba(201, 169, 110, .16);
    --text: #f0f0f8;
    --text-muted: #9899a8;
    --text-dim: #444;
    --success: #22c55e;
    --danger: #ef4444;
    --nav-h: 76px;
    --radius: 18px;
    --radius-sm: 12px;
    --trans: .28s cubic-bezier(.4, 0, .2, 1);
    --font-serif: 'Playfair Display', 'Parisienne', Georgia, serif;
    --font-sans: 'Inter', 'Montserrat', sans-serif;
    --font-script: 'Parisienne', cursive;
    /* Legacy compat */
    --dark: #060608;
    --white: #f0f0f8;
    --bg-cream: var(--surface2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text);
    min-height: 100vh;
    padding-top: var(--nav-h);
    overflow-x: hidden;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 110, .25);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ---- Background orbs ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 0%, rgba(201, 169, 110, .06) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(26, 35, 126, .08) 0%, transparent 50%);
}

/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(6, 6, 8, .88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border);
    z-index: 2000;
    display: flex;
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 4rem);
    gap: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.logo img {
    height: 38px;
    width: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    object-fit: cover;
    padding: 2px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.logo-sub {
    font-size: .5rem;
    letter-spacing: 2.5px;
    color: var(--text-dim);
    margin-top: 2px;
    text-transform: uppercase;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    list-style: none;
    height: 100%;
    flex: 1;
    margin-left: .5rem;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: .78rem;
    font-weight: 500;
    padding: 0 .9rem;
    text-transform: uppercase;
    letter-spacing: .8px;
    cursor: pointer;
    transition: color var(--trans);
}

.nav-item:hover>.nav-link {
    color: var(--gold);
}

.nav-item>a.nav-link:hover {
    color: var(--gold);
}

/* Dropdown */
.dropdown-pc {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(13, 13, 20, .97);
    backdrop-filter: blur(24px);
    min-width: 220px;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--trans);
}

.nav-item:hover .dropdown-pc {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: .6rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: .4rem;
    font-weight: 400;
}

.dropdown-pc a {
    display: block;
    padding: .5rem 0;
    text-decoration: none;
    color: var(--text-muted);
    font-size: .82rem;
    transition: all var(--trans);
    border-radius: 6px;
}

.dropdown-pc a:hover {
    color: var(--gold);
    padding-left: .5rem;
}

/* CTA Button */
.btn-rezervacia-pc {
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    color: #000;
    padding: .6rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--trans);
    white-space: nowrap;
    margin-left: auto;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-rezervacia-pc:hover {
    box-shadow: 0 6px 24px rgba(201, 169, 110, .35);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 17px;
    z-index: 2200;
    background: none;
    border: none;
    padding: 0;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--trans);
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--gold);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--gold);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(6, 6, 8, .98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem;
    transform: translateX(100%);
    transition: transform var(--trans);
    z-index: 1900;
    overflow-y: auto;
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-section {
    margin-bottom: 1.6rem;
    opacity: 0;
    transform: translateX(20px);
    transition: .45s .1s;
}

.mobile-overlay.active .mobile-section {
    opacity: 1;
    transform: translateX(0);
}

.mobile-title {
    font-size: .65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: .8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.mobile-title span {
    font-family: var(--font-script);
    color: var(--gold);
    text-transform: none;
    font-size: 1.1rem;
    letter-spacing: 0;
    margin-left: .5rem;
}

.mobile-sub-nav {
    list-style: none;
    padding-left: .3rem;
}

.mobile-sub-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 1rem;
    display: block;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: color var(--trans);
}

.mobile-sub-nav a:hover {
    color: var(--gold);
}

/* Mobile header title */
.header-title-mobile {
    display: none;
    font-family: var(--font-script);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-grow: 1;
    text-align: center;
}

/* ================================================
   PAGE INTRO HEADER  (used by all subpages)
   ================================================ */
.page-intro {
    position: relative;
    overflow: hidden;
    padding: 5rem clamp(1rem, 8vw, 8rem) 4rem;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, .1) 0%, transparent 65%);
    border-bottom: 1px solid var(--border);
    z-index: 1;
}

.page-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, .05) 0%, transparent 70%);
}

.page-intro h1 {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 5.5rem);
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    margin-bottom: .7rem;
    position: relative;
}

.page-intro p {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .7rem;
    color: var(--text-muted);
    position: relative;
}

/* ================================================
   GLASS CARD
   ================================================ */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    transition: all var(--trans);
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    border-color: rgba(201, 169, 110, .4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

/* Info card with icon */
.info-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    transition: all var(--trans);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.info-card i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: .9rem;
    display: block;
}

.info-card h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Benefit card (used in masaze) */
.benefit-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    transition: all var(--trans);
}

.benefit-card:hover {
    border-color: var(--gold);
}

.benefit-card i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: .6rem;
    display: block;
}

.benefit-card h4 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .3rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.benefit-card p {
    font-size: .75rem;
    color: var(--text-muted);
}

/* Grids */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .8rem;
    margin-top: 1.2rem;
}

/* ================================================
   SECTIONS
   ================================================ */
.section-eyebrow {
    font-size: .62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: .7rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    font-weight: 400;
    line-height: 1.25;
}

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

/* content blocks (masaze, kozmetika, o-nas) */
.content-block {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    margin-bottom: 1.2rem;
    transition: border-color var(--trans);
}

.content-block:hover {
    border-color: rgba(201, 169, 110, .35);
}

.content-block-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.content-block p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: .7rem;
}

.content-block strong {
    color: var(--text);
}

/* ================================================
   LISTS
   ================================================ */
.list-style {
    list-style: none;
    padding: 0;
    margin: .8rem 0;
}

.list-style li {
    padding: .4rem 0 .4rem 1.4rem;
    position: relative;
    font-size: .85rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.list-style li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Contra list (maderoterapia) */
.contra-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .5rem;
    list-style: none;
    padding: 0;
}

.contra-list li {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: 8px;
    padding: .5rem .8rem;
    font-size: .8rem;
    color: var(--text-muted);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn,
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.8rem;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: all var(--trans);
    border: none;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    color: #000;
}

.btn:hover,
.btn-gold:hover {
    box-shadow: 0 8px 28px rgba(201, 169, 110, .35);
    transform: translateY(-2px);
}

.btn-outline {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 30px;
    padding: .75rem 1.8rem;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--trans);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-sans);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ================================================
   HIGHLIGHT / QUOTE BOX
   ================================================ */
.highlight-box,
.founder-quote {
    background: rgba(201, 169, 110, .07);
    border: 1px solid rgba(201, 169, 110, .2);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.highlight-box p,
.founder-quote p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
    font-style: italic;
}

.founder-quote i {
    font-size: 2rem;
    color: rgba(201, 169, 110, .3);
    margin-bottom: .8rem;
    display: block;
}

/* Time badge */
.time-badge {
    display: inline-block;
    background: rgba(201, 169, 110, .12);
    border: 1px solid rgba(201, 169, 110, .25);
    padding: .4rem 1rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .5px;
}

/* Warning box */
.warning-box {
    background: rgba(239, 68, 68, .07);
    border: 1px solid rgba(239, 68, 68, .2);
    border-radius: 16px;
    padding: 2rem;
}

/* Prep grid */
.prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.prep-box {
    background: var(--glass2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

@media(max-width:520px) {
    .prep-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   PRICING CARDS
   ================================================ */
.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.variant-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--trans);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}

.variant-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.variant-card i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.variant-card h2 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: .6rem;
}

.variant-card h3 {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.variant-card p {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.pricing-cta {
    background: rgba(201, 169, 110, .08);
    border: 1px solid rgba(201, 169, 110, .25);
    padding: 3.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 2rem;
}

.pricing-cta h4 {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: .8rem;
}

.pricing-cta p {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

/* ================================================
   FOOTER
   ================================================ */
.ritual-footer-final {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 4rem clamp(1rem, 6vw, 6rem) 2rem;
    position: relative;
    z-index: 1;
}

.footer-ritual-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-ritual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

@media(max-width:900px) {
    .footer-ritual-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:550px) {
    .footer-ritual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo-cleaner-box {
    margin-bottom: .8rem;
}

.footer-ritual-logo-gold {
    height: 50px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    opacity: .8;
}

.footer-ritual-description {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 240px;
}

.footer-ritual-social-icons {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.f-soc-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--glass2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: .85rem;
    text-decoration: none;
    transition: all var(--trans);
}

.f-soc-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-ritual-heading {
    font-size: .6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-ritual-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-ritual-list li {
    margin-bottom: .45rem;
}

.footer-ritual-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .8rem;
    transition: color var(--trans);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.footer-ritual-list a:hover {
    color: var(--gold);
}

.gold-accent-link {
    color: var(--gold) !important;
}

.footer-ritual-contact-details p {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .35rem;
}

.footer-ritual-contact-details a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-ritual-contact-details a:hover {
    color: var(--gold);
}

.f-contact-item i {
    color: var(--gold);
    margin-right: .4rem;
    font-size: .8rem;
}

.footer-business-info {
    margin-top: 1rem;
    padding-top: .8rem;
    border-top: 1px solid var(--border);
    font-size: .72rem;
    color: var(--text-dim);
    line-height: 1.9;
}

.footer-ritual-hr {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.footer-ritual-legal-nav {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-ritual-legal-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: .72rem;
    transition: color var(--trans);
}

.footer-ritual-legal-nav a:hover {
    color: var(--gold);
}

/* ================================================
   FLOATING QUICK MENU — preserve existing look, restyle
   ================================================ */
.ritual-float-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.ritual-main-btn {
    width: 62px;
    height: 62px;
    background: rgba(13, 13, 20, .95);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .5s cubic-bezier(.68, -.55, .265, 1.55);
    border: 2px solid var(--gold);
    position: relative;
    z-index: 10;
}

.ritual-main-btn img {
    width: 80%;
    border-radius: 50%;
}

.ritual-quick-menu {
    position: absolute;
    bottom: 75px;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .4s ease;
}

.ritual-float-wrapper.active .ritual-quick-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ritual-quick-menu li {
    margin-bottom: 10px;
}

.ritual-quick-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: rgba(13, 13, 20, .97);
    padding: .7rem 1.2rem;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .4);
    border: 1px solid var(--border);
    transition: .3s;
    white-space: nowrap;
}

.ritual-quick-link:hover {
    border-color: var(--gold);
}

.ritual-quick-link span {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--text);
    margin-left: .6rem;
}

.ritual-quick-link i {
    color: var(--gold);
    font-size: .9rem;
}

.ritual-contact-panel {
    position: absolute;
    bottom: 0;
    left: 80px;
    background: rgba(13, 13, 20, .98);
    width: 270px;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .6);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: scale(.8) translateX(-30px);
    transition: .4s cubic-bezier(.175, .885, .32, 1.275);
    transform-origin: bottom left;
}

.ritual-contact-panel.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(0);
}

.panel-brand {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold);
    text-align: center;
    display: block;
}

.panel-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: .6rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-align: center;
    display: block;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: .6rem;
    font-size: .8rem;
    color: var(--text-muted);
    text-decoration: none;
}

.contact-item i {
    color: var(--gold);
    width: 22px;
    font-size: .9rem;
}

.panel-footer-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: 1rem;
}

.ritual-btn-sm {
    display: block;
    text-align: center;
    background: var(--glass2);
    color: var(--text);
    text-decoration: none;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: .5rem .3rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: .3s;
}

.ritual-btn-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.ritual-float-wrapper.active .ritual-main-btn {
    transform: rotate(180deg);
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-ritual-section {
    padding: 5rem clamp(1rem, 6vw, 6rem);
    position: relative;
    z-index: 1;
}

.faq-ritual-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-ritual-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-ritual-header h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: .5rem;
}

.faq-ritual-header p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .7rem;
}

.faq-ritual-item {
    margin-bottom: .8rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--glass);
    transition: .3s;
}

.faq-ritual-item:hover {
    border-color: rgba(201, 169, 110, .35);
}

.faq-ritual-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text);
    user-select: none;
}

.faq-icon {
    color: var(--gold);
    font-size: .9rem;
    transition: transform .3s;
}

.faq-ritual-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.8;
    transition: max-height .4s ease, padding .3s;
}

.faq-ritual-item.open .faq-ritual-answer {
    max-height: 400px;
    padding-bottom: 1.2rem;
}

.faq-ritual-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ================================================
   POPUP MODAL
   ================================================ */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .8);
    align-items: center;
    justify-content: center;
}

.popup-box {
    position: relative;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .7);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--glass2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.popup-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.popup-img {
    width: 100%;
    display: block;
}

.p-img-pc {
    display: block;
}

.p-img-mobile {
    display: none;
}

.popup-body {
    padding: 1.5rem 2rem 2rem;
}

.popup-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: .5rem;
}

.popup-text {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.popup-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    color: #000;
    padding: .6rem 1.4rem;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
}

@media(max-width:480px) {
    .p-img-pc {
        display: none;
    }

    .p-img-mobile {
        display: block;
    }
}

/* ================================================
   KOZMETIKA cards (specific)
   ================================================ */
.kozmetika-rituall-section {
    padding: 3rem clamp(1rem, 6vw, 6rem);
    position: relative;
    z-index: 1;
}

.kozmetika-rituall-container {
    max-width: 1200px;
    margin: 0 auto;
}

.kozmetika-rituall-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.kozmetika-rituall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

.kozmetika-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all var(--trans);
}

.kozmetika-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .4);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: .8rem;
}

.card-title {
    font-size: .92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
}

.card-text {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================
   MASAZE SECTION
   ================================================ */
.massages-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 6vw, 6rem) 4rem;
}

.massage-block {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.2rem;
    margin-bottom: 1.2rem;
    transition: border-color var(--trans);
}

.massage-block:hover {
    border-color: rgba(201, 169, 110, .35);
}

.massage-header h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--border);
}

.massage-content p {
    font-size: .86rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: .8rem;
}

.massage-content strong {
    color: var(--gold);
}

.massage-content ul {
    font-size: .84rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    margin: .6rem 0;
}

.massage-content ul li {
    margin-bottom: .4rem;
}

.massage-content ul li strong {
    color: var(--text);
}

/* ================================================
   O-NAS / ABOUT
   ================================================ */
.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 6vw, 6rem) 5rem;
}

.story-block {
    margin-bottom: 2rem;
}

.story-block h3 {
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.story-block h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 400;
}

.story-text {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: .8rem;
}

.info-item h4 {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .6rem;
}

.info-item ul {
    list-style: disc;
    padding-left: 1.2rem;
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.9;
}

/* ================================================
   KONTAKT / RESERVATION
   ================================================ */
.form-group {
    margin-bottom: .9rem;
}

.form-label {
    display: block;
    font-size: .65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: .75rem 1rem;
    color: var(--text);
    font-size: .86rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color var(--trans);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

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

/* ================================================
   TECHNOLOGIE / ZNACKY
   ================================================ */
.brand-logo {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans);
}

.brand-logo:hover {
    border-color: var(--gold);
}

.brand-logo img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .6;
    transition: opacity var(--trans);
}

.brand-logo:hover img {
    opacity: 1;
}

/* Tech / device cards */
.tech-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--trans);
}

.tech-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.tech-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.tech-card-body {
    padding: 1.2rem;
}

.tech-card-body h3 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
}

.tech-card-body p {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================
   BLOG / NOVINKY
   ================================================ */
.blog-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.3rem;
    flex: 1;
}

.blog-card-date {
    font-size: .65rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: .4rem;
}

.blog-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================================
   UTILITY
   ================================================ */
.text-gold {
    background: linear-gradient(135deg, var(--gold-l), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem clamp(1rem, 6vw, 6rem);
    position: relative;
    z-index: 1;
}

.section-container.narrow {
    max-width: 900px;
}

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

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media(max-width:1024px) {

    .nav-desktop,
    .btn-rezervacia-pc {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .header-title-mobile {
        display: block;
    }
}

@media(max-width:768px) {
    .section-container {
        padding: 2.5rem 1.2rem;
    }

    .massages-container,
    .about-container {
        padding: 2rem 1.2rem 3rem;
    }

    .kozmetika-rituall-section {
        padding: 2rem 1.2rem;
    }

    .ritual-float-wrapper {
        bottom: 20px;
        left: 20px;
    }

    .ritual-main-btn {
        width: 50px;
        height: 50px;
    }

    .ritual-quick-menu {
        bottom: 62px;
    }

    .ritual-contact-panel {
        left: 62px;
        width: 240px;
    }
}