/* ============================================
   MISS UNIVERSE SERBIA — Global Styles
   Inspired by missuniverse.com layout
   ============================================ */

:root {
    --bg-dark: #0b0e17;
    --bg-secondary: #111522;
    --bg-card: #171b28;
    --bg-cream: #f5ede2;
    --bg-cream-dark: #ebe0d0;
    --text-primary: #ffffff;
    --text-secondary: #c5c7d0;
    --text-muted: #8a8d98;
    --text-dark: #1a1a1a;
    --text-dark-muted: #5a5a5a;
    --accent-gold: #c9a05a;
    --accent-gold-light: #e4c580;
    --accent-teal: #e8c77a; /* alias of accent-gold-light — teal deprecated */
    --border: #232836;
    --border-light: #d8cfc0;
    --font-serif: 'Playfair Display', 'Didot', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --header-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---- Lenis smooth scroll required styles ---- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.15;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.uppercase { text-transform: uppercase; letter-spacing: .15em; }
.text-center { text-align: center; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(11,14,23,.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    gap: 30px;
}

.nav-left, .nav-right {
    display: flex;
    gap: 34px;
    align-items: center;
}
.nav-right { justify-content: flex-end; }

.nav-link {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1px;
    background: var(--accent-gold);
}

.nav-search {
    width: 32px; height: 32px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.nav-search:hover { color: #fff; border-color: var(--border); }

.powered-by {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    line-height: 1;
    transition: opacity .25s ease;
}
.powered-by:hover { opacity: .7; }
.powered-by-text {
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    font-weight: 500;
}
.powered-by-logo {
    height: 18px;
    width: auto;
    display: block;
}

/* Logo — image based */
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.footer-top .logo-img {
    height: 70px;
}
@media (max-width: 600px) {
    .logo-img { height: 40px; }
    .footer-top .logo-img { height: 56px; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: .3s;
}

/* ============================================
   HERO (with overlay text like missuniverse)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: var(--header-h) 0 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(11,14,23,.35) 0%, rgba(11,14,23,.55) 70%, rgba(11,14,23,.95) 100%),
      url('../images/hero.jpg') center/cover no-repeat;
    z-index: 0;
}

/* ============================================
   HERO SCROLL — Multi-phase cinematic
   ============================================ */
.hero-scroll-wrap {
    position: relative;
    height: 340vh;
    background: var(--bg-dark);
}
.hero-scroll-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    perspective: 1600px;
    perspective-origin: 50% 45%;
    background: #05070d;
    color: #fff;
}

/* --- Layers --- */
.hero-scroll-image {
    position: absolute;
    inset: 0;
    background-color: #05070d;
    will-change: transform, border-radius, filter, opacity;
    transform-origin: center center;
    z-index: 1;
    overflow: hidden;
}
.hero-image-blur,
.hero-image-main {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}
.hero-image-blur {
    inset: -6%;
    background-size: cover;
    background-position: center;
    filter: blur(44px) brightness(.45) saturate(1.15);
    transform: scale(1.12);
    z-index: 1;
}
.hero-image-main {
    background-size: contain;
    background-position: center center;
    z-index: 2;
}
.hero-scroll-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 30% 35%, rgba(201,160,90,.14) 0%, transparent 55%),
      linear-gradient(180deg, rgba(5,7,13,.25) 0%, rgba(5,7,13,.5) 45%, rgba(5,7,13,.9) 100%);
    will-change: opacity;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
      radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.55) 100%),
      linear-gradient(180deg, rgba(5,7,13,0) 0%, rgba(5,7,13,0) 80%, rgba(5,7,13,.9) 100%);
    opacity: .6;
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(201,160,90,.08) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(201,160,90,.08) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0;
    will-change: opacity;
    mask-image: radial-gradient(ellipse at center, black 0%, black 55%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 55%, transparent 85%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity .8s ease;
    will-change: opacity;
}
.hero-particles.visible { opacity: 1; }

/* --- Corner markers --- */
.hero-corner {
    position: absolute;
    width: 26px;
    height: 26px;
    z-index: 10;
    opacity: 0;
    transition: opacity .6s ease .1s;
    pointer-events: none;
}
.hero-corner.active { opacity: 1; }
.hero-corner::before,
.hero-corner::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
}
.hero-corner::before { width: 100%; height: 1px; }
.hero-corner::after  { width: 1px; height: 100%; }
.hero-corner.tl { top: 34px;    left: 34px; }
.hero-corner.tl::before { top: 0; left: 0; }
.hero-corner.tl::after  { top: 0; left: 0; }
.hero-corner.tr { top: 34px;    right: 34px; }
.hero-corner.tr::before { top: 0; right: 0; }
.hero-corner.tr::after  { top: 0; right: 0; }
.hero-corner.bl { bottom: 34px; left: 34px; }
.hero-corner.bl::before { bottom: 0; left: 0; }
.hero-corner.bl::after  { bottom: 0; left: 0; }
.hero-corner.br { bottom: 34px; right: 34px; }
.hero-corner.br::before { bottom: 0; right: 0; }
.hero-corner.br::after  { bottom: 0; right: 0; }

/* --- Side rail (phase + progress) --- */
.hero-rail {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 10px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0;
    transition: opacity .7s ease .15s;
}
.hero-rail.active { opacity: 1; }
.rail-phase {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.rail-num {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--accent-gold);
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1;
    font-style: italic;
}
.rail-label {
    position: absolute;
    left: 52px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .4s ease;
}
.rail-label.is-active { opacity: 1; }

.rail-track {
    width: 1px;
    height: 140px;
    background: rgba(255,255,255,.12);
    position: relative;
    margin-left: 16px;
}
.rail-fill {
    position: absolute;
    top: 0; left: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
    will-change: height;
    box-shadow: 0 0 8px rgba(201,160,90,.5);
}
.rail-percent {
    font-family: var(--font-mono, 'Courier New', monospace);
    font-size: 11px;
    color: var(--accent-gold);
    letter-spacing: .1em;
    margin-left: 8px;
}

/* --- Right tag badge --- */
.hero-tag {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 11;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .4em;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .7s ease .2s;
}
.hero-tag.active { opacity: 1; }
.tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(201,160,90,.8);
    animation: tag-pulse 2s ease-in-out infinite;
}
@keyframes tag-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: .6; }
}

/* --- Panels (phases) --- */
.hero-panel {
    position: absolute;
    z-index: 12;
    will-change: transform, opacity;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility 0s linear .5s;
}
.hero-panel.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility 0s linear 0s;
}

.panel-main {
    left: 0; right: 0;
    bottom: 13vh;
    padding: 0 120px;
    max-width: 1400px;
    margin: 0 auto;
}
.panel-program {
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 520px;
    text-align: right;
}
.panel-cta {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 720px;
    padding: 0 40px;
}

/* --- Eyebrow --- */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    letter-spacing: .38em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}
.panel-program .hero-eyebrow { justify-content: flex-end; }
.panel-cta .hero-eyebrow { justify-content: center; }
.eye-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
    will-change: transform;
}
.panel-program .eye-line { transform-origin: right center; }
.hero-panel.active .eye-line { transform: scaleX(1); }

/* --- Title with word-by-word reveal --- */
.hero-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(60px, 10.5vw, 148px);
    line-height: .92;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 40px rgba(0,0,0,.7);
    letter-spacing: -.01em;
    margin-bottom: 30px;
}
.hero-title.medium {
    font-size: clamp(44px, 7vw, 96px);
}
.hero-title .word,
.hero-sub .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: .22em;
    line-height: 1;
}
.hero-title .word { padding: .04em .02em .1em; }
.hero-title .word-in,
.hero-sub .word-in {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity .8s ease;
}
.hero-panel.active .word-in {
    transform: translateY(0);
    opacity: 1;
}
.hero-panel.active .word:nth-child(2) .word-in { transition-delay: .1s; }
.hero-panel.active .word:nth-child(3) .word-in { transition-delay: .2s; }
.hero-panel.active .word:nth-child(4) .word-in { transition-delay: .3s; }
.hero-panel.active .word:nth-child(5) .word-in { transition-delay: .4s; }

.hero-sub {
    font-size: clamp(14px, 1.3vw, 17px);
    letter-spacing: .04em;
    color: #fff;
    max-width: 480px;
    opacity: .92;
}
.hero-sub .word { padding: 2px 0; }
.hero-sub .word.w-sm { margin-right: .35em; }
.hero-panel.active .hero-sub .word:nth-child(1) .word-in { transition-delay: .35s; }
.hero-panel.active .hero-sub .word:nth-child(2) .word-in { transition-delay: .42s; }
.hero-panel.active .hero-sub .word:nth-child(3) .word-in { transition-delay: .48s; }
.hero-panel.active .hero-sub .word:nth-child(4) .word-in { transition-delay: .54s; }
.hero-panel.active .hero-sub .word:nth-child(5) .word-in { transition-delay: .60s; }

/* --- Program steps --- */
.hero-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
.hero-steps li {
    display: inline-flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    width: 100%;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
    will-change: transform, opacity;
}
.panel-program.active .hero-steps li { opacity: 1; transform: translateX(0); }
.panel-program.active .hero-steps li:nth-child(1) { transition-delay: .3s; }
.panel-program.active .hero-steps li:nth-child(2) { transition-delay: .42s; }
.panel-program.active .hero-steps li:nth-child(3) { transition-delay: .54s; }
.panel-program.active .hero-steps li:nth-child(4) { transition-delay: .66s; }

.step-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 26px;
    color: var(--accent-gold);
    line-height: 1;
}
.step-lbl {
    font-size: 14px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #fff;
}

/* --- CTA --- */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 36px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    margin-top: 14px;
    transition: color .35s ease, background .35s ease;
    opacity: 0;
    transform: translateY(16px);
}
.panel-cta.active .hero-cta { opacity: 1; transform: translateY(0); transition: opacity .6s ease .3s, transform .6s cubic-bezier(.2,.8,.2,1) .3s, color .35s ease, background .35s ease; }
.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    z-index: -1;
}
.hero-cta:hover { color: var(--bg-dark); }
.hero-cta:hover::before { transform: translateY(0); }
.cta-arrow svg { width: 24px; height: 12px; display: block; }
.hero-cta:hover .cta-arrow { transform: translateX(4px); transition: transform .35s ease; }

/* --- Scroll cue --- */
.hero-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: .4em;
    font-weight: 500;
    will-change: opacity;
}
.cue-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}
.cue-line::after {
    content: '';
    position: absolute;
    left: 0; top: -44px;
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, var(--accent-gold-light));
    animation: cue-travel 2.2s ease-in-out infinite;
}
@keyframes cue-travel {
    0%   { transform: translateY(0); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(88px); opacity: 0; }
}

@media (max-width: 1100px) {
    .panel-main { padding: 0 60px; }
    .panel-program { right: 60px; }
    .hero-rail { left: 28px; }
    .hero-tag { right: 28px; }
    .hero-corner.tl, .hero-corner.bl { left: 20px; }
    .hero-corner.tr, .hero-corner.br { right: 20px; }
}
@media (max-width: 760px) {
    .hero-scroll-wrap { height: 300vh; }
    .panel-main { padding: 0 24px; bottom: 18vh; }
    .panel-program { right: 24px; left: 24px; max-width: none; text-align: left; }
    .panel-program .hero-eyebrow { justify-content: flex-start; }
    .hero-steps { align-items: flex-start; }
    .hero-steps li { justify-content: flex-start; }
    .panel-cta { padding: 0 24px; }
    .hero-title { font-size: clamp(44px, 13vw, 80px); }
    .hero-rail, .hero-tag { display: none; }
    .hero-corner { width: 18px; height: 18px; }
}

/* Old slider fallback kept for other pages */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,14,23,.35) 0%, rgba(11,14,23,.55) 70%, rgba(11,14,23,.95) 100%);
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.hero-dot {
    width: 30px;
    height: 2px;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: .3s;
    padding: 0;
}
.hero-dot.active { background: var(--accent-gold); }
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-winner-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(34px, 6vw, 80px);
    letter-spacing: .02em;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
    margin-bottom: 6px;
    font-weight: 400;
}
.hero-subtitle-sm {
    font-size: 14px;
    letter-spacing: .15em;
    color: #fff;
    margin-bottom: 24px;
}
.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 4px;
    font-weight: 500;
}
.hero-link:hover { color: var(--accent-gold); }

/* Hero mini-hero variant for inner pages */
.hero.inner {
    min-height: 60vh;
    align-items: center;
    text-align: center;
}
.hero.inner .hero-content { padding: 120px 40px 80px; text-align: center; }
.hero-eyebrow {
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--accent-gold);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.hero-title {
    font-size: clamp(40px, 7vw, 84px);
    letter-spacing: .04em;
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 300;
}
.hero-subtitle {
    font-size: 16px;
    letter-spacing: .04em;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 36px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 15px 38px;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    cursor: pointer;
    transition: all .35s ease;
    font-family: var(--font-sans);
}
.btn:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}
.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-dark);
}
.btn-primary:hover {
    background: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
}
.btn-dark {
    border-color: var(--text-dark);
    color: var(--text-dark);
}
.btn-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

/* ============================================
   APP DOWNLOAD BAND
   ============================================ */
.app-band {
    background: linear-gradient(90deg, #0b0e17 0%, #121827 60%, #0b0e17 100%);
    padding: 46px 0;
    border-top: 1px solid rgba(201,160,90,.15);
    border-bottom: 1px solid rgba(201,160,90,.15);
}
.app-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}
.app-band-left h3 {
    font-size: clamp(22px, 3vw, 34px);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
    margin-bottom: 10px;
}
.app-band-left p {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.app-store-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    border: 1px solid #333;
    padding: 10px 18px;
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
}
.store-badge small { display: block; font-size: 9px; color: #bbb; letter-spacing: .1em; }
.store-badge strong { display: block; font-size: 14px; letter-spacing: .02em; font-weight: 500; }
.store-badge:hover { border-color: var(--accent-gold); }
.app-band-right img {
    max-height: 180px;
}
.phone-mockup {
    width: 220px;
    height: 170px;
    background: linear-gradient(135deg, #1a2237 0%, #2a3550 100%);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 120px 0;
    position: relative;
}
.section-sm { padding: 80px 0; }
.section-light {
    background: var(--bg-cream);
    color: var(--text-dark);
}
.section-light .section-title,
.section-light h2,
.section-light h3 { color: var(--text-dark); }
.section-light .section-lead { color: var(--text-dark-muted); }

/* When section-light is also legacy-section, switch to dark "prijava-style" treatment */
.section-light.legacy-section {
    background: #05070d;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-light.legacy-section .container { position: relative; z-index: 2; }
.legacy-particles {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 55%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease;
    /* Gentle fade toward inner edge — particles extend further into the section */
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 82%, transparent 100%);
}
.legacy-particles.visible { opacity: 1; }
.legacy-particles-left  { left: 0; }
.legacy-particles-right {
    right: 0;
    -webkit-mask-image: linear-gradient(to left, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to left, #000 0%, #000 82%, transparent 100%);
}
@media (max-width: 800px) {
    .legacy-particles { width: 45%; }
}
/* Hero decoration variant — sits above overlay/vignette so they shine through */
.legacy-particles.hero-decor { z-index: 6; }
.section-light.legacy-section .section-eyebrow { color: var(--accent-gold) !important; }
.section-light.legacy-section .legacy-years {
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.section-light.legacy-section .section-title,
.section-light.legacy-section h2,
.section-light.legacy-section h3 {
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.section-light.legacy-section .section-title .gold { color: var(--accent-gold); }
.section-light.legacy-section .section-lead { color: rgba(255,255,255,.8); }
.section-light.legacy-section .legacy-cta {
    color: #fff;
    border-color: var(--accent-gold);
}
.section-light.legacy-section .star-divider { color: var(--accent-gold); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    letter-spacing: .02em;
    color: var(--accent-gold);
    margin-bottom: 14px;
    font-weight: 400;
}
.section-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(36px, 5.5vw, 62px);
    line-height: 1.05;
    letter-spacing: -.01em;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 20px;
    color: var(--accent-gold-light);
}
.section-title .gold { color: var(--accent-gold); font-style: italic; font-weight: 300; }
.section-title .teal { color: var(--accent-teal); font-style: italic; font-weight: 300; }
.section-light .section-title { color: var(--text-dark); }
.section-light .section-title .gold { color: var(--accent-gold); }
.section-lead {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
}

.star-divider {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
    color: var(--accent-gold);
    font-size: 18px;
}
.star-divider::before { content: '✦'; }

/* ============================================
   SHOWCASE — 3D pinned carousel of past winners
   ============================================ */
.showcase-wrap {
    position: relative;
    height: 700vh;
    background: #05070d;
}
.showcase-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    perspective: 2400px;
    perspective-origin: 50% 48%;
    background: #05070d;
    color: #fff;
}

/* Flag background — crossfade layers */
.showcase-flag {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(.4,.0,.2,1);
    will-change: opacity, background-image;
    pointer-events: none;
    filter: saturate(.9) brightness(.85);
}
.showcase-flag.is-visible { opacity: .85; }

/* Blurred portrait layer (hidden — flag is now the bg) */
.showcase-bg { display: none; }
.showcase-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
      radial-gradient(ellipse at center, rgba(5,7,13,.25) 0%, rgba(5,7,13,.55) 70%, rgba(5,7,13,.85) 100%),
      linear-gradient(180deg, rgba(5,7,13,.15) 0%, rgba(5,7,13,.35) 50%, rgba(5,7,13,.75) 100%);
    pointer-events: none;
}
.showcase-grid {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(201,160,90,.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(201,160,90,.05) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 0%, black 45%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 45%, transparent 85%);
}

/* Corner markers */
.showcase-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 12;
    pointer-events: none;
}
.showcase-corner::before,
.showcase-corner::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
}
.showcase-corner::before { width: 100%; height: 1px; }
.showcase-corner::after  { width: 1px;  height: 100%; }
.showcase-corner.tl { top: 28px; left: 28px; }
.showcase-corner.tl::before, .showcase-corner.tl::after { top: 0; left: 0; }
.showcase-corner.tr { top: 28px; right: 28px; }
.showcase-corner.tr::before { top: 0; right: 0; }
.showcase-corner.tr::after  { top: 0; right: 0; }
.showcase-corner.bl { bottom: 28px; left: 28px; }
.showcase-corner.bl::before, .showcase-corner.bl::after { bottom: 0; left: 0; }
.showcase-corner.br { bottom: 28px; right: 28px; }
.showcase-corner.br::before { bottom: 0; right: 0; }
.showcase-corner.br::after  { bottom: 0; right: 0; }

/* Header */
.showcase-header {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: calc(100% - 120px);
    max-width: 900px;
}
.showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 500;
    margin-bottom: 16px;
}
.sh-line {
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
}
.showcase-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(30px, 4vw, 46px);
    color: #fff;
    line-height: 1.1;
    margin: 0;
}
.showcase-title .gold { color: var(--accent-gold-light); }

/* 3D card stage */
.showcase-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 520px;
    transform-style: preserve-3d;
    z-index: 8;
}

.showcase-card {
    position: absolute;
    inset: 0;
    background-color: #0a0e14;
    background-size: cover;
    background-position: center top;
    border-radius: 6px;
    box-shadow:
      0 2px 0 rgba(201,160,90,.3) inset,
      0 30px 70px rgba(0,0,0,.55),
      0 10px 24px rgba(0,0,0,.4);
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transition: transform .9s cubic-bezier(.22,.85,.25,1), opacity .8s ease, filter .8s ease;
    transform-origin: center center;
    border: 1px solid rgba(255,255,255,.08);
    isolation: isolate;
}
.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.5) 100%);
    border-radius: inherit;
    pointer-events: none;
}
.showcase-card.is-active {
    box-shadow:
      0 2px 0 rgba(201,160,90,.5) inset,
      0 40px 90px rgba(0,0,0,.7),
      0 0 0 1px rgba(201,160,90,.3);
}
.showcase-card.is-active::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 7px;
    box-shadow: 0 0 30px rgba(201,160,90,.25);
    pointer-events: none;
}

/* Info panel (right side) */
.showcase-info {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    text-align: right;
    color: #fff;
    max-width: 300px;
}
.info-year {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(80px, 9vw, 130px);
    line-height: .85;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 40px rgba(0,0,0,.6);
    margin-bottom: 20px;
    letter-spacing: -.02em;
    will-change: contents;
}
.info-separator {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin-left: auto;
    margin-bottom: 20px;
}
.info-label {
    font-size: 10px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 500;
}
.info-name {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 28px);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}
.info-country {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}
.info-country-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 6px rgba(201,160,90,.8);
}

/* Left counter */
.showcase-counter {
    position: absolute;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    max-width: 160px;
}
.counter-num {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 60px;
    color: rgba(255,255,255,.25);
    line-height: .9;
    font-weight: 300;
    margin-bottom: 10px;
}
.counter-label {
    display: block;
    font-size: 9px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

/* Progress indicator (bottom) */
.showcase-progress {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--text-secondary);
}
.prog-current, .prog-total {
    min-width: 32px;
    text-align: center;
    color: var(--accent-gold);
    font-weight: 400;
}
.prog-total { color: rgba(255,255,255,.4); }
.prog-bar {
    width: 260px;
    height: 1px;
    background: rgba(255,255,255,.15);
    position: relative;
    overflow: hidden;
}
.prog-fill {
    position: absolute;
    left: 0; top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    will-change: width;
    box-shadow: 0 0 10px rgba(201,160,90,.6);
}

@media (max-width: 1200px) {
    .showcase-info { right: 40px; }
    .showcase-counter { left: 40px; }
}
@media (max-width: 900px) {
    .showcase-wrap { height: 550vh; }
    .showcase-stage { width: 280px; height: 400px; }
    .showcase-info { right: 24px; max-width: 220px; }
    .showcase-counter { display: none; }
    .info-year { font-size: 72px; }
    .prog-bar { width: 140px; }
}
@media (max-width: 640px) {
    .showcase-stage { width: 220px; height: 320px; }
    .showcase-info {
        position: absolute;
        bottom: 130px;
        top: auto;
        transform: none;
        right: 50%;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        max-width: 280px;
    }
    .info-separator { margin: 0 auto 20px; }
}

/* ============================================
   HISTORIC WINNERS (light section)
   ============================================ */
.legacy-section { padding: 120px 0 80px; text-align: center; }
.legacy-years {
    font-size: clamp(48px, 7vw, 80px);
    color: var(--accent-gold);
    font-family: var(--font-serif);
    letter-spacing: .04em;
    margin-bottom: 10px;
}
.legacy-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--text-dark);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 4px;
}
.legacy-strip {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    overflow-x: auto;
    padding: 0 20px 20px;
}
.legacy-thumb {
    flex: 0 0 110px;
    height: 140px;
    background: var(--bg-cream-dark) center/cover no-repeat;
    border: 1px solid var(--border-light);
}

/* ============================================
   ABOUT / ARE section (big bg text + panels)
   ============================================ */
.about-section {
    position: relative;
    padding: 140px 0;
    background: #05070d;
    overflow: hidden;
}
.about-section .container { position: relative; z-index: 2; }

/* Prijava-style content blocks: no panels, no boxes — just text */
.mission-blocks {
    display: flex;
    flex-direction: column;
    gap: 110px;
    max-width: 880px;
    margin: 0 auto;
    padding: 30px 20px;
}
.mission-block {
    text-align: left;
    position: relative;
}
.mb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 30px;
    font-weight: 500;
}
.mb-eye-line {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--accent-gold);
}
.mb-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 5.2vw, 68px);
    line-height: 1.08;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
    letter-spacing: -.01em;
    margin-bottom: 32px;
}
.mb-title .gold { color: var(--accent-gold); font-style: italic; }
.mb-title .teal { color: var(--accent-teal); font-style: italic; }
.mb-text {
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    max-width: 720px;
    margin-bottom: 36px;
    letter-spacing: .01em;
}
.mb-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent-gold);
    transition: gap .35s ease, color .35s ease;
}
.mb-link:hover { gap: 22px; color: var(--accent-gold-light); }
.mb-arrow { transition: transform .35s ease; }
.mb-link:hover .mb-arrow { transform: translateX(4px); }

@media (max-width: 720px) {
    .mission-blocks { gap: 80px; padding: 20px; }
}

/* --- PILLARS — prijava-style, no boxes --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    perspective: 1400px;
}
.pillar {
    position: relative;
    padding-top: 32px;
    will-change: transform, opacity;
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 36px;
    height: 1px;
    background: var(--accent-gold);
    transition: width .55s cubic-bezier(.2,.8,.2,1);
}
.pillar:hover::before { width: 96px; }

.pillar-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 18px;
    letter-spacing: .12em;
}
.pillar-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.05;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: -.005em;
    transition: color .35s ease;
}
.pillar:hover .pillar-title { color: #fff; }
.pillar-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.78);
    letter-spacing: .01em;
}

@media (max-width: 900px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 40px; }
}
@media (max-width: 600px) {
    .pillars-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================
   KONTAKT PAGE — channels + cinematic form
   ============================================ */
.kontakt-channels {
    position: relative;
    background: #07090f;
    padding: 60px 0 80px;
    overflow: hidden;
}
.kontakt-channels .container { position: relative; z-index: 2; }
.kch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.kch-card {
    position: relative;
    padding: 44px 36px 60px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.02);
    color: #fff;
    text-decoration: none;
    transition: border-color .35s ease, background .35s ease, transform .35s ease;
    display: block;
    overflow: hidden;
}
.kch-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    height: 1px;
    width: 36px;
    background: var(--accent-gold);
    transition: width .55s cubic-bezier(.2,.8,.2,1);
}
.kch-card:hover {
    border-color: var(--accent-gold);
    background: rgba(201,160,90,.04);
    transform: translateY(-4px);
}
.kch-card:hover::before { width: 96px; }
.kch-eye {
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 22px;
    font-weight: 500;
}
.kch-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 32px);
    color: var(--accent-gold-light);
    margin-bottom: 14px;
    font-weight: 300;
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    transition: color .35s ease;
}
.kch-card:hover .kch-title { color: #fff; }
.kch-value {
    font-size: 14px;
    letter-spacing: .02em;
    color: rgba(255,255,255,.78);
    word-break: break-all;
    line-height: 1.5;
}
.kch-arrow {
    position: absolute;
    bottom: 30px;
    right: 32px;
    color: var(--accent-gold);
    font-size: 18px;
    transition: transform .35s ease;
}
.kch-card:hover .kch-arrow { transform: translateX(8px); }

/* When kontakt-channels precedes about-section, tighten the gap */
.kontakt-channels + .about-section { padding-top: 80px; }

@media (max-width: 1000px) {
    .kch-grid { grid-template-columns: 1fr; gap: 18px; }
    .kch-card { padding: 32px 28px 50px; }
    .kch-arrow { bottom: 22px; right: 24px; }
}

/* --- Kontakt form (single column, prijava-style fields) --- */
.kform-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.kform-head {
    margin-bottom: 70px;
    text-align: center;
}
.kform-eye {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 26px;
    font-weight: 500;
}
.kform-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
    letter-spacing: -.01em;
    margin-bottom: 22px;
}
.kform-title .gold { color: var(--accent-gold); font-style: italic; }
.kform-sub {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.7;
    color: rgba(255,255,255,.82);
    max-width: 540px;
    margin: 0 auto;
}
.kform {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

/* Textarea variant of pf-input */
.pf-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
    font-size: clamp(18px, 1.6vw, 22px) !important;
    padding: 14px 0 !important;
}
.pform-field-textarea .pf-underline { bottom: 0; }
.pform-field-textarea {
    padding-bottom: 4px;
}

/* TBA tag — for phases where date/location is yet to be announced */
.mb-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 10px 18px;
    border: 1px solid rgba(201,160,90,.3);
    background: rgba(201,160,90,.04);
    margin-top: 4px;
    font-weight: 500;
}
.mb-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(201,160,90,.7);
    animation: tag-pulse 2s ease-in-out infinite;
}

/* --- Reveal-on-scroll (IntersectionObserver-driven) --- */
.reveal-prepped {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 1.1s cubic-bezier(.16, 1, .3, 1),
        transform 1.1s cubic-bezier(.16, 1, .3, 1);
    will-change: transform, opacity;
}
.pillar.reveal-prepped {
    transform: translateY(70px) rotateX(20deg);
    transform-origin: center bottom;
}
.reveal-prepped.is-revealed {
    opacity: 1;
    transform: none;
}
.about-bgtext {
    position: absolute;
    font-family: var(--font-serif);
    font-size: clamp(180px, 28vw, 360px);
    letter-spacing: .05em;
    color: rgba(255,255,255,.04);
    line-height: .9;
    font-weight: 300;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}
.about-bgtext.top { top: 60px; left: -20px; }
.about-bgtext.bottom { bottom: 60px; left: -20px; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}
.about-panels {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.about-panel {
    background: var(--bg-secondary);
    padding: 50px 44px;
    border: 1px solid var(--border);
}
.about-panel-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.about-panel-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 300;
    letter-spacing: -.005em;
    text-transform: none;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.about-panel-title .teal { color: var(--accent-teal); font-style: italic; font-weight: 300; }
.about-panel-title .gold { color: var(--accent-gold-light); font-style: italic; font-weight: 300; }
.about-panel p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.about-link {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 3px;
    display: inline-block;
}

.about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 320px;
    gap: 16px;
}
.about-gallery > div {
    background: #222 center/cover no-repeat;
}
.about-gallery > div:nth-child(1) { grid-row: 1 / 2; }
.about-gallery > div:nth-child(2) { grid-row: 1 / 3; }
.about-gallery > div:nth-child(3) { grid-row: 2 / 3; }

/* ============================================
   SPONSORS
   ============================================ */
.sponsors-section {
    background: var(--bg-cream);
    color: var(--text-dark);
    padding: 100px 0;
}
.sponsors-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    margin-bottom: 50px;
}
.sponsors-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 400;
    color: var(--text-dark);
}
.sponsors-head .sh-label {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 18px;
}
.sponsors-head .sh-right {
    text-align: right;
}
.sponsors-head .sh-right p {
    color: var(--text-dark-muted);
    font-size: 14px;
    margin-bottom: 16px;
    max-width: 420px;
    margin-left: auto;
}
.sponsors-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.sponsor-logo {
    background: #fff;
    border: 1px solid var(--border-light);
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: .08em;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: .25s;
}
.sponsor-logo:hover { border-color: var(--accent-gold); }

/* ============================================
   MERCHANDISE BAND
   ============================================ */
.merch-band {
    background: #05070d;
    padding: 60px 0 140px;
    position: relative;
    overflow: hidden;
}
/* When an about-section is right before merch-band, tighten its bottom padding */
.about-section:has(+ .merch-band) { padding-bottom: 60px !important; }
.merch-band .container { position: relative; z-index: 2; }
.merch-band-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 30px;
}
.merch-eyebrow {
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}
.merch-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(44px, 6.5vw, 88px);
    line-height: 1;
    text-transform: none;
    letter-spacing: -.01em;
    font-weight: 300;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
    margin-bottom: 28px;
}
.merch-title .gold { color: var(--accent-gold); }
.merch-sub {
    font-size: clamp(14px, 1.2vw, 17px);
    letter-spacing: .04em;
    color: rgba(255,255,255,.85);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 40px;
}
.merch-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 20px 42px;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .35s ease;
}
.merch-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    z-index: 0;
}
.merch-cta:hover::before { transform: translateY(0); }
.merch-cta:hover { color: var(--bg-dark); }
.merch-cta > * { position: relative; z-index: 1; }
.merch-cta-arrow { transition: transform .35s ease; }
.merch-cta:hover .merch-cta-arrow { transform: translateX(5px); }

/* ============================================
   HIGHLIGHT (press release strip)
   ============================================ */
.highlight-band {
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}
.highlight-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}
.highlight-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--accent-gold);
}
.highlight-title {
    font-size: clamp(22px, 3vw, 32px);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
}
.highlight-title .muted { color: var(--text-secondary); }
.highlight-date {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: .15em;
    margin-top: 12px;
}
.highlight-tags { display: flex; gap: 8px; margin-top: 12px; }
.chip {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    padding: 6px 12px;
    color: var(--text-secondary);
}
.highlight-link {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 3px;
    white-space: nowrap;
}

/* ============================================
   LATEST NEWS
   ============================================ */
.news-section { padding: 100px 0 120px; }
.news-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}
.news-head h2 {
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 400;
    color: var(--accent-teal);
}
.news-head .n-eyebrow {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 18px;
}
.news-head .n-view {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 3px;
    white-space: nowrap;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold);
}
.card-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: #222 center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-image .mini-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: .3em;
    color: #fff;
    text-align: center;
    opacity: .9;
}
.card-image .mini-logo small {
    display: block;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .5em;
    color: var(--accent-gold);
    border-top: 1px solid var(--accent-gold);
    margin-top: 4px;
    padding-top: 4px;
}
.card-body { padding: 26px 24px 28px; }
.card-date {
    font-size: 10px;
    letter-spacing: .25em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.card-title {
    font-size: 18px;
    margin-bottom: 14px;
    color: var(--text-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.card-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.card-link {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
}
.card-link:hover { color: var(--accent-gold-light); }

/* Feature row (image + text) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-image {
    aspect-ratio: 4/5;
    background: #222 center/cover no-repeat;
}
.feature-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(30px, 4.5vw, 48px);
    line-height: 1.08;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -.005em;
    font-weight: 300;
    color: var(--accent-gold-light);
}
.feature-title .gold { color: var(--accent-gold); }
.section-light .feature-title { color: var(--text-dark); }
.feature-text { color: var(--text-secondary); margin-bottom: 22px; font-size: 15px; }

/* ============================================
   FORM
   ============================================ */
.form-wrap {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 22px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}
.form-group .req { color: var(--accent-gold); }

.form-input,
.form-textarea,
.form-file {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 14px;
    transition: border-color .25s ease;
}
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.form-textarea {
    resize: vertical;
    min-height: 140px;
}
.form-file { padding: 10px; cursor: pointer; }
.form-help {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}
.form-submit-wrap {
    text-align: center;
    margin-top: 30px;
}
.form-status {
    margin-top: 20px;
    padding: 14px;
    text-align: center;
    font-size: 14px;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(40,140,80,.12);
    border: 1px solid #2e8b57;
    color: #8fe0af;
}
.form-status.error {
    display: block;
    background: rgba(200,50,50,.12);
    border: 1px solid #b33;
    color: #ff9a9a;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info h3 {
    font-size: 20px;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--accent-gold);
}
.contact-info p { color: var(--text-secondary); margin-bottom: 10px; }
.contact-block { margin-bottom: 40px; }

/* ============================================
   FOOTER (centered horizontal bar)
   ============================================ */
.site-footer {
    position: relative;
    z-index: 2;
    background: #070910;
    padding: 70px 0 30px;
    border-top: 1px solid var(--border);
}
.footer-top {
    text-align: center;
    margin-bottom: 40px;
}
.footer-top .logo {
    display: inline-flex;
    margin-bottom: 22px;
}
.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 34px;
    line-height: 1.7;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.footer-nav a {
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}
.footer-nav a:hover { color: var(--accent-gold); }

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    justify-content: center;
}
.footer-social a {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    padding: 0;
    display: inline-block;
    transition: transform .25s ease, opacity .25s ease;
}
.footer-social a:hover {
    transform: scale(1.08);
    opacity: .9;
    border: none;
}
.footer-social a svg {
    width: 28px;
    height: 28px;
    display: block;
}
.footer-social a {
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 11px;
    letter-spacing: .1em;
    transition: .3s;
}
.footer-social a:hover { border-color: var(--accent-gold); color: var(--accent-gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: .1em;
    flex-wrap: wrap;
    gap: 14px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent-gold); }
.footer-policies { display: flex; gap: 20px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .feature-row, .contact-grid, .about-grid, .sponsors-head, .app-band-inner, .merch-band-inner, .news-head, .highlight-inner { grid-template-columns: 1fr; gap: 40px; }
    .feature-row.reverse { direction: ltr; }
    .form-wrap { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .section { padding: 80px 0; }
    .container, .nav-wrap { padding-left: 20px; padding-right: 20px; }
    .about-gallery { grid-template-rows: 200px 200px; }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsors-head .sh-right { text-align: left; }
    .sponsors-head .sh-right p { margin-left: 0; }
    .sponsors-actions { justify-content: flex-start; }

    .menu-toggle { display: flex; }

    /* Mobile menu — nav-left hidden; nav-right keeps only powered-by visible */
    .nav-left { display: none; }
    .nav-right > .nav-link { display: none; }

    /* Header layout: logo + powered-by + toggle */
    .nav-wrap { grid-template-columns: auto 1fr auto; }
    .logo { justify-self: start; margin-left: 8px; }

    /* When toggle pressed, header expands and shows full menu */
    .site-header.nav-open {
        height: auto;
        background: rgba(11,14,23,.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .site-header.nav-open .nav-wrap {
        display: flex;
        flex-direction: column;
        padding: 16px 24px 28px;
        gap: 16px;
        align-items: stretch;
    }
    .site-header.nav-open .nav-wrap > .logo {
        order: -1;
        align-self: center;
        margin: 4px 0 16px;
    }
    .site-header.nav-open .nav-wrap > .menu-toggle {
        position: absolute;
        top: 24px;
        right: 24px;
    }
    .site-header.nav-open .nav-left,
    .site-header.nav-open .nav-right {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 12px 0;
        border-top: 1px solid var(--border);
    }
    .site-header.nav-open .nav-right > .nav-link { display: block; }
    .site-header.nav-open .nav-link {
        font-size: 13px;
        padding: 8px 0;
    }
    .site-header.nav-open .nav-link.active::after { display: none; }

    /* Animate menu toggle into "X" when open */
    .site-header.nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .site-header.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
    .site-header.nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero-title { font-size: 40px; }
    .section { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .sponsors-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   PRIJAVA PAGE — Cinematic (GSAP-driven)
   ============================================ */

/* --- STAGE — 2-column layout: left scrolls, right figure stays pinned --- */
.pstage {
    position: relative;
    background: #05070d;
    color: #fff;
}
.pstage-left {
    position: relative;
    z-index: 1;
    padding-right: 48%;
    min-width: 0;
    perspective: 1600px;
    perspective-origin: 50% 40%;
}
.phero-content,
.pform-section,
.pform-field,
.pform-head,
.pform-consent,
.pform-submit {
    transform-style: preserve-3d;
    will-change: transform, opacity;
}
.pstage-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    min-width: 0;
}
.pstage-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: visible;
    background: transparent;
}

/* Hero text panel inside left column (first 100vh) */
.pstage-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 14vh 80px;
    box-sizing: border-box;
}

/* Reset phero base (now children of sticky right) */
.phero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.phero-image-blur,
.phero-image-main {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    pointer-events: none;
}
.phero-image-blur {
    inset: -6%;
    background-size: cover;
    background-position: center;
    filter: blur(44px) brightness(.35) saturate(1.1);
    transform: scale(1.12);
    z-index: 1;
    /* Fade blur bg at the bottom so form slides in cleanly */
    -webkit-mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(180deg, #000 55%, rgba(0,0,0,0) 100%);
}
.phero-image-main {
    background-size: contain;
    background-position: center center;
    z-index: 2;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,.6));
}
.phero-overlay,
.phero-vignette { display: none; }

/* Hide frame elements on prijava — Miss should feel like a floating overlay */
.pstage-right .phero-corner,
.pstage-right .phero-rail,
.pstage-right .phero-tag { display: none; }

.phero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity .8s ease;
    will-change: opacity;
}
.phero-particles.visible { opacity: 1; }

/* Corners */
.phero-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}
.phero-corner::before,
.phero-corner::after {
    content: '';
    position: absolute;
    background: var(--accent-gold);
}
.phero-corner::before { width: 100%; height: 1px; }
.phero-corner::after  { width: 1px;  height: 100%; }
.phero-corner.tl { top: 30px; left: 30px; }
.phero-corner.tl::before, .phero-corner.tl::after { top: 0; left: 0; }
.phero-corner.tr { top: 30px; right: 30px; }
.phero-corner.tr::before { top: 0; right: 0; }
.phero-corner.tr::after  { top: 0; right: 0; }
.phero-corner.bl { bottom: 30px; left: 30px; }
.phero-corner.bl::before, .phero-corner.bl::after { bottom: 0; left: 0; }
.phero-corner.br { bottom: 30px; right: 30px; }
.phero-corner.br::before { bottom: 0; right: 0; }
.phero-corner.br::after  { bottom: 0; right: 0; }

/* Rail */
.phero-rail {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    opacity: 0;
}
.pr-top { display: flex; align-items: center; gap: 12px; }
.pr-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 26px;
    color: var(--accent-gold);
    line-height: 1;
    font-weight: 400;
}
.pr-label {
    font-size: 10px;
    letter-spacing: .32em;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 500;
}
.pr-track {
    width: 1px;
    height: 140px;
    background: rgba(255,255,255,.12);
    position: relative;
    margin-left: 16px;
}
.pr-fill {
    position: absolute;
    top: 0; left: 0;
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold-light), var(--accent-gold));
    box-shadow: 0 0 8px rgba(201,160,90,.5);
    will-change: height;
}
.pr-pct {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--accent-gold);
    margin-left: 8px;
}

/* Right tag */
.phero-tag {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    z-index: 11;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    letter-spacing: .4em;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0;
}
.phero-tag .tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(201,160,90,.8);
    animation: tag-pulse 2s ease-in-out infinite;
}

/* Hero content */
.phero-content {
    position: relative;
    z-index: 12;
    max-width: 640px;
    will-change: transform, opacity;
}
.phero-title.medium { font-size: clamp(44px, 6vw, 90px); }
.phero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    letter-spacing: .38em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
}
.phero-eyebrow .pe-line {
    display: inline-block;
    width: 48px; height: 1px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}
.phero-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(52px, 7.5vw, 110px);
    line-height: 1;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 40px rgba(0,0,0,.7);
    letter-spacing: -.01em;
    margin-bottom: 30px;
}
.phero-title .gold { color: var(--accent-gold); }
.phero-title .word,
.phero-sub .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    margin-right: .22em;
    line-height: 1;
}
.phero-title .word { padding: .04em .02em .1em; }
.phero-title .word-in,
.phero-sub .word-in {
    display: inline-block;
    will-change: transform, opacity;
}
/* JS-disabled fallback: words visible without animation */
.no-js .phero-title .word-in,
.no-js .phero-sub .word-in { transform: none; opacity: 1; }
.phero-sub {
    font-size: clamp(14px, 1.3vw, 18px);
    letter-spacing: .04em;
    color: #fff;
    max-width: 540px;
    opacity: .92;
    line-height: 1.6;
}
.phero-sub .word { padding: 2px 0; margin-right: .35em; }

/* Scroll cue */
.phero-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: .4em;
    font-weight: 500;
    will-change: opacity;
}

/* --- INTRO reveals --- */
.pintro .reveal {
    opacity: 0;
    transform: translateY(28px);
    will-change: transform, opacity;
}
.pintro .split-line {
    overflow: visible;
}
.pintro .split-line .word { display: inline-block; overflow: hidden; vertical-align: bottom; margin: 0 .08em; }
.pintro .split-line .word-in { display: inline-block; will-change: transform, opacity; }

/* --- FORM SECTION --- */
.pform-section {
    position: relative;
    z-index: 2;
    padding: 120px 0 120px;
    background: transparent;
    color: #fff;
    overflow: hidden;
}
.pform-bgtext {
    position: absolute;
    top: 90px;
    left: -40px;
    right: 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(140px, 22vw, 320px);
    color: rgba(255,255,255,.03);
    line-height: .9;
    letter-spacing: .02em;
    pointer-events: none;
    user-select: none;
    font-weight: 300;
}
.pform-shell {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0 60px 0 80px;
    z-index: 2;
}

/* Horizontal form header: counter + progress + inline checklist */
.pform-head {
    padding-bottom: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.pform-head-top {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.pform-head-info { flex: 1; min-width: 0; }
.pform-head .pform-counter {
    font-size: 88px;
    line-height: .9;
    margin-bottom: 0;
    flex-shrink: 0;
}
.pform-head .pc-sep,
.pform-head .pc-total { font-size: 56px; }
.pform-head .pform-side-eyebrow { margin-bottom: 10px; }
.pform-head .pform-side-title {
    font-size: clamp(22px, 2.1vw, 28px);
    margin-bottom: 0;
}
.pform-head .pform-progress { margin-bottom: 28px; }
.pform-head .pform-checklist {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
}
.pform-head .pfc-item {
    font-size: 10px;
    letter-spacing: .22em;
}

/* Left sticky sidebar */
.pform-side {
    position: relative;
}
.pform-side-sticky {
    position: sticky;
    top: 120px;
}
.pform-counter {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 110px;
    line-height: .9;
    color: var(--accent-gold-light);
    text-shadow: 0 4px 30px rgba(0,0,0,.6);
    letter-spacing: -.02em;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pc-current { color: var(--accent-gold); }
.pc-sep    { color: rgba(255,255,255,.3); font-size: 70px; }
.pc-total  { color: rgba(255,255,255,.3); font-size: 70px; }

.pform-side-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .38em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
}
.pform-side-eyebrow .pe-line {
    display: inline-block; width: 36px; height: 1px;
    background: var(--accent-gold);
}
.pform-side-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 40px;
}
.pform-side-title .gold { color: var(--accent-gold-light); }
.pform-side-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; margin-right: .22em; padding: .04em .02em .1em; line-height: 1; }
.pform-side-title .word-in { display: inline-block; will-change: transform, opacity; }

.pform-progress {
    margin-bottom: 40px;
}
.pp-track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.1);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.pp-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 0 10px rgba(201,160,90,.6);
    transition: width .4s cubic-bezier(.2,.8,.2,1);
    will-change: width;
}
.pp-meta {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.pp-pct { color: var(--accent-gold); font-weight: 600; }

.pform-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pfc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color .35s ease;
    font-weight: 500;
}
.pfc-dot {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, transform .35s ease;
}
.pfc-item.is-done {
    color: #fff;
}
.pfc-item.is-done .pfc-dot {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(201,160,90,.6);
    transform: scale(1.15);
}

/* Form fields */
.pform {
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.pform-field {
    position: relative;
    padding-bottom: 14px;
    will-change: transform, opacity;
}
.pf-meta {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
}
.pf-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--accent-gold);
    line-height: 1;
    min-width: 26px;
}
.pf-label {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}
.pf-label .req { color: var(--accent-gold); margin-left: 4px; }
.pf-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 300;
    letter-spacing: -.005em;
    transition: border-color .35s ease;
}
.pf-input:focus {
    outline: none;
    border-bottom-color: transparent;
}
.pf-input::placeholder { color: rgba(255,255,255,.35); font-style: italic; }
.pf-underline {
    position: absolute;
    left: 0;
    bottom: 13px;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    box-shadow: 0 0 10px rgba(201,160,90,.5);
    transition: width .5s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
}
.pform-field.is-focused .pf-underline { width: 100%; }
.pform-field.is-filled .pf-underline { width: 100%; }
.pform-field.is-invalid .pf-input { border-bottom-color: rgba(220, 80, 80, .6); }
.pform-field.is-invalid .pf-underline {
    width: 100%;
    background: linear-gradient(90deg, #c44, #e66);
    box-shadow: 0 0 10px rgba(220, 80, 80, .35);
}
.pf-error {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: .04em;
    color: #e88;
    font-family: var(--font-sans);
    font-style: normal;
    animation: pf-err-in .35s ease both;
}
@keyframes pf-err-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* File input */
.pform-field-file { padding-bottom: 0; }
.pf-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 22px;
    border: 1px dashed rgba(255,255,255,.2);
    cursor: pointer;
    transition: border-color .35s ease, background .35s ease;
}
.pf-file:hover { border-color: var(--accent-gold); background: rgba(201,160,90,.05); }
.pf-file-input { position: absolute; width: 0; height: 0; opacity: 0; }
.pf-file-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: #fff;
}
.pf-file-text em {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}
.pf-file-btn {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 10px 22px;
    border: 1px solid var(--accent-gold);
    transition: background .35s ease, color .35s ease;
    font-weight: 600;
}
.pf-file:hover .pf-file-btn { background: var(--accent-gold); color: var(--bg-dark); }
.pform-field-file.is-filled .pf-file { border-color: var(--accent-gold); border-style: solid; }
.pform-field-file.is-filled .pf-file-text em { color: var(--accent-gold-light); }

/* Consent */
.pform-consent {
    will-change: transform, opacity;
}
.pform-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.55;
}
.pform-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.pf-check {
    width: 18px; height: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.3);
    display: inline-block;
    position: relative;
    transition: border-color .25s ease, background .25s ease;
    margin-top: 1px;
}
.pform-consent input:checked + .pf-check {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}
.pform-consent input:checked + .pf-check::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 6px; height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.pform-consent a { color: var(--accent-gold); text-decoration: underline; }
.pform-consent.is-invalid .pf-check {
    border-color: rgba(220, 80, 80, .85);
    box-shadow: 0 0 10px rgba(220, 80, 80, .35);
    animation: pf-shake .35s ease;
}
.pform-consent.is-invalid label { color: #e88; }
.pform-field.is-invalid {
    animation: pf-shake .35s ease;
}
.pform-field-file.is-invalid .pf-file {
    border-color: rgba(220, 80, 80, .7);
    background: rgba(220, 80, 80, .05);
}
@keyframes pf-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Submit */
.pform-submit {
    margin-top: 20px;
    will-change: transform, opacity;
}
.pform-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 42px;
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .35s ease;
}
.pform-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    z-index: 0;
}
.pform-btn:hover::before { transform: translateY(0); }
.pform-btn:hover { color: var(--bg-dark); }
.pform-btn .pb-text,
.pform-btn .pb-arrow { position: relative; z-index: 1; }
.pform-btn .pb-arrow svg { width: 28px; height: 12px; display: block; transition: transform .35s ease; }
.pform-btn:hover .pb-arrow svg { transform: translateX(5px); }
.pform-submit-note {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .pstage { grid-template-columns: 1fr 0.8fr; }
    .pstage-hero { padding: 0 40px 12vh 60px; }
    .pform-shell { padding: 0 40px 0 60px; grid-template-columns: 200px 1fr; gap: 40px; }
    .phero-rail { left: 24px; }
    .phero-tag  { right: 24px; }
}
@media (max-width: 960px) {
    .pstage { grid-template-columns: 1fr; }
    .pstage-right { order: -1; height: 60vh; }
    .pstage-sticky { position: relative; height: 60vh; }
    /* Header je fixed na vrhu — pomeri Miss figuru ispod njega da kruna ne bude zaklonjena */
    .pstage-right .phero-image-main { top: var(--header-h); }
    .pstage-hero { min-height: auto; padding: 60px 32px 80px; }
    .phero-title { font-size: clamp(40px, 11vw, 72px); }
    .pform-shell { grid-template-columns: 1fr; gap: 50px; padding: 0 32px; }
    .pform-side-sticky { position: static; }
    .pform-counter { font-size: 80px; }
    .phero-rail, .phero-tag { display: none; }
}
@media (max-width: 720px) {
    .pstage-right { height: 50vh; }
    .pstage-sticky { height: 50vh; }
    .pstage-hero { padding: 40px 24px 60px; }
    .pform-counter { font-size: 64px; }
    .pc-sep, .pc-total { font-size: 44px; }
    .pform-section { padding: 60px 0; }
    .pform-shell { padding: 0 20px; }
    .pf-input { font-size: 22px; }
    .pf-file-text { font-size: 16px; }
}

/* ============================================
   MOBILE — comprehensive overrides for tablets & phones
   ============================================ */

/* On touch devices: particles add no interactivity (no hover) and
   cost battery — hide them entirely below 900px. The dark gold
   typography carries the design without the canvas decoration. */
@media (max-width: 900px) {
    .legacy-particles,
    .hero-particles,
    .phero-particles { display: none !important; }
}

@media (max-width: 900px) {
    /* Header — tighter spacing */
    .nav-wrap { padding: 0 20px; gap: 12px; }
    .logo-img { height: 40px; }

    /* Section paddings — reduce breathing room */
    .section { padding: 70px 0; }
    .section-light.legacy-section { padding: 80px 0 60px; }
    .about-section { padding: 80px 0 !important; }
    .merch-band { padding: 50px 0 80px; }
    .about-section:has(+ .merch-band) { padding-bottom: 50px !important; }

    /* Section heading sizes (mobile-tuned) */
    .section-title { font-size: clamp(28px, 7.5vw, 44px); }
    .legacy-years { font-size: clamp(30px, 8.5vw, 50px); }
    .merch-title { font-size: clamp(32px, 9vw, 56px); }

    /* HOME hero — shorter pinned area, less padding */
    .hero-scroll-wrap { height: 240vh; }
    .hero-rail, .hero-tag { display: none; }
    .hero-corner { width: 18px; height: 18px; }
    .hero-corner.tl, .hero-corner.bl { left: 18px; }
    .hero-corner.tr, .hero-corner.br { right: 18px; }
    .panel-main { padding: 0 24px 14vh; }
    .panel-program { right: 24px; left: 24px; max-width: none; text-align: left; }
    .panel-program .hero-eyebrow { justify-content: flex-start; }
    .panel-cta { padding: 0 24px; }
    .hero-title { font-size: clamp(40px, 10vw, 64px); }
    .hero-title.medium { font-size: clamp(32px, 8vw, 52px); }
    .hero-sub { font-size: 14px; }
    .hero-steps { align-items: flex-start; }
    .hero-steps li { justify-content: flex-start; gap: 12px; }

    /* PRIJAVA stage — stack figure above content */
    .pstage { display: flex; flex-direction: column; }
    .pstage-right {
        position: relative;
        order: -1;
        width: 100%;
        height: 50vh;
    }
    .pstage-sticky { position: relative; height: 50vh; width: 100%; }
    .pstage-left { padding-right: 0; perspective: none; }
    .pstage-hero { padding: 40px 24px 60px; min-height: auto; }
    .phero-content { max-width: none; }
    .phero-title { font-size: clamp(38px, 10vw, 60px) !important; }
    .phero-sub { font-size: 14px; }
    .phero-cue {
        display: flex;
        position: static;
        transform: none;
        margin: 36px 0 0;
        align-self: center;
    }

    /* Mission blocks — tighter */
    .mission-blocks { gap: 60px; padding: 20px 24px; }
    .mb-title { font-size: clamp(28px, 8vw, 44px); }
    .mb-text { font-size: 14px; }

    /* Pillars — single column */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
    }
    .pillar-title { font-size: clamp(24px, 7vw, 32px); }

    /* Form (prijava) — fluid */
    .pform-shell { padding: 0 24px; grid-template-columns: 1fr; gap: 40px; }
    .pform-side-sticky { position: static; }
    .pform-head { padding-bottom: 24px; margin-bottom: 30px; }
    .pform-head-top { flex-direction: column; align-items: flex-start; gap: 18px; }
    .pform-counter { font-size: 56px; }
    .pc-sep, .pc-total { font-size: 36px; }
    .pform-checklist { gap: 8px 14px; }
    .pf-input { font-size: 18px; padding: 12px 0; }
    .pf-num { font-size: 16px; min-width: 22px; }

    /* Form (kontakt) */
    .kform-shell { padding: 0 24px; }
    .kform-head { margin-bottom: 40px; }
    .kform-title { font-size: clamp(28px, 8vw, 44px); }

    /* Kontakt channels — single column */
    .kch-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 24px;
    }
    .kch-card { padding: 30px 26px 50px; }
    .kch-arrow { bottom: 20px; right: 22px; font-size: 16px; }

    /* Showcase carousel — larger active card, cleaner mobile layout */
    .showcase-wrap { height: 600vh; }
    .showcase-stage { width: 280px; height: 400px; }
    .showcase-info {
        position: absolute;
        bottom: 90px;
        top: auto;
        right: 50%;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        max-width: 300px;
    }
    .info-separator { margin: 0 auto 14px; }
    .showcase-counter { display: none; }
    .showcase-header { top: 40px; padding: 0 24px; }
    .showcase-title { font-size: clamp(22px, 6vw, 32px); }
    .showcase-progress { bottom: 30px; }
    .prog-bar { width: 140px; }
    .info-year { font-size: clamp(60px, 16vw, 80px); }
    .info-name { font-size: clamp(20px, 5vw, 24px); }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* Particles a bit narrower so they don't crowd content on mobile */
    .legacy-particles { width: 50%; }
}

/* Small phones */
@media (max-width: 520px) {
    .nav-wrap { padding: 0 16px; }
    .logo-img { height: 36px; }
    .section { padding: 56px 0; }

    .hero-title { font-size: clamp(34px, 11vw, 52px); }
    .legacy-years { font-size: clamp(26px, 11vw, 42px); }
    .section-title { font-size: clamp(24px, 9vw, 38px); }
    .mb-title { font-size: clamp(24px, 9vw, 38px); }
    .pillar-title { font-size: clamp(22px, 8vw, 30px); }
    .merch-title { font-size: clamp(28px, 11vw, 46px); }
    .kform-title { font-size: clamp(26px, 9vw, 40px); }
    .phero-title { font-size: clamp(34px, 11vw, 52px) !important; }

    /* Kontakt channels — even tighter */
    .kch-card { padding: 26px 22px 44px; }
    .kch-title { font-size: 22px; }

    /* Forms — tighter padding */
    .pform-shell { padding: 0 18px; }
    .kform-shell { padding: 0 18px; }
    .pillars-grid { padding: 0 18px; gap: 40px; }
    .mission-blocks { padding: 16px 18px; gap: 50px; }
    .pstage-hero { padding: 30px 18px 50px; }

    /* Showcase: focus on active card, hide neighbors mostly */
    .showcase-stage { width: 240px; height: 350px; }
    .info-year { font-size: 60px; }
    .info-name { font-size: 18px; }
    .showcase-info { bottom: 70px; max-width: 260px; }

    /* Buttons */
    .pform-btn, .merch-cta, .hero-cta {
        padding: 16px 28px;
        font-size: 10px;
        letter-spacing: .25em;
    }
}

/* ============================================
   Scene navigation arrows — mobile only (hero + showcase)
   ============================================ */
.scene-nav {
    display: none;
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    gap: 16px;
    z-index: 60;
    pointer-events: auto;
}
.scene-nav-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(8, 10, 18, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 199, 122, 0.35);
    color: #f0d9a3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, border-color .25s ease, transform .2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
}
.scene-nav-btn:active {
    transform: scale(0.92);
    background: rgba(232, 199, 122, 0.2);
    border-color: rgba(232, 199, 122, 0.7);
}
.scene-nav-btn svg { width: 20px; height: 20px; }

/* Showcase nav — strelice na bocnim stranama da ne prekrivaju info panel */
.showcase-pin .scene-nav {
    position: absolute;
    inset: 0;
    bottom: 0;
    left: 0;
    transform: none;
    display: none;
    pointer-events: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    gap: 0;
}
.showcase-pin .scene-nav .scene-nav-btn { pointer-events: auto; }

@media (max-width: 600px) {
    .scene-nav { display: flex; }
    .showcase-pin .scene-nav { display: flex; }
    /* Hide redundant scroll cue when arrows appear */
    .hero-scroll-cue { display: none; }
}
