/* ============================================================
   CREATIS — styles.css
   Matcha / olive portfolio for music producer Creatis
   Organic, warm, vibey — not robotic
   ============================================================ */

:root {
    --bg: #0a0b08;
    --bg-elev: #111210;
    --bg-card: #151613;
    --bg-card-hover: #1a1c18;
    --line: rgba(138, 177, 125, 0.10);
    --line-strong: rgba(138, 177, 125, 0.22);
    --text: #eae8e1;
    --text-dim: #908e85;
    --accent: #8ab17d;
    --accent-2: #6a8f5e;
    --accent-light: #b5d4a8;
    --accent-glow: rgba(138, 177, 125, 0.25);
    --warm: #c4a97d;
    --radius: 16px;
    --radius-lg: 24px;
    --maxw: 1240px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

html.is-loading {
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ---- Animated ambient background ---- */
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background:
        radial-gradient(ellipse 80% 60% at 15% 20%, rgba(138, 177, 125, 0.07), transparent),
        radial-gradient(ellipse 60% 80% at 85% 75%, rgba(106, 143, 94, 0.06), transparent),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(196, 169, 125, 0.04), transparent);
    animation: ambientDrift 20s ease-in-out infinite alternate;
}

body::after {
    background:
        radial-gradient(ellipse 70% 50% at 70% 10%, rgba(138, 177, 125, 0.05), transparent),
        radial-gradient(ellipse 40% 70% at 20% 80%, rgba(181, 212, 168, 0.04), transparent);
    animation: ambientDrift2 25s ease-in-out infinite alternate;
}

/* Film grain overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

@keyframes ambientDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.05); }
    100% { transform: translate(-20px, 20px) scale(1.02); }
}

@keyframes ambientDrift2 {
    0%   { transform: translate(0, 0) scale(1.02); }
    50%  { transform: translate(-30px, 40px) scale(1); }
    100% { transform: translate(20px, -20px) scale(1.04); }
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    background: rgba(10, 11, 8, 0.5);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.is-scrolled {
    background: rgba(10, 11, 8, 0.88);
    border-bottom-color: var(--line);
}

.nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
}

.logo__mark {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: filter 0.3s var(--ease);
}

.logo:hover .logo__mark {
    filter: drop-shadow(0 0 14px var(--accent-glow));
}

.logo__text {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.14em;
    color: var(--text);
}

.nav__links {
    display: flex;
    gap: 36px;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
    position: relative;
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: width 0.4s var(--ease);
}

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

.nav__links a:hover::after {
    width: 100%;
}

.lang-select {
    position: relative;
    flex-shrink: 0;
}

.lang-select__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
    white-space: nowrap;
}

.lang-select__btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-select__btn svg {
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.lang-select.is-open .lang-select__btn {
    border-color: var(--accent);
    color: var(--accent);
}

.lang-select.is-open .lang-select__btn svg {
    transform: rotate(180deg);
}

.lang-select__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 6px;
    min-width: 165px;
    max-height: 340px;
    overflow-y: auto;
    z-index: 150;
    list-style: none;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(138,177,125,0.06);
}

.lang-select.is-open .lang-select__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-select__dropdown li {
    padding: 9px 14px;
    font-size: 13px;
    color: var(--text-dim);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
    letter-spacing: 0.01em;
}

.lang-select__dropdown li:hover {
    background: rgba(138, 177, 125, 0.08);
    color: var(--text);
}

.lang-select__dropdown li.is-active {
    color: var(--accent);
    font-weight: 600;
}

/* Mobile lang select */
.nav__mobile__lang-select {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 18px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dim);
    margin-top: 32px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    transition: border-color 0.3s var(--ease);
}

.nav__mobile__lang-select:focus {
    border-color: var(--accent);
}

.nav__mobile__lang-select option {
    background: var(--bg-card);
    color: var(--text);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #0a0b08;
    box-shadow: 0 8px 30px -12px var(--accent-glow);
}

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line-strong);
}

.btn--ghost:hover {
    background: rgba(138, 177, 125, 0.08);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 11px;
}

.btn--lg {
    padding: 18px 38px;
    font-size: 15px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 28px 130px;
    text-align: center;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.25;
    filter: grayscale(0.5) contrast(1.05) brightness(0.9);
}

/* Hero background photo (used when no video) */
.hero__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
    opacity: 0.22;
    filter: grayscale(0.6) contrast(1.1) brightness(0.85);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(138, 177, 125, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 100% 50% at 50% 100%, var(--bg) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 11, 8, 0.65) 0%, rgba(10, 11, 8, 0.3) 45%, var(--bg) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.hero__eyebrow {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
    animation: fadeDown 0.9s var(--ease) 0.1s both;
}

.hero__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.hero__title span {
    display: block;
    animation: fadeUp 1.1s var(--ease) 0.3s both;
}

.hero__title--accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 40%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation-delay: 0.5s !important;
}

.hero__sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 42px;
    line-height: 1.7;
    animation: fadeUp 1.1s var(--ease) 0.7s both;
}

.hero__genres {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeUp 1.1s var(--ease) 0.85s both;
}

.hero__genres span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 14px;
    opacity: 0.7;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 1.1s var(--ease) 0.9s both;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: scrollLine 2.5s var(--ease) infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION GENERICS
   ============================================================ */
.section {
    padding: 150px 0;
    position: relative;
}

.section__head {
    max-width: 720px;
    margin-bottom: 70px;
}

.section__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    padding-left: 42px;
    position: relative;
}

.section__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--accent-2);
}

.section__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section__sub {
    font-size: 17px;
    color: var(--text-dim);
    max-width: 540px;
    line-height: 1.7;
}

/* ============================================================
   ABOUT — fullwidth gallery + floating text
   ============================================================ */
.about {
    padding: 0;
    position: relative;
}

.about__gallery {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr;
    gap: 6px;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
}

.about__gallery-img {
    overflow: hidden;
    position: relative;
}

.about__gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.05) brightness(0.7);
    transition: filter 0.8s var(--ease), transform 1s var(--ease);
}

.about__gallery-img:hover img {
    filter: grayscale(0.15) contrast(1.05) brightness(0.85);
    transform: scale(1.04);
}

.about__intro {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 8, 0.85) 50%, var(--bg) 100%);
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.about__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--text);
}

.about__tagline {
    font-size: clamp(14px, 2vw, 18px);
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

.about__text p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 22px;
    max-width: 540px;
    line-height: 1.75;
}

.about__text p:first-of-type {
    color: var(--text);
    font-size: 19px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.about__stats li {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about__stats strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.about__stats span {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================================
   BEATS
   ============================================================ */
.beats__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.beats__filter-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-dim);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.beats__filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.beats__filter-btn.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0b08;
}

.beat.is-hidden {
    display: none;
}

.beats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.beat {
    --hue: 100;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
    position: relative;
}

.beat.is-hovered {
    transform: translateY(-6px) scale(1.02);
    border-color: hsla(var(--hue), 35%, 55%, 0.5);
    background: var(--bg-card-hover);
    box-shadow: 0 28px 60px -24px hsla(var(--hue), 50%, 40%, 0.25);
}

.beat__cover {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #090a08;
}

.beat__cover-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 150px;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at 30% 30%, hsla(var(--hue), 30%, 30%, 0.5), transparent 60%),
        radial-gradient(circle at 70% 70%, hsla(var(--hue), 25%, 20%, 0.4), transparent 65%),
        linear-gradient(135deg, #090a08 0%, #111210 100%);
    pointer-events: none;
}

.beat__cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.65) contrast(1.09) saturate(1.35);
    pointer-events: none;
}

/* Glow overlay – fades in on hover (Safari-safe opacity transition) */
.beat__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 40%, hsla(var(--hue), 60%, 70%, 0.22) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.beat.is-hovered .beat__cover::after {
    opacity: 1;
}

.beat__play {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0b08;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 10px 30px -10px var(--accent-glow);
    z-index: 2;
}

.beat__play:hover {
    transform: scale(1.1);
    background: var(--accent-light);
    box-shadow: 0 14px 40px -10px var(--accent-glow);
}

.beat__play svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.beat__play .icon-pause { display: none; }
.beat__play.is-playing .icon-play { display: none; }
.beat__play.is-playing .icon-pause { display: block; }

.beat__info {
    padding: 22px 24px 26px;
}

.beat__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.beat__meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.beat__waveform {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    margin-bottom: 22px;
}

.beat__waveform span {
    flex: 1;
    background: var(--line-strong);
    border-radius: 2px;
    transition: background 0.3s var(--ease), height 0.5s var(--ease);
}

.beat__waveform span:nth-child(1)  { height: 30%; }
.beat__waveform span:nth-child(2)  { height: 55%; }
.beat__waveform span:nth-child(3)  { height: 80%; }
.beat__waveform span:nth-child(4)  { height: 45%; }
.beat__waveform span:nth-child(5)  { height: 70%; }
.beat__waveform span:nth-child(6)  { height: 60%; }
.beat__waveform span:nth-child(7)  { height: 90%; }
.beat__waveform span:nth-child(8)  { height: 40%; }
.beat__waveform span:nth-child(9)  { height: 65%; }
.beat__waveform span:nth-child(10) { height: 85%; }
.beat__waveform span:nth-child(11) { height: 50%; }
.beat__waveform span:nth-child(12) { height: 75%; }
.beat__waveform span:nth-child(13) { height: 35%; }
.beat__waveform span:nth-child(14) { height: 60%; }
.beat__waveform span:nth-child(15) { height: 95%; }
.beat__waveform span:nth-child(16) { height: 55%; }
.beat__waveform span:nth-child(17) { height: 70%; }
.beat__waveform span:nth-child(18) { height: 45%; }
.beat__waveform span:nth-child(19) { height: 80%; }
.beat__waveform span:nth-child(20) { height: 65%; }
.beat__waveform span:nth-child(21) { height: 90%; }
.beat__waveform span:nth-child(22) { height: 40%; }
.beat__waveform span:nth-child(23) { height: 75%; }
.beat__waveform span:nth-child(24) { height: 55%; }
.beat__waveform span:nth-child(25) { height: 60%; }
.beat__waveform span:nth-child(26) { height: 85%; }
.beat__waveform span:nth-child(27) { height: 70%; }
.beat__waveform span:nth-child(28) { height: 50%; }
.beat__waveform span:nth-child(29) { height: 65%; }
.beat__waveform span:nth-child(30) { height: 35%; }

.beat.is-playing .beat__waveform span {
    background: var(--accent);
    transition: height 0.05s linear;
}

.beat__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.beat__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.beats__more {
    text-align: center;
    margin-top: 60px;
}

.beats__ai-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.55;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

/* ============================================================
   FLOATING TESTIMONIAL BUBBLES
   Fixed speech bubbles that slide in from left/right as user scrolls
   ============================================================ */
.float-bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
}

.float-bubble {
    position: absolute;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    padding: 18px 22px 16px;
    top: 46%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(138, 177, 125, 0.06);
    opacity: 0;
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    will-change: transform, opacity;
}

.float-bubble--left {
    left: 28px;
    transform: translateY(-50%) translateX(-340px);
}

.float-bubble--right {
    right: 28px;
    left: auto;
    transform: translateY(-50%) translateX(340px);
}

.float-bubble.is-visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Tail — left bubble */
.float-bubble--left::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 26px;
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 10px solid var(--line-strong);
}
.float-bubble--left::after {
    content: "";
    position: absolute;
    left: -8px;
    bottom: 27px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 9px solid var(--bg-card);
}

/* Tail — right bubble */
.float-bubble--right::before {
    content: "";
    position: absolute;
    right: -10px;
    bottom: 26px;
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 10px solid var(--line-strong);
}
.float-bubble--right::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 27px;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid var(--bg-card);
}

.float-bubble__text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 14px;
    font-style: italic;
}

.float-bubble__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.float-bubble__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0a0b08;
    flex-shrink: 0;
}

.float-bubble__name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.04em;
}

.float-bubble__role {
    display: block;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Mobile: slide up from bottom */
@media (max-width: 700px) {
    .float-bubble--left,
    .float-bubble--right {
        left: 16px;
        right: 16px;
        max-width: none;
        width: auto;
        top: auto;
        bottom: 80px;
        transform: translateY(100px);
    }
    .float-bubble.is-visible {
        transform: translateY(0);
    }
    .float-bubble--left::before,
    .float-bubble--left::after,
    .float-bubble--right::before,
    .float-bubble--right::after {
        display: none;
    }
}

/* Contact feedback CTA */
.contact__feedback-cta {
    margin-top: 20px;
}

/* ============================================================
   FEEDBACK MODAL
   ============================================================ */
.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-modal[hidden] { display: none; }

.feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}

.feedback-modal__panel {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 44px 40px;
    animation: fadeUp 0.4s var(--ease);
}

.feedback-modal__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.feedback-modal__sub {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
    margin-bottom: 30px;
}

/* Form */
.feedback-form__field {
    margin-bottom: 20px;
}

.feedback-form__field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.feedback-form__field input,
.feedback-form__field select,
.feedback-form__field textarea {
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 13px 16px;
    font: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s var(--ease);
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
}

.feedback-form__field input:focus,
.feedback-form__field select:focus,
.feedback-form__field textarea:focus {
    border-color: var(--accent);
}

.feedback-form__field input::placeholder,
.feedback-form__field textarea::placeholder {
    color: var(--text-dim);
    opacity: 0.5;
}

.feedback-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23908e85' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.feedback-form__field select option {
    background: var(--bg-card);
    color: var(--text);
}

/* Star rating */
.star-rating {
    display: flex;
    gap: 6px;
}

.star {
    font-size: 28px;
    color: var(--line-strong);
    transition: color 0.2s var(--ease), transform 0.2s var(--ease);
    line-height: 1;
    padding: 0 2px;
}

.star:hover,
.star.is-active {
    color: var(--warm);
    transform: scale(1.15);
}

.feedback-form__submit {
    width: 100%;
    margin-top: 8px;
}

/* Success state */
.feedback-form__success {
    text-align: center;
    padding: 30px 0 10px;
}

.feedback-form__success .success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feedback-form__success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
}

.feedback-form__success p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}

@media (max-width: 600px) {
    .feedback-modal__panel { padding: 36px 24px 30px; }
}

/* ============================================================
   RELEASES
   ============================================================ */
.releases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.release {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
    position: relative;
}

.release:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    background: var(--bg-card-hover);
    box-shadow: 0 24px 60px -24px rgba(138, 177, 125, 0.12);
}

.release__cover {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: var(--bg-elev);
}

.release__cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 40% 40%, rgba(138, 177, 125, 0.12), transparent 65%),
        radial-gradient(circle at 70% 70%, rgba(196, 169, 125, 0.08), transparent 60%),
        linear-gradient(135deg, #0e100d 0%, #151613 100%);
    transition: transform 0.7s var(--ease);
}

.release__cover-placeholder span {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dim);
    opacity: 0.4;
    padding: 8px 16px;
    border: 1px dashed var(--line);
    border-radius: 999px;
}

.release:hover .release__cover-placeholder {
    transform: scale(1.05);
}

.release__cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.release:hover .release__cover img {
    transform: scale(1.06);
}

.release__play {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #0a0b08;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 8px 24px -8px var(--accent-glow);
    z-index: 2;
}

.release__play:hover {
    transform: scale(1.1);
    background: var(--accent-light);
}

.release__play svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.release__play .icon-pause { display: none; }
.release__play.is-playing .icon-play { display: none; }
.release__play.is-playing .icon-pause { display: block; }

.release__info {
    padding: 20px 22px 6px;
}

.release__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.release__artist {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.release__credit {
    font-size: 12px;
    color: var(--accent);
    font-style: italic;
    letter-spacing: 0.03em;
}

.release__links {
    display: flex;
    gap: 12px;
    padding: 14px 22px 20px;
}

.release__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.release__link:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(138, 177, 125, 0.08);
}

/* Albums subsection */
.releases__albums-head {
    margin-top: 100px;
}

.releases__albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.album {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: visible;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease), background 0.4s var(--ease);
}

.album__cover {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.album:hover {
    transform: translateY(-6px);
    border-color: var(--line-strong);
    background: var(--bg-card-hover);
    box-shadow: 0 24px 60px -24px rgba(138, 177, 125, 0.12);
}

.album__cover {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: var(--bg-elev);
}

.album__cover .release__cover-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 40%, rgba(196, 169, 125, 0.1), transparent 65%),
        radial-gradient(circle at 60% 70%, rgba(138, 177, 125, 0.08), transparent 60%),
        linear-gradient(135deg, #0e100d 0%, #151613 100%);
    transition: transform 0.7s var(--ease);
}

.album:hover .release__cover-placeholder {
    transform: scale(1.05);
}

.album__cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.album:hover .album__cover img {
    transform: scale(1.06);
}

.album__info {
    padding: 20px 22px 6px;
}

.album__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.album__artist {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 2px;
}

.album__year {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.album .release__links {
    padding: 14px 22px 20px;
}

.releases__stream {
    text-align: center;
    margin-top: 60px;
}

/* Album actions (Spotify link + tracklist toggle) */
.album__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 18px;
}

.album__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.album__toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(138, 177, 125, 0.06);
}

.album__toggle-icon {
    transition: transform 0.35s var(--ease);
}

.album__toggle.is-open .album__toggle-icon {
    transform: rotate(180deg);
}

/* Expandable tracklist */
.album__tracklist {
    border-top: 1px solid var(--line);
    padding: 16px 22px 22px;
    animation: fadeUp 0.4s var(--ease);
}

.album__tracklist[hidden] {
    display: none;
}

.album__tracklist ol {
    list-style: none;
    counter-reset: track;
}

.album__tracklist li {
    counter-increment: track;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    color: var(--text-dim);
    transition: color 0.2s var(--ease);
}

.album__tracklist li:last-child {
    border-bottom: none;
}

.album__tracklist li::before {
    content: counter(track, decimal-leading-zero);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dim);
    opacity: 0.5;
    min-width: 24px;
}

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

.track__name {
    flex: 1;
}

.track__play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    flex-shrink: 0;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.track__play:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(138, 177, 125, 0.08);
}

.track__play.is-playing {
    color: #0a0b08;
    background: var(--accent);
    border-color: var(--accent);
}

.track__play .icon-pause { display: none; }
.track__play.is-playing .icon-play { display: none; }
.track__play.is-playing .icon-pause { display: block; }

/* Contact social icons */
.contact__social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.35s var(--ease);
}

.contact__social-icon:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(138, 177, 125, 0.08);
    transform: translateY(-4px);
}

.contact__social-icon::after {
    display: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact .section__head {
    text-align: center;
    margin: 0 auto 50px;
}

.contact .section__label {
    padding-left: 42px;
    padding-right: 42px;
}

.contact .section__label::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--accent-2);
}

.contact .section__sub {
    margin: 0 auto;
}

.contact__cta {
    text-align: center;
}

.contact__socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact__socials a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    position: relative;
    padding: 8px 2px;
    transition: color 0.3s var(--ease);
}

.contact__socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

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

.contact__socials a:hover::after {
    width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--bg-elev);
    position: relative;
    z-index: 1;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.footer__brand p {
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 6px;
}

.footer__links {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__links a,
.footer__legal-btn {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.3s var(--ease);
}

.footer__links a:hover,
.footer__legal-btn:hover {
    color: var(--accent);
}

.footer__copy {
    text-align: right;
    font-size: 11px;
    color: var(--text-dim);
    opacity: 0.7;
}

/* ============================================================
   LEGAL MODAL
   ============================================================ */
.legal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal[hidden] { display: none; }

.legal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}

.legal__panel {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 50px 50px 40px;
    animation: fadeUp 0.45s var(--ease);
}

/* Legal tabs */
.legal__tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.legal__tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

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

.legal__tab.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.legal__content {
    display: none;
}

.legal__content.is-active {
    display: block;
}

.legal__panel h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--accent);
}

.legal__panel p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.75;
}

.legal__panel strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

.legal__panel a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal__close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 32px;
    color: var(--text-dim);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.legal__close:hover {
    color: var(--accent);
    background: rgba(138, 177, 125, 0.1);
}

.legal__note {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(138, 177, 125, 0.06);
    border-left: 2px solid var(--accent);
    border-radius: 4px;
    font-size: 13px !important;
}

/* ============================================================
   PILLARS — Quality indicators strip (below hero)
   ============================================================ */
.pillars {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-elev);
    position: relative;
    z-index: 1;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--maxw);
    margin: 0 auto;
}

.pillar {
    padding: 40px 28px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    transition: background 0.4s var(--ease);
}

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

.pillar:hover {
    background: rgba(138, 177, 125, 0.04);
}

.pillar__icon {
    color: var(--accent);
    margin-bottom: 6px;
    opacity: 0.85;
}

.pillar__value {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.pillar__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.pillar__plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.pillar__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.pillar__sub {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.03em;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(2) { border-right: none; }
    .pillar:nth-child(1),
    .pillar:nth-child(2) { border-bottom: 1px solid var(--line); }
    .pillar { padding: 30px 24px; }
}

@media (max-width: 480px) {
    .pillars__grid { grid-template-columns: 1fr 1fr; }
    .pillar { padding: 24px 18px; }
    .pillar__num { font-size: 32px; }
}

/* ============================================================
   MOBILE NAV — Hamburger + slide-in overlay
   ============================================================ */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px 5px;
    border-radius: 8px;
    transition: background 0.3s var(--ease);
    flex-shrink: 0;
}

.nav__burger:hover {
    background: rgba(138, 177, 125, 0.08);
}

.nav__burger-line {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.38s var(--ease), opacity 0.28s var(--ease), width 0.38s var(--ease);
    transform-origin: center;
}

.nav__burger-line:nth-child(3) {
    width: 65%;
}

.nav__burger.is-open .nav__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open .nav__burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__burger.is-open .nav__burger-line:nth-child(3) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop */
.nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.nav__backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile nav panel */
.nav__mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: rgba(10, 11, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--line-strong);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 90px 36px 50px;
    gap: 0;
    transition: right 0.45s var(--ease);
}

.nav__mobile.is-open {
    right: 0;
}

.nav__mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav__mobile ul li a {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dim);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.nav__mobile ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.nav__mobile ul li:last-child a {
    border-bottom: none;
}

.nav__mobile__lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-top: 36px;
    align-self: flex-start;
}

@media (max-width: 700px) {
    .nav__burger { display: flex; }
    .lang-toggle { display: none; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__field label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    font: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    resize: vertical;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(138, 177, 125, 0.1);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--text-dim);
    opacity: 0.45;
}

.contact-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23908e85' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__field select option {
    background: var(--bg-card);
    color: var(--text);
}

.contact-form__submit {
    width: 100%;
    margin-top: 6px;
}

.contact-form__success {
    text-align: center;
    padding: 30px 0;
    display: none;
}

.contact-form__success.is-visible {
    display: block;
}

.contact-form__success .success-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.contact-form__success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 8px;
}

.contact-form__success p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}

.contact__direct {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-dim);
}

.contact__direct a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s var(--ease);
}

.contact__direct a:hover {
    opacity: 0.75;
}

@media (max-width: 600px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    padding: 90px 0;
    border-top: 1px solid var(--line);
    background: var(--bg-elev);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(138, 177, 125, 0.05), transparent);
    pointer-events: none;
}

.newsletter__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding-left: 34px;
    position: relative;
}

.newsletter__eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--accent-2);
}

.newsletter__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text);
}

.newsletter__sub {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter__form {
    display: flex;
    gap: 10px;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 15px 24px;
    font: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    min-width: 0;
}

.newsletter__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(138, 177, 125, 0.1);
}

.newsletter__input::placeholder {
    color: var(--text-dim);
    opacity: 0.5;
}

.newsletter__success {
    display: none;
    margin-top: 20px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.newsletter__success.is-visible {
    display: block;
}

@media (max-width: 600px) {
    .newsletter__form {
        flex-direction: column;
    }
    .newsletter__form .btn {
        width: 100%;
    }
    .newsletter { padding: 70px 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

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


.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .section { padding: 100px 0; }
    .about__grid { grid-template-columns: 1fr; gap: 50px; }
    .about__gallery { height: 55vh; min-height: 380px; }
    .releases__albums-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .releases__grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__copy { text-align: center; }
    .legal__panel { padding: 40px 28px 30px; }
    .legal__panel h2 { font-size: 26px; }
    .nav__links { gap: 24px; }
}

@media (max-width: 700px) {
    .container { padding: 0 20px; }
    .nav__links { display: none; }
    .nav__inner { padding: 0 20px; }
    .section__head { margin-bottom: 50px; }
    .about__stats { gap: 26px; }
    .about__stats strong { font-size: 34px; }
    .about__gallery {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        height: 56vw;
        min-height: 220px;
        max-height: 360px;
        gap: 8px;
        scrollbar-width: none;
    }
    .about__gallery::-webkit-scrollbar { display: none; }
    .about__gallery-img {
        flex: 0 0 72vw;
        scroll-snap-align: start;
        border-radius: 12px;
    }
    .about__gallery-img--3 { display: block; }
    .about__name { letter-spacing: 0.05em; }
    .releases__albums-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .beats__grid { grid-template-columns: 1fr; gap: 20px; }
    .releases__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .hero { padding: 120px 20px 100px; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    background: var(--bg);
}

.faq__list {
    max-width: 820px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq__item[open] {
    border-color: rgba(154, 230, 116, 0.35);
    background: rgba(154, 230, 116, 0.03);
}

.faq__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text);
    position: relative;
    user-select: none;
    transition: color 0.2s ease;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq__a {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

@media (max-width: 640px) {
    .faq__list { margin-top: 40px; }
    .faq__q { padding: 16px 48px 16px 18px; font-size: 0.96rem; }
    .faq__a { padding: 0 18px 18px; font-size: 0.9rem; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    background: var(--bg);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.pricing__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.pricing__card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
}

.pricing__card--featured {
    border-color: rgba(138, 177, 125, 0.35);
    background: linear-gradient(160deg, rgba(138,177,125,0.06) 0%, var(--bg-card) 60%);
}

.pricing__card--featured:hover {
    border-color: rgba(138, 177, 125, 0.55);
}

.pricing__badge-featured {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing__card-head {
    margin-bottom: 28px;
}

.pricing__format {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    background: rgba(138, 177, 125, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.pricing__name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 16px;
}

.pricing__amount-wrap {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.pricing__amount {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing__cur {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dim);
    padding-bottom: 4px;
}

.pricing__amount-req {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dim);
    line-height: 1.2;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.pricing__features li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 18px;
    position: relative;
}

.pricing__features li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 12px;
}

.pricing__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

@media (max-width: 900px) {
    .pricing .container { padding: 0; }
    .pricing__grid {
        display: flex;
        flex-direction: row;
        gap: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 16px 20px 24px;
        /* hide scrollbar visually */
        scrollbar-width: none;
    }
    .pricing__grid::-webkit-scrollbar { display: none; }
    .pricing__card {
        flex: 0 0 72vw;
        max-width: 280px;
        scroll-snap-align: start;
        padding: 22px 18px 18px;
        border-radius: 16px;
    }
    .pricing__name { font-size: 15px; }
    .pricing__amount { font-size: 32px; }
    .pricing__features li { font-size: 13px; }
}

/* ============================================================
   FREE BEAT
   ============================================================ */
.freebeat {
    background: linear-gradient(135deg, rgba(138,177,125,0.06) 0%, rgba(10,11,8,0) 60%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 80px 0;
}

.freebeat__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.freebeat__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(138, 177, 125, 0.1);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.freebeat__title-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.freebeat__play {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(138, 177, 125, 0.35);
}

.freebeat__play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(138, 177, 125, 0.5);
}

.freebeat__play-icon--pause { display: none; }
.freebeat__play.is-playing .freebeat__play-icon--play  { display: none; }
.freebeat__play.is-playing .freebeat__play-icon--pause { display: block; }

.freebeat__title {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.freebeat__genre {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.freebeat__sub {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 380px;
}

.freebeat__right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.freebeat__input {
    width: 100%;
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    font: inherit;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.freebeat__input:focus {
    border-color: var(--accent);
}

.freebeat__btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 24px;
}

.freebeat__success {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.freebeat__success p {
    font-size: 15px;
    color: var(--accent);
    font-weight: 500;
}

.freebeat__success .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
}

.freebeat__fine {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin: 0;
}

.freebeat__legal {
    font-size: 11px;
    color: rgba(234,232,225,0.28);
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
    .freebeat__inner { grid-template-columns: 1fr; gap: 36px; }
    .freebeat__title { font-size: 40px; }
}

@media (max-width: 700px) {
    .freebeat { padding: 60px 0; }
    .freebeat__title { font-size: 34px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-fab:active {
    transform: scale(0.97);
}

@media (max-width: 700px) {
    .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}
