/* ============================================
   Olego Magija — Pagrindinis CSS
   Mistinė tamsi paletė + auksiniai akcentai
   ============================================ */

:root {
    /* Mystic dark palette */
    --background: hsl(230, 35%, 5%);
    --foreground: hsl(45, 30%, 92%);
    --card: hsl(230, 30%, 8%);
    --card-foreground: hsl(45, 30%, 92%);

    /* Auksinė pirminė */
    --primary: hsl(42, 75%, 58%);
    --primary-foreground: hsl(230, 40%, 6%);
    --primary-glow: hsl(45, 95%, 70%);

    --secondary: hsl(230, 25%, 14%);
    --muted: hsl(230, 20%, 12%);
    --muted-foreground: hsl(230, 15%, 65%);
    --accent: hsl(270, 60%, 55%);
    --border: hsl(230, 25%, 18%);
    --input: hsl(230, 25%, 14%);
    --ring: hsl(42, 75%, 58%);

    /* Magic gradients */
    --gradient-hero: linear-gradient(135deg, hsla(230, 50%, 4%, 0.85) 0%, hsla(260, 50%, 8%, 0.75) 50%, hsla(230, 50%, 4%, 0.95) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(42, 85%, 65%) 0%, hsl(38, 90%, 55%) 50%, hsl(45, 95%, 70%) 100%);
    --gradient-mystic: linear-gradient(135deg, hsl(260, 60%, 25%) 0%, hsl(230, 50%, 10%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(230, 30%, 10%) 0%, hsl(240, 30%, 7%) 100%);
    --gradient-radial-glow: radial-gradient(circle at 50% 50%, hsla(42, 80%, 55%, 0.25) 0%, transparent 60%);

    /* Shadows */
    --shadow-gold: 0 10px 40px -10px hsla(42, 85%, 55%, 0.5);
    --shadow-glow: 0 0 60px hsla(42, 95%, 65%, 0.4);
    --shadow-mystic: 0 20px 60px -20px hsla(260, 80%, 30%, 0.6);
    --shadow-deep: 0 25px 70px -15px hsla(230, 60%, 2%, 0.8);

    /* Transitions */
    --ease-magic: cubic-bezier(0.22, 1, 0.36, 1);

    /* Sizing */
    --radius: 0.75rem;
    --container-max: 1400px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Cinzel', Georgia, serif;
    letter-spacing: 0.02em;
    margin: 0;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

input, textarea, select {
    font-family: inherit;
    color: inherit;
}

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

/* ===== Komponentai ===== */
.text-gold-gradient {
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.glass-card {
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    transition: border-color 0.5s var(--ease-magic);
}

.glass-card:hover {
    border-color: hsla(42, 75%, 58%, 0.4);
}

.magic-border {
    position: relative;
}

.magic-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-magic);
    pointer-events: none;
}

.magic-border:hover::before {
    opacity: 1;
}

.star-bg {
    background-image:
        radial-gradient(2px 2px at 20% 30%, hsla(45, 100%, 80%, 0.8), transparent),
        radial-gradient(1px 1px at 60% 70%, hsla(45, 100%, 75%, 0.6), transparent),
        radial-gradient(1.5px 1.5px at 80% 20%, hsla(45, 100%, 80%, 0.7), transparent),
        radial-gradient(1px 1px at 35% 85%, hsla(45, 100%, 75%, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, hsla(45, 100%, 80%, 0.6), transparent);
    background-size: 200% 200%;
}

/* Mygtukai */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: all 0.5s var(--ease-magic);
    cursor: pointer;
    text-align: center;
}

.btn-gold:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.btn-gold.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    color: var(--foreground);
    transition: color 0.3s var(--ease-magic);
}

.btn-glass:hover {
    color: var(--primary);
}

/* ===== Animacijos ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 30px hsla(42, 95%, 65%, 0.3); }
    50% { box-shadow: 0 0 60px hsla(42, 95%, 65%, 0.6); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-slow { animation: float 9s ease-in-out infinite; }
.animate-twinkle { animation: twinkle 3s ease-in-out infinite; }
.animate-shimmer { animation: shimmer 3s linear infinite; background-size: 200% auto; }
.animate-fade-up { animation: fade-up 0.8s var(--ease-magic) both; }
.animate-fade-in { animation: fade-in 1s var(--ease-magic) both; }
.animate-glow-pulse { animation: glow-pulse 4s ease-in-out infinite; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease-magic), transform 0.9s var(--ease-magic);
}

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

/* ===== Navbar ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s var(--ease-magic);
    padding: 1.25rem 0;
}

.site-header.is-scrolled {
    background: hsla(230, 35%, 5%, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid hsla(230, 25%, 18%, 0.5);
    padding: 0.75rem 0;
}

.site-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.site-logo .logo-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-magic);
}

.site-logo:hover .logo-icon svg {
    transform: rotate(180deg);
}

.site-logo .logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: hsla(42, 75%, 58%, 0.3);
    filter: blur(12px);
    transition: filter 0.5s var(--ease-magic);
}

.site-logo:hover .logo-icon::after {
    filter: blur(20px);
}

.site-logo .logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.1;
}

.site-logo .logo-text > div {
    font-size: 0.875rem;
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-logo .logo-text > div:last-child {
    margin-top: -0.125rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.875rem;
    color: hsla(45, 30%, 92%, 0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: width 0.3s var(--ease-magic);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: none;
}

.menu-toggle {
    display: inline-flex;
    padding: 0.5rem;
    color: var(--foreground);
}

.menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: hsla(230, 35%, 5%, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.mobile-menu.is-open {
    display: block;
    animation: fade-in 0.3s var(--ease-magic);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: hsla(45, 30%, 92%, 0.8);
}

.mobile-menu a:hover {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    .nav-cta {
        display: inline-flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease-out;
}

/* Kai video pradeda groti — sklandžiai atsiranda virš poster nuotraukos */
.hero-bg-video.is-ready {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-stars {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    z-index: 2;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 2;
}

.hero-orb-1 {
    top: 25%;
    left: 25%;
    width: 18rem;
    height: 18rem;
    background: hsla(42, 75%, 58%, 0.2);
}

.hero-orb-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: hsla(270, 60%, 55%, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6rem 0 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    margin-bottom: 2rem;
}

.hero-badge .sparkle {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.hero-badge span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: hsla(42, 75%, 58%, 0.9);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: block;
}

.hero-title span:first-child {
    color: hsla(45, 30%, 92%, 0.9);
}

.hero-subtitle {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    color: hsla(45, 30%, 92%, 0.7);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 42rem;
    margin: 5rem auto 0;
}

.hero-stat-value {
    font-family: 'Cinzel', serif;
    font-size: 1.875rem;
    font-weight: 700;
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: hsla(45, 30%, 92%, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid hsla(42, 75%, 58%, 0.4);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.hero-scroll-indicator-inner > div {
    width: 0.25rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--primary);
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .hero-actions { flex-direction: row; }
    .hero-stat-value { font-size: 3rem; }
    .hero-stat-label { font-size: 0.875rem; }
    .hero-stats { gap: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 6rem; }
}

/* ===== Section ===== */
.section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section--mystic {
    background: var(--gradient-mystic);
}

.section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-lead {
    color: hsla(45, 30%, 92%, 0.7);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-heading { font-size: 3rem; }
}

.section-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

/* ===== Apie ===== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: hsla(45, 30%, 92%, 0.75);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-cards {
    display: grid;
    gap: 1.25rem;
}

.about-card {
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    transition: transform 0.5s var(--ease-magic);
}

.about-card:hover {
    transform: translateX(0.5rem);
}

.about-card-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.about-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.about-card-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.about-card-desc {
    font-size: 0.875rem;
    color: hsla(45, 30%, 92%, 0.7);
}

.section-radial-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-radial-glow);
    opacity: 0.5;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Paslaugos ===== */
.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.5s var(--ease-magic), box-shadow 0.5s var(--ease-magic);
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-mystic);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 5rem;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.service-card-icon {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: var(--gradient-card);
    border: 1px solid hsla(42, 75%, 58%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background 0.5s var(--ease-magic);
    color: var(--primary);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
}

.service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover .service-card-title {
    color: var(--primary);
}

.service-card-desc {
    font-size: 0.875rem;
    color: hsla(45, 30%, 92%, 0.7);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Galerija ===== */
.gallery-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.gallery-tabs-inner {
    display: inline-flex;
    padding: 0.25rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    color: hsla(45, 30%, 92%, 0.7);
}

.gallery-tab:hover {
    color: var(--foreground);
}

.gallery-tab.is-active {
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
}

.gallery-tab svg {
    width: 1rem;
    height: 1rem;
}

.gallery-carousel {
    max-width: 64rem;
    margin: 0 auto;
}

.gallery-carousel-stage {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: hsla(230, 35%, 5%, 0.4);
}

.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.7s;
}

.gallery-slide.is-active {
    opacity: 1;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    color: var(--foreground);
    transition: color 0.3s;
    z-index: 5;
}

.gallery-nav-btn:hover {
    color: var(--primary);
}

.gallery-nav-btn.prev { left: 1rem; }
.gallery-nav-btn.next { right: 1rem; }

.gallery-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.gallery-play-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.625rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    color: var(--foreground);
    z-index: 5;
    transition: color 0.3s;
}

.gallery-play-btn:hover { color: var(--primary); }

.gallery-play-btn svg {
    width: 1rem;
    height: 1rem;
}

.gallery-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: hsla(45, 30%, 92%, 0.7);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    z-index: 5;
}

.gallery-thumbs {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.gallery-thumb {
    flex-shrink: 0;
    height: 4rem;
    width: 5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb.is-active {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .gallery-thumb { height: 5rem; width: 7rem; }
}

/* Videos */
.gallery-videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    border: 1px solid hsla(42, 60%, 50%, 0.15);
}

.video-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), hsla(230, 35%, 5%, 0.4) 40%, transparent);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.video-card:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    margin-left: 0.25rem;
    color: var(--primary-foreground);
    fill: currentColor;
}

.video-card-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: left;
}

.video-card-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.video-card-title {
    font-weight: 500;
}

@media (min-width: 768px) {
    .gallery-videos { grid-template-columns: 1fr 1fr; }
}

/* Video lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: hsla(230, 35%, 5%, 0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fade-in 0.3s var(--ease-magic);
}

.video-lightbox.is-hidden {
    display: none;
}

.video-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    color: var(--foreground);
    z-index: 10;
}

.video-lightbox-close:hover { color: var(--primary); }

.video-lightbox-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.video-lightbox-stage {
    width: 100%;
    max-width: 64rem;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.video-lightbox-stage iframe,
.video-lightbox-stage video {
    width: 100%;
    height: 100%;
    background: #000;
    border: 0;
}

/* ===== Programa ===== */
.program-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.program-card-wrap {
    position: relative;
    order: 2;
}

.program-card-wrap::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: var(--gradient-radial-glow);
    opacity: 0.6;
    filter: blur(40px);
}

.program-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-mystic);
}

.program-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: hsla(45, 30%, 92%, 0.8);
}

.program-check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    color: var(--primary-foreground);
}

.program-check svg {
    width: 0.875rem;
    height: 0.875rem;
}

.program-pricing {
    order: 1;
}

.program-pricing p {
    color: hsla(45, 30%, 92%, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.program-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.program-stat {
    border-radius: 1rem;
    padding: 1.25rem;
}

.program-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.program-stat-value {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .program-grid {
        grid-template-columns: 1fr 1fr;
    }
    .program-card-wrap { order: 1; }
    .program-pricing { order: 2; }
    .program-card { padding: 2.5rem; }
}

/* ===== Atsiliepimai ===== */
.testimonials-track-wrap {
    position: relative;
    width: 100%;
}

.testimonials-track {
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.testimonials-list {
    display: flex;
    transition: transform 0.5s var(--ease-magic);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-wrap: nowrap;
}

.testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.testimonial-card {
    position: relative;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    margin-top: 1.5rem;
    transition: transform 0.5s var(--ease-magic);
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
}

.testimonial-quote-icon {
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.testimonial-quote-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: currentColor;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    fill: currentColor;
}

.testimonial-text {
    color: hsla(45, 30%, 92%, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid hsla(230, 25%, 18%, 0.5);
}

.testimonial-name {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.testimonial-event {
    font-size: 0.75rem;
    color: hsla(42, 75%, 58%, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.25rem;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testimonial-control-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: linear-gradient(145deg, hsla(230, 30%, 10%, 0.7), hsla(240, 30%, 6%, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid hsla(42, 60%, 50%, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.testimonial-control-btn:hover {
    background: hsla(42, 75%, 58%, 0.2);
    transform: scale(1.1);
}

.testimonial-control-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background: hsla(45, 30%, 92%, 0.3);
    transition: all 0.3s;
}

.testimonials-dot:hover { background: hsla(45, 30%, 92%, 0.5); }

.testimonials-dot.is-active {
    width: 2rem;
    background: var(--gradient-gold);
}

@media (min-width: 768px) {
    .testimonial-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* ===== Kontaktai ===== */
.contact-grid {
    display: grid;
    gap: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: transform 0.5s var(--ease-magic);
}

.contact-item:hover {
    transform: translateX(0.5rem);
}

.contact-item-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
}

.contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsla(42, 75%, 58%, 0.8);
}

.contact-item-value {
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item:hover .contact-item-value {
    color: var(--primary);
}

.contact-form {
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* contact-form label perkeltas i CF7 sekcija žemiau */

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: hsla(230, 25%, 14%, 0.5);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    transition: all 0.3s;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: hsla(230, 15%, 65%, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: hsla(42, 75%, 58%, 0.6);
    box-shadow: 0 0 0 3px hsla(42, 75%, 58%, 0.2);
}

.contact-form textarea {
    resize: none;
    font-family: inherit;
}

.contact-form button[type="submit"],
.contact-form .wpcf7-submit {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 0.5rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    color: var(--primary-foreground);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.5s var(--ease-magic);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form .wpcf7-submit:hover,
.contact-form button[type="submit"]:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.contact-form .wpcf7-submit:focus {
    outline: none;
    box-shadow: var(--shadow-glow);
}

/* Contact Form 7 sutvarkymas */
.contact-form .wpcf7-form-control-wrap {
    display: block;
    margin: 0;
    padding: 0;
}

.contact-form p {
    margin: 0;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsla(42, 75%, 58%, 0.8);
    margin: 0 0 0.4rem 0;
    line-height: 1.4;
}

.contact-form .wpcf7-form > p,
.contact-form .wpcf7-form > div {
    margin: 0;
}

.wpcf7-not-valid-tip {
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-response-output {
    border: 1px solid hsla(42, 75%, 58%, 0.4) !important;
    background: hsla(230, 35%, 5%, 0.6);
    color: var(--foreground);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem !important;
    margin: 1rem 0 0 !important;
    font-size: 0.9rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    border-color: #f87171 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #34d399 !important;
}

.wpcf7-spinner { display: none; }

@media (min-width: 640px) {
    .contact-form .row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

/* ===== Footer ===== */
.site-footer {
    position: relative;
    border-top: 1px solid hsla(230, 25%, 18%, 0.5);
    padding: 2.5rem 0;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsla(45, 30%, 92%, 0.6);
}

.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .footer-brand svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.site-footer .footer-brand strong {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: hsla(45, 30%, 92%, 0.85);
}

@media (min-width: 768px) {
    .site-footer .container {
        flex-direction: row;
        text-align: left;
    }
}

/* ===== Pagalbiniai ===== */
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.shadow-mystic { box-shadow: var(--shadow-mystic); }

/* Skrollbar */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: hsla(230, 35%, 5%, 0.5);
}
*::-webkit-scrollbar-thumb {
    background: hsla(42, 75%, 58%, 0.4);
    border-radius: 9999px;
}
*::-webkit-scrollbar-thumb:hover {
    background: hsla(42, 75%, 58%, 0.6);
}

/* WP redaktoriaus stiliai */
.entry-content {
    padding: 8rem 0 6rem;
    max-width: 64rem;
    margin: 0 auto;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    margin: 1.5em 0 0.5em;
}

.entry-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Sąrašai entry-content viduje */
.entry-content ul, .entry-content ol {
    padding-left: 1.5rem;
    line-height: 1.8;
}

/* 404 */
.error-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

.error-404 h1 {
    font-size: 6rem;
    background-image: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.error-404 p {
    color: hsla(45, 30%, 92%, 0.7);
    margin-bottom: 2rem;
}
