/* Outfit variable font — self-hosted */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/outfit-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                   U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                   U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('../fonts/outfit-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                   U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                   U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c040e0;
    --primary-dark: #46254f;
    --cyan: #00C9B1;
    --dark: #0d0d14;
    --dark2: #141420;
    --dark3: #1c1c2e;
    --text: #f0f0f8;
    --muted: #cac2cf;
    --accent: #E8006A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 2.5rem;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
    background: rgba(13, 13, 20, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

/* NAV LOGO — hidden until scrolled */
.nav-logo-circle {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s ease, transform 0.4s ease;
    flex-shrink: 0;
    overflow: hidden;
    cursor: pointer;
}

.nav-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-logo-circle i {
    font-size: 1rem;
    color: var(--primary);
}

nav.scrolled .nav-logo-circle {
    opacity: 1;
    transform: scale(1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lang {
    display: flex;
    gap: 0.4rem;
}

.lang button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.22rem 0.55rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.lang button.active {
    border-color: var(--cyan);
    color: var(--cyan);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

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

/* OFFCANVAS */
.offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(300px, 100dvw);
    background: #12121e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.offcanvas.open {
    transform: translateX(0);
}

.offcanvas-head {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.2rem 1.5rem;
    z-index: 1;
}

.offcanvas-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.2s;
    padding: 0.2rem 0.4rem;
    font-family: sans-serif;
}

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

.offcanvas-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2rem 2rem;
}

.offcanvas-brand {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.offcanvas-brand img {
    display: block;
    height: 64px;
    width: auto;
    transform: translateZ(0);
    image-rendering: auto;
    margin-left: auto;
}

.offcanvas-brand .name {
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.offcanvas-brand .name span {
    color: var(--primary);
}

.offcanvas-brand .sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--cyan);
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.offcanvas-links {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin-top: 0;
}

.offcanvas-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.2s;
}

.offcanvas-links a:hover {
    color: var(--cyan);
}

.offcanvas-links .arrow {
    opacity: 0.35;
    font-size: 0.85rem;
}

.offcanvas-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.offcanvas-lang {
    display: flex;
    gap: 0.5rem;
}

.offcanvas-lang button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
}

.offcanvas-lang button.active {
    border-color: var(--cyan);
    color: var(--cyan);
}

.offcanvas-ig {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.offcanvas-ig:hover {
    color: var(--accent);
}

/* SITE BACKGROUND — fixed layer behind everything */
#site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    overflow: clip; /* iOS Safari: avoids scroll-container stacking-context bug with position:fixed */
    pointer-events: none;
}

main, footer {
    position: relative;
    z-index: 1;
}

.bg-blobs {
    position: absolute;
    inset: 0;
}

.bg-blobs::before,
.bg-blobs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.bg-blobs::before {
    width: 95vmax;
    height: 95vmax;
    background: radial-gradient(circle at center, rgba(192, 64, 224, 0.5) 0%, transparent 65%);
    top: -15%;
    left: -15%;
    filter: blur(60px);
    animation: blobDrift1 20s ease-in-out infinite alternate;
}

.bg-blobs::after {
    width: 75vmax;
    height: 60vmax;
    background: radial-gradient(circle at center, rgba(0, 201, 177, 0.38) 0%, transparent 65%);
    bottom: -20%;
    right: -10%;
    filter: blur(50px);
    animation: blobDrift2 26s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
    0%   { transform: translate(0,      0)     scale(1); }
    33%  { transform: translate(25vw,   15vh)  scale(1.15); }
    66%  { transform: translate(-10vw,  28vh)  scale(0.88); }
    100% { transform: translate(18vw,   35vh)  scale(1.2); }
}

@keyframes blobDrift2 {
    0%   { transform: translate(0,      0)     scale(1); }
    33%  { transform: translate(-20vw, -18vh)  scale(1.15); }
    66%  { transform: translate(15vw,  -30vh)  scale(0.85); }
    100% { transform: translate(-25vw, -15vh)  scale(1.18); }
}

.bg-tint {
    position: absolute;
    inset: 0;
    background: rgba(55, 32, 4, 0.6);
    opacity: 0;
    pointer-events: none;
}

#bg-leopard {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    will-change: opacity;
}

/* HERO */
#hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}


.hero-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2.5px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hero-circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 201, 177, 0.2);
    animation: pulse 3s ease-in-out infinite 0.5s;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.04);
    }
}

.hero-circle i {
    font-size: 3rem;
    color: var(--primary);
}

#hero h1,
#hero .hero-desc,
#hero .hero-cta {
    position: relative;
    z-index: 1;
}

#hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    width: 100%;
}

#hero h1 .top {
    display: block;
    color: var(--text);
}

#hero h1 .voice {
    display: block;
    color: var(--primary);
}

p.hero-sub {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0.8rem 0;
    line-height: 1.5;
}

.hero-desc p:not(.hero-sub){
    line-height: 1.1;
    font-size: .75em;
}

.hero-desc {
    margin: 2rem auto 0;
    font-size: 1.5rem;
    color: var(--muted);
    font-weight: 300;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.hero-events {
    margin-top: 2rem;
    max-width: 360px;
    min-width: 290px;
    width: 100%;
}

.events {
    margin-top: 2rem;
}

.events-title {
    text-align: left;
    padding: .25rem 0 .5rem;
    font-size: 0.685rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}
.hero-events .events-title {
    margin-bottom: 0;
}

/* Scroll-down indicator — self-contained loop */
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 40px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    opacity: 1;
    transition: color .3s, opacity .45s ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
    color: var(--primary);
}

.hero-scroll__line {
    width: 1px;
    height: 24px;
    background: currentColor;
    transform-origin: top center;
    transform: translateY(0) scaleY(0);
    animation: hero-line 3s ease-in-out infinite;
}

.hero-scroll__chevron {
    margin-top: -7px;
    opacity: 0;
    transform: translateY(-4px);
    animation: hero-chevron 3s ease-in-out infinite;
}

/* Line and chevron finish forming together, then bounce as one arrow and fade */
@keyframes hero-line {
    0%   { transform: translateY(0) scaleY(0);  opacity: 0; }
    12%  { opacity: 1; }
    30%  { transform: translateY(0) scaleY(1);  opacity: 1; }
    45%  { transform: translateY(5px) scaleY(1); }
    62%  { transform: translateY(0) scaleY(1); }
    80%  { transform: translateY(0) scaleY(1);  opacity: 1; }
    100% { transform: translateY(8px) scaleY(1); opacity: 0; }
}

@keyframes hero-chevron {
    0%, 12% { opacity: 0; transform: translateY(-4px); }
    30%     { opacity: 1; transform: translateY(0); }
    45%     { transform: translateY(5px); }
    62%     { transform: translateY(0); }
    80%     { opacity: 1; transform: translateY(0); }
    100%    { opacity: 0; transform: translateY(8px); }
}

/* On scroll: the whole thing fades away (reappears back at the top) */
.hero-scroll.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll__line { transform: scaleY(1); animation: none; }
    .hero-scroll__chevron { opacity: 1; transform: none; animation: none; }
}

.event-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    border-top: 1px solid var(--primary);
    padding: .5rem 0;
}

.event-item:last-child {
    border-bottom: 1px solid var(--primary);
}

.event-datetime {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.15rem;
    width: 4rem;
    flex-shrink: 0;
}

.event-day {
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: #e8ddf0;
    line-height: 1.2;
}

.event-hour {
    font-weight: 200;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.2;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.event-venue {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    line-height: 1.1;
    padding-bottom: .35rem;
}

.event-sub {
    font-size: 0.72rem;
    color: #FFFFFF;
    line-height: 1.3;
}
.event-context {
    color: #FFFFFF;
    font-style: italic;
    color: var(--muted);
    padding-left: .35rem;
}
.event-context:before {
    content: '·';
    position: relative;
    margin-right: .5rem;
}

.event-format {
    font-size: 0.68rem;
    font-style: italic;
    font-weight: 200;
    color: var(--muted);
}

/* Concerts list — video section */
.concerts-list {
    margin-top: 2.5rem;
}

.concerts-list__title {
    font-size: 0.685rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.concerts-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concert-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid #cd9fea33;
    font-size: 0.78rem;
    color: #cac2cf;
}

.concert-date {
    font-weight: 700;
    color: var(--primary);
    min-width: 5rem;
}

.concert-hour {
    color: var(--muted);
}

.concert-venue {
    flex: 1;
    font-weight: 600;
    color: #e8ddf0;
}

.concert-context {
    color: var(--muted);
    font-style: italic;
}

.concert-format {
    font-size: 0.68rem;
    font-weight: 200;
    font-style: italic;
    color: var(--muted);
}

.btn {
    padding: 0.8rem 2.2rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: #ff2080;
    transform: translateY(-1px);
}

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

.btn-outline:hover {
    background: rgba(0, 201, 177, 0.1);
    transform: translateY(-1px);
}

/* SECTIONS */
section {
    padding: 6rem 2.5rem;
}

.inner {
    max-width: 960px;
    margin: 0 auto;
}


.section-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.divider {
    width: 40px;
    height: 3px;
    background: var(--cyan);
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

/* ABOUT */
#about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p:not(.section-tag) {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: .95rem;
    font-size: 0.95rem;
}

.about-img {
    background: var(--dark3);
    border-radius: 10px;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    color: var(--muted);
    font-size: 0.78rem;
    gap: 0.7rem;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-img i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.12);
}

.directors {
    margin-top: 3.5rem;
}

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

.director-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 2rem;
}

.director-card--featured {
    background: var(--primary-dark);
    border-color: var(--primary);
    box-shadow: 0 0 28px rgba(232, 0, 106, 0.15);
}

.director-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.director-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    flex-shrink: 0;
}
.director-logo.rakel{
    width: 74px;
}

.director-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.director-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.director-card p:not(.director-role) {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
}

.director-card p {
    margin-bottom: .45rem;
}

.director-card p.lead {
    font-size: 1rem;
}

/* VIDEO */
#video {
    background: transparent;
}

.video-wrap {
    /*max-width: 760px;*/
    margin: 0 auto;
}

.video-yt-link {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
}

.btn--yt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    justify-content: center;
    width: auto !important;
}

.video-placeholder {
    background: var(--dark3);
    border-radius: 10px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.video-placeholder video,
.video-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    color: var(--primary);
    z-index: 1;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

.play-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* OFERIM */
.oferim-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-top: 2rem;
    max-width: 680px;
}

.oferim-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 991.98px){
    .oferim-layout {
        gap: 2rem;
    }
}

.oferim-col-formats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.oferim-col-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.oferim-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.75rem;
}

.oferim-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.oferim-card p:not(.oferim-card-label) {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--muted);
}

.oferim-block {
    margin-top: 0;
}

.oferim-block-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.25rem;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag-item {
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s;
}

.tag-item:hover {
    border-color: var(--primary);
    color: var(--text);
}

.venues-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.venues-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--muted);
}

.venues-list li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.8;
    margin-top: 0.2em;
}

.oferim-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.oferim-cta-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.oferim-cta-link:hover {
    color: var(--text);
}

.oferim-cta-note {
    width: 100%;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.25rem;
}

@media (max-width: 767.98px) {
    .oferim-layout {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 768px) {
    .oferim-cta {
        max-width: calc(50% - 1rem);
    }
}

/* MOBILE: disable blob CSS animations — too GPU-intensive for mid-range devices
   and filter+animation inside position:fixed breaks iOS Safari repaint */
@media (max-width: 1023px) {
    .bg-blobs::before,
    .bg-blobs::after {
        animation: none;
        will-change: auto;
    }
    .bg-blobs::before {
        filter: blur(40px);
    }
    .bg-blobs::after {
        filter: blur(35px);
    }
}

/* While the YouTube video is on screen, freeze ambient background motion so the
   video has the full GPU/compositor (JS pauses the leopard ticker in parallel) */
body.is-video-playing .bg-blobs::before,
body.is-video-playing .bg-blobs::after,
body.is-video-playing .hero-circle,
body.is-video-playing .hero-circle::after {
    animation-play-state: paused;
}

/* Respect the OS "reduce motion" setting — kill ambient animations entirely
   (JS handles the leopard ticker and gallery blur via prefersReduced) */
@media (prefers-reduced-motion: reduce) {
    .bg-blobs::before,
    .bg-blobs::after,
    .hero-circle,
    .hero-circle::after {
        animation: none;
    }
}

/* GALLERY — sticky para que la card de contacto suba encima */
#gallery {
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 5;
    min-height: 100vh;
    overflow: hidden;
    max-width: 100dvw;
    /* uses default section padding: 6rem 2.5rem — same as all other sections */
}

#gallerySlider {
    margin-top: 2rem;
    margin-right: -2.5rem; /* break out of section's right padding only */
}

@media (min-width: 992px) {
    /* Above 1040px .inner has auto-margins: shift slider to match */
    #gallerySlider {
        padding-left: calc((100vw - 1040px) / 2);
    }
}

/* Peek of next slide. padding-right mirrors the left indent for symmetry. */
#gallerySlider .slick-list {
    overflow: visible !important;
    padding-right: 2.5rem;
}

@media (min-width: 992px) {
    #gallerySlider .slick-list {
        padding-right: calc((100vw - 1040px) / 2 + 2.5rem);
    }
}

#gallerySlider .slick-list,
#gallerySlider .slick-track {
    height: auto !important;
}

.gallery-item {
    /* Definite width so Slick's variableWidth can measure each slide. Shrinks
       on narrow screens, capped at 550px, reserving room for left pad + peek. */
    width: clamp(240px, calc(100dvw - 5rem), 550px);
    border-radius: 8px;
    aspect-ratio: 5/3;
    overflow: hidden;
    margin-right: 1rem;
    border: 1px dashed #c040e059;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.4s ease;
}

.slick-current.gallery-item img {
    filter: grayscale(0%);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Slick dots — styled as pill indicators */
#galleryDots .slick-dots {
    list-style: none;
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0;
    margin: 1.5rem 0 0;
}

#galleryDots .slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#galleryDots .slick-dots li.slick-active button {
    background: var(--primary);
    width: 20px;
}

/* CONTACT — card que sube sobre la galería */
#contact {
    background: #080808;
    border-radius: 28px 28px 0 0;
    position: relative;
    z-index: 10;
    padding: 5rem 2.5rem 0;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    margin: 0 2.5rem;

    @media (max-width: 991.98px) {
        margin: 0 1rem;
    }
}

.contact-backdrop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
}

.contact-intro {
    color: var(--muted);
    font-weight: 300;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-intro--note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1.25rem;
}

.contact-join {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1rem;
}

.contact-form-card {
    margin-top: 3rem;
}

.contact-form-card .inner {
    max-width: 600px;
}

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

/* Neutralitzar wrappers generats pel plugin Form de Grav */
#contacte-wrapper.form-wrapper {
    display: contents;
}
.contact-form .form-field {
    margin: 0;
    padding: 0;
}
.contact-form .form-data,
.contact-form .form-input-wrapper {
    margin: 0;
    padding: 0;
}
.contact-form .buttons {
    margin: 0;
    padding: 0;
}
.contact-form .form-errors {
    color: var(--pink);
    font-size: 0.82rem;
    margin-top: 0.3rem;
}
.contact-form .notices {
    padding: 0.8rem 1rem;
    background: rgba(0, 201, 177, 0.12);
    border: 1px solid var(--cyan);
    border-radius: 5px;
    color: var(--cyan);
    font-size: 0.88rem;
}

.contact-form.form--sending {
    opacity: 0.5 !important;
    pointer-events: none !important;
    transition: opacity 0.2s;
}

#contact-feedback {
    display: none;
    margin-top: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
}
#contact-feedback.contact-feedback--ok {
    display: block;
    background: rgba(0, 201, 177, 0.15);
    border: 1px solid var(--cyan);
    color: var(--cyan);
}
#contact-feedback.contact-feedback--err {
    display: block;
    background: rgba(255, 60, 100, 0.12);
    border: 1px solid var(--pink);
    color: var(--pink);
}

.field {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 0.8rem 1rem;
    color: var(--text);
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    transition: border-color 0.2s;
}

.field::placeholder {
    color: var(--muted);
}

.field:focus {
    outline: none;
    border-color: var(--cyan);
}

textarea.field {
    min-height: 130px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    padding-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-left: 0.5rem;
    opacity: .9;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cyan);
}

.contact-icon i {
    font-size: 1.15rem;
}
a.ig {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
}

a.ig:hover {
    color: var(--accent);
}

.contact-item a[href^="tel:"] {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.contact-item a[href^="tel:"]:hover {
    color: var(--accent);
}

/* FORM FEEDBACK */
.form-msg {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    border-radius: 5px;
    letter-spacing: 0.03em;
}

.form-msg--success {
    background: rgba(0, 201, 177, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(0, 201, 177, 0.3);
}

.form-msg--error {
    background: rgba(232, 0, 106, 0.1);
    color: var(--accent);
    border: 1px solid rgba(232, 0, 106, 0.3);
}

/* FOOTER — merges seamlessly with contact card */
footer {
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
    padding: 2rem 1.5rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}

footer p { margin: 0; }

.footer-credit {
    opacity: 0.7;
    font-size: .65rem;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
    font-weight: 700;
}

.footer-credit a:hover {
    color: var(--primary);
}

/* LANG */
[data-lang="ca"] {
    display: none;
}

.lang-ca [data-lang="ca"] {
    display: revert;
}

.lang-ca [data-lang="es"] {
    display: none;
}

/* RESPONSIVE — breakpoints Bootstrap 5 */

/* < lg (991.98px) */
@media (max-width: 991.98px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .about-grid,
    .directors-grid,
    .contact-grid,
    .contact-backdrop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-card .inner {
        max-width: 100%;
    }

    section {
        padding: 4rem 1.5rem;
    }

    #contact {
        padding: 3rem 1.5rem 0;
        min-height: 100vh;
    }

    .contact-details {
        gap: 1.2rem;
    }

    #hero h1 img {
        width: 100%;
        max-width: 320px;
        height: auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-backdrop-grid {
        padding-bottom: 1.5rem
    }
}

/* < sm (575.98px) */
@media (max-width: 575.98px) {
    nav {
        padding: .5rem 1.5rem;
    }
    #hero {
        padding-bottom: 5rem;
    }
    #hero h1 {
        padding-top: 1.5rem;
    }
    #hero h1 img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .hero-events {
        margin-top: 1rem;
    }

    .hero-desc {
        margin: 1rem auto 0px;
    }

    .hero-cta {
        margin-top: 1.5rem;
    }

    .hero-cta .btn{
        font-size: .6rem;
    }
}
@media (max-width: 400px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
}

/* ─── WhatsApp floating button ──────────────────────────────── */
.wa-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 32px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: transparent; /*#32cd32;*/
    color: var(--muted);
    text-decoration: none;
    transition: all .3s;

    @media (max-width: 575.98px){
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
.wa-btn svg {
    display: block;
    /*filter: drop-shadow(0 0 8px #32cd32);*/
    width: 50px;
    height: 50px;
}
.wa-btn:hover,
.wa-btn:focus,
.wa-btn:active {
    transform: scale(1.1);
    transform-origin: center;
    text-decoration: none;
}

/* ─── LIGHTBOX ─────────────────────────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    cursor: zoom-out;
}

.lb-figure {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(90vw, 1200px);
}

.lb-img {
    max-width: min(90vw, 1200px);
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    transition: opacity 0.2s ease;
}

.lb-img.is-loading { opacity: 0; }

.lb-caption {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.lb-counter {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
}

.lb-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    z-index: 2;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0.4rem 0.6rem;
    font-family: sans-serif;
}

.lb-close:hover { color: #fff; }

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

.lb-prev:hover,
.lb-next:hover { background: rgba(255, 255, 255, 0.18); }

.lb-prev:disabled,
.lb-next:disabled { opacity: 0.2; cursor: default; }

@media (max-width: 575.98px) {
    .lb-prev { left: 0.5rem; }
    .lb-next { right: 0.5rem; }
}
