/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black:   #080808;
    --dark:    #111111;
    --card:    #1a1a1a;
    --white:   #F2EDE4;
    --muted:   #606060;
    --terra:   #C8431E;
    --terra2:  #a8381a;
    --gold:    #D4A843;
    --border:  rgba(255, 255, 255, 0.07);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Fine grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    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");
    opacity: 0.065;
    pointer-events: none;
    z-index: 9000;
}

/* Coarser grain — second layer for depth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.35' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 8999;
    mix-blend-mode: overlay;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--terra); border-radius: 2px; }

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

h1, h2, h3 {
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    line-height: 1.05;
}

/* === LAYOUT === */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    position: relative;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}

.btn-primary:hover {
    background: transparent;
    color: var(--terra);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

/* === NAV === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.6rem 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

#navbar.scrolled {
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 0;
    border-color: var(--border);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-logo.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-logo .logo-img {
    height: 48px;
    width: auto;
}

.nav-logo:hover .logo-img { opacity: 0.8; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 237, 228, 0.6);
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8,8,8,0.35) 0%, rgba(8,8,8,0.55) 60%, rgba(8,8,8,1) 100%),
        url('images/hero-bg.jpg') center / cover no-repeat,
        var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Woodgrain diagonal lines — simulates print/carving texture */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        72deg,
        transparent 0px,
        transparent 6px,
        rgba(255, 255, 255, 0.012) 6px,
        rgba(255, 255, 255, 0.012) 7px
    );
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: glowPulse 6s ease-in-out infinite alternate;
}

.glow-a {
    width: 700px;
    height: 500px;
    top: 5%;
    left: -15%;
    background: rgba(200, 67, 30, 0.18);
    animation-delay: 0s;
}

.glow-b {
    width: 550px;
    height: 400px;
    bottom: 10%;
    right: -8%;
    background: rgba(212, 168, 67, 0.1);
    animation-delay: -3s;
}

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

.hero-logo {
    max-width: 720px;
    width: 88vw;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 48px rgba(200, 67, 30, 0.35)) drop-shadow(0 0 16px rgba(212, 168, 67, 0.2));
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.65s forwards;
}

.hero-desc {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    color: rgba(242, 237, 228, 0.45);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.85s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.05s forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, rgba(200,67,30,0.6), transparent);
    animation: scrollBob 2s ease-in-out infinite;
}

/* === TICKER === */
.ticker {
    background: var(--terra);
    overflow: hidden;
    padding: 0.85rem 0;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

/* Fade edges */
.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--terra), transparent);
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--terra), transparent);
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    width: max-content;
    animation: tickerScroll 18s linear infinite;
}

.t-word {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: var(--white);
    flex-shrink: 0;
}

.t-dot {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    font-size: 0.9rem;
}

/* === SECTION LABELS === */
.eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.8rem;
    /* Rough underline — like a woodblock registration mark */
    position: relative;
    padding-bottom: 6px;
}

.eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--terra), transparent 80%);
    transform: scaleX(0.9) skewX(-15deg);
    transform-origin: left;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 2.5rem;
}

/* === REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === MUSIC SECTION === */
.music-section {
    padding: 8rem 0;
    background: var(--dark);
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terra), transparent);
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 0 auto 3rem;
    aspect-ratio: 16 / 9;
    background: var(--card);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

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

.stream-label {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn-stream {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, var(--terra), var(--terra2));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(200, 67, 30, 0.35);
}

.btn-stream:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 45px rgba(200, 67, 30, 0.5);
}

/* === COMING SOON === */
.coming-soon {
    padding: 10rem 0;
    overflow: hidden;
    text-align: center;
    background: var(--black);
}

.cs-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cs-grid-bg {
    position: absolute;
    inset: 0;
    /* Angled grid lines — like crosshatch print marks */
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.018) 0px,
            rgba(255,255,255,0.018) 1px,
            transparent 1px,
            transparent 40px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.012) 0px,
            rgba(255,255,255,0.012) 1px,
            transparent 1px,
            transparent 80px
        );
    pointer-events: none;
}

.cs-inner {
    position: relative;
    z-index: 2;
}

.cs-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, 0.5);
    padding: 0.4rem 1.4rem;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
    /* Carimbo — slightly off-angle like a stamp */
    transform: rotate(-1.5deg);
    display: inline-block;
    box-shadow: 2px 2px 0 rgba(212, 168, 67, 0.15);
}

.cs-title {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
}

/* Waveform animation */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 36px;
    margin: 0 auto 2rem;
}

.waveform span {
    display: block;
    width: 3px;
    background: var(--gold);
    border-radius: 2px;
    animation: waveBeat 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 90%; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 90%; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 30%; animation-delay: 0.6s; }

.cs-sub {
    font-size: 0.95rem;
    color: rgba(242, 237, 228, 0.45);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.follow-row {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.follow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: rgba(242, 237, 228, 0.6);
    transition: all 0.3s ease;
}

.follow-pill:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.04);
}

/* === ABOUT === */
.about-section {
    padding: 8rem 0;
    background: var(--dark);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.45), transparent);
}

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

.about-body p {
    margin-bottom: 1.1rem;
    color: rgba(242, 237, 228, 0.72);
    font-size: 0.95rem;
    line-height: 1.85;
}

.about-body strong {
    color: var(--white);
    font-weight: 500;
}

.about-body blockquote {
    margin-top: 2rem;
    padding-left: 1.4rem;
    border-left: 2px solid var(--terra);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(242, 237, 228, 0.55);
    line-height: 1.8;
}

.photo-frame {
    position: relative;
}

.photo-frame img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
}

.frame-accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--terra);
    pointer-events: none;
    z-index: -1;
}

/* === GALLERY === */
.gallery-section {
    padding: 8rem 0 0;
    background: var(--black);
}

.gallery-section .container {
    margin-bottom: 3rem;
}

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

.g-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--card);
    cursor: zoom-in;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    /* Raw, high-contrast treatment */
    filter: grayscale(55%) contrast(1.15) brightness(0.9);
}

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(200, 67, 30, 0);
    transition: background 0.4s ease;
}

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

.g-item:hover .g-overlay {
    background: rgba(200, 67, 30, 0.06);
}

/* === CONTACT === */
.contact-section {
    padding: 8rem 0;
    background: var(--dark);
    text-align: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terra), transparent);
}

.contact-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 220px;
    padding: 2.5rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    border-color: var(--terra);
    transform: translateY(-3px);
}

.cc-icon {
    width: 48px;
    height: 48px;
    background: rgba(200, 67, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    margin-bottom: 0.5rem;
}

.cc-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.cc-value {
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 400;
    transition: color 0.2s;
}

.contact-card:hover .cc-value { color: var(--terra); }

.social-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
}

.soc-btn.ig:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,0.05); }
.soc-btn.yt:hover { border-color: #FF4040; color: #FF4040; background: rgba(255,64,64,0.05); }

/* === FOOTER === */
.footer {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background: var(--black);
}

.footer-logo {
    height: 56px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo:hover { opacity: 0.7; }

.footer-copy {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.footer-city {
    font-size: 0.65rem;
    color: rgba(96, 96, 96, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* === KEYFRAMES === */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes glowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

@keyframes scrollBob {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.7); opacity: 1; }
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.65; border-color: rgba(212,168,67,0.4); }
    50%       { opacity: 1;    border-color: rgba(212,168,67,0.9); }
}

@keyframes waveBeat {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(0.25); }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual { order: -1; }

    .photo-frame img { aspect-ratio: 4 / 3; }

    .frame-accent { display: none; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 999;
    }

    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; letter-spacing: 0.2em; }

    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 220px; text-align: center; }

    .section-title { margin-bottom: 2rem; }

    .music-section, .about-section, .gallery-section, .contact-section { padding: 5rem 0; }

    .coming-soon { padding: 7rem 0; }

    .contact-cards { flex-direction: column; max-width: 320px; }

    .contact-card { min-width: unset; }
}

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

    .cs-title { font-size: 3.5rem; }

    .hero-logo { width: 94vw; }
}
