/* ============================================
   RAVI RAMSAHYE — Sunglint light theme
   Inspired by the Sunglint album cover:
   warm paper, watercolor blobs, ink hairlines.
   ============================================ */

/* Display font from the album cover wordmark */
@font-face {
    font-family: 'Red Moon Rising';
    src: url('assets/fonts/red-moon-rising.woff2') format('woff2'),
         url('assets/fonts/red-moon-rising.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Surfaces */
    --paper:      #F2EEE6;
    --paper-2:    #FBFAF5;
    --paper-3:    #EBE6DB;

    /* Ink & text */
    --ink:        #1A1A1A;
    --ink-soft:   #3C4654;
    --muted:      #7A766B;
    --line:       rgba(26, 26, 26, 0.14);
    --line-soft:  rgba(26, 26, 26, 0.08);

    /* Warm accents (cover) */
    --sun:        #ECD98C;
    --ochre:      #C9A45C;
    --orange:     #D07B3C;
    --orange-deep:#B5612A;

    /* Cool accents (cover) */
    --mauve:      #B08A95;
    --slate-blue: #8497AC;

    /* Type */
    --font-display: 'Red Moon Rising', 'Montserrat', Helvetica, Arial, sans-serif;
    --font-body:    'Nunito Sans', Helvetica, Arial, sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    /* Layout */
    --container-max: 1200px;
    --container-pad: clamp(20px, 5vw, 56px);
    --section-pad:   clamp(72px, 11vh, 150px);

    /* Motion */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t-base: 0.3s ease;
    --t-slow: 0.7s var(--ease);
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-body);
    background-color: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection { background: var(--orange); color: var(--paper-2); }

/* ---------- Type helpers ---------- */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange-deep);
}

.section-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-no {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--ochre);
    letter-spacing: 0.1em;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.9rem, 5vw, 3.1rem);
    letter-spacing: 0.06em;
    line-height: 1.05;
}
.section-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
    transform: translateY(-6px);
}

.container { max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }
.section { padding-block: var(--section-pad); position: relative; }
.section:nth-of-type(even) { background: var(--paper-2); }

.hl { color: var(--orange-deep); font-weight: 500; }
.accent {
    color: var(--ink);
    box-shadow: inset 0 -0.5em 0 rgba(236, 217, 140, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--t-base);
}
.btn-primary { background: var(--orange); color: var(--paper-2); }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-primary:disabled, .btn-primary[disabled] {
    background: var(--paper-3);
    color: var(--muted);
    cursor: not-allowed;
}
.btn-primary:disabled:hover, .btn-primary[disabled]:hover { transform: none; }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-outline {
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 10px 20px;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-deep); }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--orange-deep);
    margin-top: 8px;
    transition: var(--t-base);
}
.text-link .arrow { transition: transform var(--t-base); }
.text-link:hover .arrow { transform: translateX(5px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    transition: transform var(--t-base), background var(--t-base), border-color var(--t-base);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(242, 238, 230, 0.85);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--line-soft);
}
.nav-container {
    max-width: none;
    margin: 0;
    padding: 16px clamp(20px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-pick { width: 20px; height: 24px; }
.logo-pick path { fill: var(--ink); }
.logo-text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.02rem;
    letter-spacing: 0.08em;
}

.nav-links { display: flex; gap: 26px; }
.nav-link {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--t-base);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--orange);
    transition: width var(--t-base);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }

.nav-controls { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 2px; }
.lang-btn {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    padding: 4px 7px;
    border-radius: 2px;
    transition: var(--t-base);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--paper-2); background: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: var(--t-base); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--t-base);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-content { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-link {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
}
.mobile-lang { display: flex; gap: 6px; margin-top: 18px; }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.55;
    mix-blend-mode: multiply;
    animation: float 16s var(--ease) infinite alternate;
}
.blob-sun   { width: 38vw; height: 38vw; top: 6%;  right: 8%;  background: radial-gradient(circle at 35% 35%, var(--sun), transparent 70%); }
.blob-ochre { width: 26vw; height: 26vw; top: 34%; right: 30%; background: radial-gradient(circle at 40% 40%, var(--ochre), transparent 70%); animation-delay: -4s; }
.blob-blue  { width: 30vw; height: 30vw; bottom: 4%; left: 6%;  background: radial-gradient(circle at 45% 45%, var(--slate-blue), transparent 72%); animation-delay: -8s; }
.blob-mauve { width: 18vw; height: 18vw; top: 46%; left: 28%; background: radial-gradient(circle at 45% 45%, var(--mauve), transparent 70%); animation-delay: -2s; }

@keyframes float {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(2.5%, -3%) scale(1.08); }
}

.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding-inline: var(--container-pad);
    display: grid;
    grid-template-columns: minmax(0, 720px);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
}

/* Bottom-anchored Ravi cutout */
.hero-cutout {
    position: absolute;
    bottom: 0;
    right: clamp(8px, 4vw, 90px);
    height: min(92%, 940px);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}
.hero-cutout img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 24px 36px rgba(26, 26, 26, 0.20));
}
.hero-cutout.is-empty { display: none; }
.hero-content { animation: rise 1s var(--ease) both; }
.hero-title {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(3rem, 9vw, 6.6rem);
    letter-spacing: 0.04em;
    line-height: 0.98;
    margin: 16px 0 10px;
}
.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(0.85rem, 2vw, 1.05rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-portrait { animation: rise 1.1s 0.1s var(--ease) both; }
.portrait-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 3px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(236, 217, 140, 0.6), transparent 55%),
        radial-gradient(circle at 75% 70%, rgba(132, 151, 172, 0.5), transparent 55%),
        var(--paper-3);
    box-shadow: 0 30px 60px -30px rgba(26, 26, 26, 0.4);
}
.portrait-img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.portrait-frame.is-empty .portrait-placeholder { display: flex; }

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.scroll-arrow { width: 1px; height: 36px; background: linear-gradient(var(--ink), transparent); animation: scrollPulse 2s ease infinite; }

@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.frame { border-radius: 3px; overflow: hidden; box-shadow: 0 24px 50px -30px rgba(26,26,26,0.45); }
.about-photo { width: 100%; }
.lead { font-size: 1.18rem; line-height: 1.55; margin-bottom: 20px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; max-width: 60ch; }
.signature { font-size: 1.05rem; color: var(--ink) !important; }

/* Large narrative bio with scroll-scrubbed letter fade-in */
.about-narrative { max-width: 1040px; margin-top: clamp(10px, 2vw, 28px); }
.about-narrative p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1.5rem, 3.3vw, 2.9rem);
    line-height: 1.36;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin-bottom: clamp(24px, 3.4vw, 48px);
}
.about-narrative p:last-child { margin-bottom: 0; }
.about-narrative .hl { color: var(--orange-deep); font-weight: 400; box-shadow: none; }
.about-narrative .accent { box-shadow: inset 0 -0.4em 0 rgba(236, 217, 140, 0.6); }
.about-narrative .rc { display: inline; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(36px, 5vw, 64px); }
.tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border: 1px solid var(--line);
    border-radius: 30px;
    color: var(--ink-soft);
}

/* ============================================
   PROJECT
   ============================================ */
.project-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}
.project-cover {
    position: relative;
    aspect-ratio: 1;
    border-radius: 3px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, var(--sun), transparent 60%),
        radial-gradient(circle at 70% 75%, var(--orange), transparent 55%),
        var(--paper-3);
}
.project-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.project-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(26, 26, 26, 0.55));
    z-index: 1;
}
.cover-word {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 0.22em;
    color: var(--ink);
}
.project-cover .cover-word {
    position: absolute;
    left: 20px;
    bottom: 16px;
    z-index: 2;
    color: var(--paper-2);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.kicker {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange-deep);
}
.project-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    letter-spacing: 0.04em;
    margin: 10px 0 6px;
}
.project-genre { font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.project-body p { color: var(--ink-soft); max-width: 56ch; }

/* ============================================
   ALBUM (Sunglint)
   ============================================ */
.album-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.cover-frame {
    position: relative;
    aspect-ratio: 1;
    border-radius: 3px;
    overflow: hidden;
    background: var(--paper-3);
    box-shadow: 0 30px 60px -32px rgba(26,26,26,0.45);
}
.cover-img { width: 100%; height: 100%; object-fit: cover; }
.cover-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.3rem, 3vw, 2rem);
    letter-spacing: 0.2em;
    color: var(--ink);
    background:
        radial-gradient(circle at 35% 30%, var(--sun), transparent 55%),
        radial-gradient(circle at 70% 72%, var(--mauve), transparent 52%),
        radial-gradient(circle at 60% 50%, var(--slate-blue), transparent 60%);
}
.cover-frame.is-empty .cover-placeholder { display: flex; }

.badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-deep);
    border: 1px solid rgba(208, 123, 60, 0.4);
    padding: 5px 12px;
    border-radius: 30px;
    margin-bottom: 18px;
}
.album-title {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(2.4rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 14px;
}
.album-tagline { font-size: 1.12rem; color: var(--ink); margin-bottom: 18px; max-width: 52ch; }
.album-info p { color: var(--ink-soft); max-width: 56ch; margin-bottom: 14px; }
.feature-row { display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 22px 0; }
.feature-row li {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    padding: 6px 12px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 2px;
}
.section:nth-of-type(even) .feature-row li { background: var(--paper-2); }
.credits { border-top: 1px solid var(--line); padding-top: 16px; }
.credits-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}
.credits p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================
   DISCOGRAPHY
   ============================================ */
.disco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(24px, 4vw, 44px); }
.disco-card { display: flex; flex-direction: column; gap: 12px; }
.disco-cover { box-shadow: 0 22px 44px -28px rgba(26,26,26,0.4); }
.disco-cover .cover-placeholder { font-size: clamp(1rem, 2.2vw, 1.5rem); }
.disco-name { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; letter-spacing: 0.05em; }
.disco-meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
.disco-card .btn-outline { margin-top: 6px; align-self: flex-start; }

/* ============================================
   LISTEN (SoundCloud)
   ============================================ */
.listen-player {
    display: grid;
    grid-template-columns: 0.8fr 1.25fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
}
.listen-cover {
    position: relative;
    display: block;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    background: var(--paper-3);
    box-shadow: 0 26px 50px -30px rgba(26, 26, 26, 0.45);
}
.listen-cover img { width: 100%; height: 100%; object-fit: cover; }
.listen-cover-badge {
    position: absolute; left: 14px; bottom: 14px;
    font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--paper-2);
    background: rgba(26, 26, 26, 0.6); padding: 6px 12px; border-radius: 30px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
/* Branded frame around the SoundCloud player */
.sc-frame {
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper-2);
    box-shadow: 0 26px 54px -36px rgba(26, 26, 26, 0.42);
}
.section:nth-of-type(even) .sc-frame { background: var(--paper); }
.sc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}
.section:nth-of-type(even) .sc-head { background: var(--paper-2); }
.sc-head-left { display: flex; align-items: center; gap: 11px; }
.sc-head .logo-pick { width: 15px; height: 18px; }
.sc-head-title { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.04em; }
.sc-head-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-deep);
    border: 1px solid rgba(208, 123, 60, 0.4);
    padding: 5px 12px;
    border-radius: 30px;
    transition: var(--t-base);
    white-space: nowrap;
}
.sc-head-tag:hover { background: var(--orange); color: var(--paper-2); border-color: var(--orange); }
.listen-embed { background: transparent; }
.listen-embed iframe { width: 100%; height: 500px; border: 0; display: block; }
.listen-aside { display: flex; gap: 18px 28px; flex-wrap: wrap; margin-top: 20px; }

/* ============================================
   TOUR
   ============================================ */
.tour-list { display: flex; flex-direction: column; }
.tour-item {
    display: grid;
    grid-template-columns: 110px 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    transition: background var(--t-base);
}
.tour-item:last-child { border-bottom: 1px solid var(--line); }
.tour-item:hover { background: rgba(208, 123, 60, 0.05); }
.tour-date { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.date-day { font-family: var(--font-display); font-weight: 300; font-size: 2.2rem; }
.date-month { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; color: var(--orange-deep); }
.date-year { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); }
.tour-venue { font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; letter-spacing: 0.03em; }
.tour-location { font-size: 0.9rem; color: var(--muted); }
.tour-status {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-deep);
    border: 1px solid rgba(208, 123, 60, 0.35);
    padding: 4px 10px;
    border-radius: 30px;
}
.tour-action { font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.1em; color: var(--ink-soft); transition: color var(--t-base); }
.tour-action:hover { color: var(--orange-deep); }

/* Past dates — reads as history, not a dead site: text stays full-strength
   (--ink-soft, ~8:1 on paper), only the orange "live" accent is swapped for
   a neutral slate. Never touch item opacity, it wrecks legibility. */
.tour-item.is-past .date-day,
.tour-item.is-past .date-month { color: var(--ink-soft); }
.tour-item.is-past .tour-status {
    color: var(--ink-soft);
    border-color: rgba(132, 151, 172, 0.4); /* --slate-blue, dimmed */
}
.tour-item.is-past:hover { background: rgba(132, 151, 172, 0.06); }

/* Optional intertitle splitting past / upcoming inside the same .tour-list,
   styled like the site's other mono eyebrow labels. */
/* Chapeau de la section Concerts passés : texte d'intro + lien "proposer une date".
   Le .text-link inline garde son propre style (mono/ocre), on ne gère ici que
   le paragraphe porteur et son espacement avant la liste. */
.tour-intro {
    max-width: 62ch;
    margin: 0 0 clamp(24px, 4vw, 40px);
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.7;
    color: var(--ink-soft);
}
.tour-intro .text-link { margin-top: 0; margin-left: 10px; }

/* Intertitre optionnel séparant "à venir" et "passés" quand la liste mélangera
   les deux. Pas encore utilisé dans index.html : la liste ne contient pour
   l'instant que des dates passées. À poser sur un élément entre deux .tour-item. */
.tour-subhead {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 28px;
    padding-bottom: 4px;
}
.tour-subhead:first-child { padding-top: 0; }

/* ============================================
   PRESS
   ============================================ */
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(18px, 3vw, 28px); }
.quote-card {
    position: relative;
    padding: 30px 26px;
    background: var(--paper-2);
    border: 1px solid var(--line-soft);
    border-radius: 3px;
}
.section:nth-of-type(even) .quote-card { background: var(--paper); }
.quote-card::before {
    content: "\201C";
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 0.7;
    color: var(--ochre);
    display: block;
    margin-bottom: 8px;
}
.quote-card blockquote { font-size: 1.04rem; line-height: 1.5; color: var(--ink); margin-bottom: 16px; }
.quote-card figcaption { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--muted); }

/* ============================================
   GALLERY — photo gallery
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}
.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 3px;
    background: var(--paper-3);
    box-shadow: 0 22px 44px -28px rgba(26, 26, 26, 0.4);
    transition: transform var(--t-slow), box-shadow var(--t-base);
}
.gallery-item:hover img {
    transform: scale(1.03);
    box-shadow: 0 28px 54px -26px rgba(26, 26, 26, 0.48);
}
/* Missing-photo fallback: mirrors .cover-placeholder's watercolor wash so a
   gap in the batch doesn't leave a dead box in the grid. Triggered by the
   site's existing onerror convention (hides the <img>, flags the parent
   with .is-empty). */
.gallery-item.is-empty::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 3px;
    background:
        radial-gradient(circle at 30% 25%, var(--sun), transparent 55%),
        radial-gradient(circle at 75% 70%, var(--slate-blue), transparent 55%),
        radial-gradient(circle at 55% 90%, var(--mauve), transparent 50%),
        var(--paper-3);
}
.gallery-item figcaption {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
    .gallery-item img { transition: none; }
    .gallery-item:hover img { transform: none; }
}

/* ============================================
   VIDEOS — clickable facades (no iframe until click,
   perf + RGPD: no third-party cookie before consent)
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: clamp(20px, 3vw, 32px);
}
.video-item { display: flex; flex-direction: column; gap: 10px; }

/* Button reset: browsers style <button> with border/background/padding/font
   by default, strip all of it before laying out the facade. */
.video-facade {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    background: var(--paper-3);
    box-shadow: 0 22px 44px -28px rgba(26, 26, 26, 0.4);
    transition: box-shadow var(--t-base);
}
.video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--t-slow);
}
.video-facade:hover .video-thumb,
.video-facade:focus-visible .video-thumb { transform: scale(1.04); }
.video-facade:hover { box-shadow: 0 28px 54px -26px rgba(26, 26, 26, 0.48); }

/* Play control — pure CSS, no icon asset: a soft paper disc with an
   ink/ochre triangle, in the spirit of the site rather than a red YouTube logo. */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(52px, 9vw, 68px);
    height: clamp(52px, 9vw, 68px);
    border-radius: 50%;
    background: rgba(251, 250, 245, 0.88);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-base), background var(--t-base);
}
.video-play::before {
    content: "";
    margin-left: 4px; /* optical centering: triangle's visual mass leans left */
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--orange-deep);
}
.video-facade:hover .video-play,
.video-facade:focus-visible .video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--paper-2);
}
.video-facade:focus-visible {
    outline: 3px solid var(--orange-deep);
    outline-offset: 3px;
}

.video-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--ink);
}

/* Iframe swapped in on click — must occupy exactly the facade's footprint,
   no layout shift. */
.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .video-thumb { transition: none; }
    .video-facade:hover .video-thumb, .video-facade:focus-visible .video-thumb { transform: none; }
    .video-play { transition: none; }
    .video-facade:hover .video-play, .video-facade:focus-visible .video-play { transform: translate(-50%, -50%); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.contact-info .section-head { margin-bottom: 26px; }
.contact-intro { font-size: 1.2rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 30px; }
.contact-email {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
    transition: var(--t-base);
}
.contact-email:hover { padding-left: 12px; }
.email-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.email-address { font-family: var(--font-mono); font-weight: 500; font-size: clamp(1.05rem, 2.6vw, 1.7rem); letter-spacing: 0.01em; color: var(--ink); word-break: break-all; }
.contact-email:hover .email-address { color: var(--orange-deep); }

/* Contact form (mailto-powered, no backend) */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 13px 16px;
    width: 100%;
    resize: vertical;
    transition: border-color var(--t-base);
}
.section:nth-of-type(even) .field input, .section:nth-of-type(even) .field textarea { background: var(--paper); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.contact-form .btn-primary { align-self: flex-start; margin-top: 4px; }
.contact-form.is-sent .btn-primary { background: var(--ochre); }
.form-note { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--muted); }

/* Honeypot anti-spam field — must stay reachable by bots to be effective.
   display:none / visibility:hidden are both skipped by modern bots that
   read computed styles, which defeats the trap; an off-screen absolute
   position with no footprint keeps it "visible" to a naive scraper while
   staying invisible and unreachable for sighted and keyboard users. */
.hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Form status (contact form send feedback) */
.form-status {
    display: none;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
    padding: 12px 16px;
    border-radius: 3px;
    border: 1px solid transparent;
}
.form-status.is-sending,
.form-status.is-ok,
.form-status.is-error {
    display: flex;
}
.form-status.is-sending {
    background: var(--paper-3);
    color: var(--ink-soft);
    border-color: var(--line);
}
.form-status.is-sending::before {
    content: "";
    flex: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--line);
    border-top-color: var(--ink-soft);
    animation: statusSpin 0.8s linear infinite;
}
.section:nth-of-type(even) .form-status.is-sending { background: var(--paper); }
.form-status.is-ok {
    background: var(--sun);
    color: var(--ink);
    border-color: var(--ochre);
}
.form-status.is-error {
    background: var(--orange);
    color: var(--ink);
    border-color: var(--orange-deep);
}
@keyframes statusSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .form-status.is-sending::before { animation: none; }
}
.socials { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.socials-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.socials-list { display: flex; gap: 18px; }
.social-link { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-soft); position: relative; transition: color var(--t-base); }
.social-link:hover { color: var(--orange-deep); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(56px, 8vw, 96px); }
.footer-inner { width: 100%; padding-inline: clamp(20px, 4vw, 64px); }
.footer .logo-pick path { fill: var(--sun); }

.footer-cols {
    display: grid;
    grid-template-columns: 1.7fr repeat(4, 1fr);
    gap: clamp(28px, 4vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
    border-bottom: 1px solid rgba(242,238,230,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.04em; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ochre); }
.footer-blurb { font-size: 0.92rem; line-height: 1.6; color: rgba(242,238,230,0.62); margin-top: 4px; }
.footer-based { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(242,238,230,0.45); margin-top: 6px; }

.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(242,238,230,0.78); transition: color var(--t-base), transform var(--t-base); width: fit-content; }
.footer-col a:hover { color: var(--sun); transform: translateX(4px); }
.footer-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ochre); margin-bottom: 4px; }
.footer-sub { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242,238,230,0.42); margin-top: 12px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px 28px;
    flex-wrap: wrap;
    padding-block: 24px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(242,238,230,0.5);
}
.footer-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.footer-dot { color: rgba(242,238,230,0.3); }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.footer-legal a { color: rgba(242,238,230,0.6); transition: color var(--t-base); }
.footer-legal a:hover { color: var(--sun); }
.footer-top-link { color: var(--ochre) !important; }

/* ---------- Misc content bits ---------- */
.lineup { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin: 14px 0 4px; }
.album-imprint { font-family: var(--font-mono); font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.press-accolade {
    font-family: var(--font-mono);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange-deep);
    margin: -24px 0 36px;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================
   AWWWARDS LAYER — loader, cursor, canvas, motion
   ============================================ */

/* Loader (failsafe auto-hide if JS never runs) */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    animation: loaderFailsafe 0s 5s forwards;
}
.loader.done { pointer-events: none; }
@keyframes loaderFailsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-pick { width: 42px; height: 50px; }
.loader-pick-fill { transform-box: fill-box; transform-origin: bottom; animation: pickFill 1.1s var(--ease) forwards; }
@keyframes pickFill { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.loader-word { font-family: var(--font-display); font-weight: 300; font-size: 1rem; letter-spacing: 0.3em; opacity: 0.5; color: var(--ink); }
.loader-bar { width: 120px; height: 1px; background: var(--line); overflow: hidden; }
.loader-bar-fill { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }

/* Custom médiator cursor */
.cursor { position: fixed; top: 0; left: 0; width: 22px; height: 26px; margin: -13px 0 0 -11px; pointer-events: none; z-index: 9998; opacity: 0; transition: opacity 0.3s ease; }
.cursor svg { width: 100%; height: 100%; display: block; transition: transform 0.3s var(--ease); }
.cursor svg path { fill: var(--ink); transition: fill 0.3s ease; }
.has-cursor.cursor-moved .cursor { opacity: 0.85; }
.has-cursor, .has-cursor a, .has-cursor button, .has-cursor [data-cursor] { cursor: none; }
.cursor.is-active svg { transform: scale(1.7) rotate(-8deg); }
.cursor.is-cta svg { transform: scale(2.2) rotate(-8deg); }
.cursor.is-cta svg path { fill: var(--orange); }

/* Ink spine (draws on scroll) */
.ink-spine { position: fixed; top: 0; left: max(12px, 2vw); width: 40px; height: 100vh; z-index: 5; pointer-events: none; opacity: 0.45; }
.ink-spine svg { width: 100%; height: 100%; }
.no-scroll-fx .ink-spine { display: none; }

/* Hero WebGL canvas + CSS fallback */
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.hero-blobs { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 0.8s ease; }
body.no-webgl .hero-canvas { display: none; }
body.no-webgl .hero-blobs { opacity: 1; }
.hero-lines { z-index: 1; }

/* Hero audio-reactive waveform */
.hero-wave { display: block; width: min(380px, 80%); height: 46px; margin: 22px 0 4px; }

/* Hero intro states (only when animating) */
.anim .hero-anim { opacity: 0; transform: translateY(30px); }
.hero-anim.in { opacity: 1; transform: none; }

/* Split text */
.word { display: inline-block; white-space: nowrap; }
.char-wrap { display: inline-block; vertical-align: top; }
.char { display: inline-block; will-change: transform, opacity; }

/* Tilt */
[data-tilt] { transform-style: preserve-3d; }

/* Press marquee */
.press-marquee {
    overflow: hidden; margin: -18px 0 40px;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.press-marquee-track { display: flex; white-space: nowrap; width: max-content; font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-deep); }
.press-marquee-track.animate { animation: marquee 26s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Discography rail */
.disco-track { margin-top: 8px; }
.disco-rail { display: flex; gap: clamp(20px, 4vw, 48px); justify-content: center; flex-wrap: wrap; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }
.disco-rail .disco-card { width: min(300px, 80vw); }

/* ============================================
   COVER DECOR — shapes animated on scroll
   ============================================ */
.section > *:not(.decor) { position: relative; z-index: 1; }
.decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.decor-item { position: absolute; }
.decor-inner {
    opacity: 0;
    transform: scale(0.7);
    transform-origin: center;
    transition: opacity 1.1s ease, transform 1.3s var(--ease);
}
.decor-item.in .decor-inner { opacity: 1; transform: scale(1); }
.decor-inner svg, .decor-inner .d-fill { display: block; }
.d-fill { border-radius: 50%; mix-blend-mode: multiply; }
.d-float { display: block; animation: decorFloat var(--fd, 12s) ease-in-out infinite; animation-delay: var(--fdl, 0s); }
@keyframes decorFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(3deg); }
}
@media (prefers-reduced-motion: reduce) {
    .decor-inner { opacity: 1; transform: none; transition: none; }
    .d-float { animation: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .ink-spine { display: none; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-controls .lang-switch { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-cutout { height: 58%; right: -8%; opacity: 0.92; z-index: 0; }
    .about-grid, .project-card, .album-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-media { max-width: 380px; }
    .listen-player { grid-template-columns: 1fr; }
    .listen-cover { max-width: 360px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
    .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 560px) {
    .tour-item { grid-template-columns: 70px 1fr; row-gap: 8px; }
    .tour-status { grid-column: 2; justify-self: start; }
    .tour-action { grid-column: 2; justify-self: start; }
    .date-day { font-size: 1.8rem; }
    .section-head { gap: 12px; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .blob, .scroll-arrow { animation: none; }
    .reveal { transition: none; opacity: 1; transform: none; }
    * { scroll-behavior: auto; }
}
