/* ============================================================
   CORCEL SIN NOMBRE — "They Always Do"
   Vintage sepia · country-western · empty spaces · seasons
   Palette: deep blacks, warm sepia, muted amber, blood burgundy
   Fonts: Bebas Neue (artist name) · Trahuma (album title) · Lora (body)
   ============================================================ */

/* ── Accessibility: skip link ── */
.skip-link {
   position: absolute;
   top: -100px;
   left: 1rem;
   z-index: 99999;
   padding: 0.6rem 1.2rem;
   background: #0e0b08;
   color: #c4a870;
   border: 1px solid #b48c50;
   font-family: 'Lora', serif;
   font-size: 0.85rem;
   letter-spacing: 0.08em;
   text-decoration: none;
   transition: top 0.2s;
}
.skip-link:focus {
   top: 1rem;
}

/* ── Custom properties ── */
:root {
   --c-black:        #0e0b08;
   --c-deep:         #130f0b;
   --c-panel:        #1a1410;
   --c-panel-mid:    #221b14;
   --c-border:       rgba(180, 140, 80, 0.12);
   --c-border-warm:  rgba(180, 140, 80, 0.28);
   --c-sepia:        #b48c50;
   --c-sepia-dim:    #8a6535;
   --c-amber:        #d4a843;
   --c-amber-dim:    #a07828;
   --c-burgundy:     #7a1e2e;
   --c-blood:        #9e2535;
   --c-rust:         #8b3a20;
   --c-dust:         #c4a870;
   --c-text:         #a89070;
   --c-text-dim:     rgba(168, 144, 112, 0.5);
   --c-text-light:   #c8aa88;
   --c-glow-sepia:   0 0 8px rgba(180,140,80,0.45), 0 0 24px rgba(180,140,80,0.18);
   --c-glow-amber:   0 0 10px rgba(212,168,67,0.5), 0 0 30px rgba(212,168,67,0.2);
   --c-glow-blood:   0 0 10px rgba(122,30,46,0.6), 0 0 30px rgba(122,30,46,0.25);
}

/* ── Trahuma font-face ── */
@font-face {
   font-family: 'Trahuma';
   src: url('../assets/fonts/Trahuma.ttf') format('truetype'),
        url('../assets/fonts/Trahuma.otf') format('opentype');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

/* ── Global reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
   background: var(--c-black);
   font-family: 'Lora', 'Georgia', serif;
   color: var(--c-text);
   font-size: 15px;
   line-height: 1.85;
   letter-spacing: 0.02em;
   -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--c-deep); }
::-webkit-scrollbar-thumb        { background: var(--c-sepia-dim); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover  { background: var(--c-sepia); }

/* ── Selection ── */
::selection { background: var(--c-burgundy); color: #f0e8d8; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
   font-family: 'Lora', 'Georgia', serif;
   font-weight: 700;
   color: var(--c-dust);
   letter-spacing: 0.05em;
}

a { color: var(--c-text); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--c-sepia); }

/* ── Loader ── */
.loader {
   background: var(--c-black) !important;
   z-index: 10000;
}
.loader .spinner {
   stroke: var(--c-sepia) !important;
   fill: var(--c-black) !important;
}

/* ──────────────────────────────────────────────
   INTRO OVERLAY — "Hear the Road?"
────────────────────────────────────────────── */
#ith-intro-overlay {
   position: fixed;
   inset: 0;
   background: radial-gradient(ellipse at center, #1a1007 0%, #0e0b08 100%);
   z-index: 10001;
   display: none;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   overflow: hidden;
}
#ith-intro-overlay.active { display: flex; }

/* Dust haze background */
#ith-intro-overlay::before {
   content: '';
   position: absolute;
   inset: -20%;
   background:
      radial-gradient(ellipse 65% 45% at 25% 65%, rgba(180,140,80,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 55% 40% at 80% 30%, rgba(122,30,46,0.05) 0%, transparent 70%);
   animation: dustDrift 14s ease-in-out infinite alternate;
   pointer-events: none;
}
@keyframes dustDrift {
   0%   { transform: translateX(-4%) translateY(-2%) scale(1); }
   100% { transform: translateX(4%)  translateY(3%)  scale(1.06); }
}

/* Decorative horizontal rule on overlay */
#ith-intro-overlay::after {
   content: '';
   position: absolute;
   bottom: 30%;
   left: 50%;
   transform: translateX(-50%);
   width: 280px;
   height: 1px;
   background: linear-gradient(to right, transparent, var(--c-sepia-dim), transparent);
   opacity: 0.4;
   pointer-events: none;
}

.intro-title {
   font-family: 'Bebas Neue', 'Lora', serif;
   font-size: clamp(3.5rem, 11vw, 8rem);
   color: var(--c-dust);
   text-shadow: 0 2px 12px rgba(0,0,0,0.8), var(--c-glow-sepia);
   letter-spacing: 0.12em;
   text-align: center;
   position: relative;
   z-index: 2;
   animation: titleBreath 6s ease-in-out infinite;
}
@keyframes titleBreath {
   0%, 100% { text-shadow: 0 2px 12px rgba(0,0,0,0.8), var(--c-glow-sepia); opacity: 0.92; }
   50%       { text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 14px rgba(180,140,80,0.65), 0 0 40px rgba(180,140,80,0.25); opacity: 1; }
}

.intro-album-line {
   font-family: 'Trahuma', 'Georgia', serif;
   font-size: clamp(1.1rem, 3.5vw, 2rem);
   color: var(--c-blood);
   letter-spacing: 0.06em;
   text-align: center;
   position: relative;
   z-index: 2;
   margin-top: -0.25rem;
   text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 0 20px rgba(122,30,46,0.4);
   animation: albumLineBreath 6s ease-in-out infinite;
   animation-delay: 0.5s;
}
@keyframes albumLineBreath {
   0%, 100% { opacity: 0.85; }
   50%       { opacity: 1; text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 0 30px rgba(122,30,46,0.6); }
}

.intro-sub {
   font-size: clamp(0.6rem, 1.8vw, 0.78rem);
   letter-spacing: 0.32em;
   text-transform: uppercase;
   color: var(--c-text-dim);
   margin: 2rem 0 3rem;
   font-family: 'Lora', serif;
   font-style: italic;
   position: relative;
   z-index: 2;
}

.intro-btns {
   display: flex;
   gap: 1.5rem;
   position: relative;
   z-index: 2;
}
.intro-btn {
   padding: 0.85rem 3rem;
   font-family: 'Lora', 'Georgia', serif;
   font-size: 0.72rem;
   font-weight: 600;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   background: transparent;
   cursor: pointer;
   transition: all 0.4s ease;
   border-radius: 0;
}
.intro-btn.yes {
   border: 1px solid var(--c-sepia);
   color: var(--c-sepia);
   box-shadow: 0 0 10px rgba(180,140,80,0.2), inset 0 0 10px rgba(180,140,80,0.04);
}
.intro-btn.yes:hover {
   background: rgba(180,140,80,0.1);
   color: var(--c-dust);
   border-color: var(--c-dust);
   box-shadow: var(--c-glow-amber);
}
.intro-btn.no {
   border: 1px solid rgba(168,144,112,0.2);
   color: var(--c-text-dim);
}
.intro-btn.no:hover {
   border-color: rgba(168,144,112,0.45);
   color: var(--c-text);
}

/* ── Intro corner flourishes (barbed wire / fence SVG) ── */
.intro-corner {
   position: absolute;
   pointer-events: none;
   z-index: 1;
   opacity: 0.18;
}
.intro-corner.tl { top: 0; left: 0; }
.intro-corner.tr { top: 0; right: 0; transform: scaleX(-1); }
.intro-corner.bl { bottom: 0; left: 0; transform: scaleY(-1); }
.intro-corner.br { bottom: 0; right: 0; transform: scale(-1,-1); }

/* ──────────────────────────────────────────────
   MAIN WRAPPER
────────────────────────────────────────────── */
.corcel-theme { background: var(--c-black); }
#main-content { display: none; }

/* ──────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────── */
.header.default {
   background: transparent !important;
   border-bottom: none;
   padding: 1.35rem 2rem;
}
.header.switched-header {
   background: rgba(14, 11, 8, 0.94) !important;
   backdrop-filter: blur(10px);
   border-bottom: 1px solid var(--c-border) !important;
   padding: 0.9rem 2rem;
}
.header.default .logo h2,
.header.switched-header .logo h2 {
   font-family: 'Bebas Neue', 'Lora', serif !important;
   font-size: clamp(1.1rem, 2.8vw, 1.5rem) !important;
   color: var(--c-dust) !important;
   text-shadow: var(--c-glow-sepia) !important;
   letter-spacing: 0.14em;
   transition: text-shadow 0.3s;
}
.header.default .logo h2:hover,
.header.switched-header .logo h2:hover {
   text-shadow: var(--c-glow-amber) !important;
   color: var(--c-amber) !important;
}
.header.default .main-menu li a,
.header.switched-header .main-menu li a {
   font-size: 0.7rem !important;
   letter-spacing: 0.18em !important;
   text-transform: uppercase !important;
   color: var(--c-text) !important;
   font-weight: 400;
   font-style: italic;
   font-family: 'Lora', serif !important;
   transition: all 0.3s ease;
}
.header.default .main-menu li a:hover,
.header.switched-header .main-menu li a:hover {
   color: var(--c-sepia) !important;
   text-shadow: 0 0 8px rgba(180,140,80,0.5) !important;
}
/* hamburger lines */
.mobile-but .lines,
.mobile-but .lines:before,
.mobile-but .lines:after { background: var(--c-sepia) !important; }

/* Nav underline hover */
.main-menu li a::after {
   background: var(--c-sepia) !important;
   box-shadow: 0 0 5px rgba(180,140,80,0.5) !important;
}

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero .hero-slide {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 6rem 1rem;
   position: relative;
   overflow: hidden;
}
.hero .background-img {
   position: absolute;
   inset: 0;
   z-index: 0;
}
.hero .background-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
   filter: brightness(0.38) saturate(0.55) sepia(0.45);
   margin: 0;
}
/* Layered vignette */
.hero .hero-slide::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
      linear-gradient(to bottom, rgba(14,11,8,0.45) 0%, rgba(14,11,8,0.1) 35%, rgba(14,11,8,0.72) 100%),
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(180,140,80,0.04) 0%, transparent 70%);
   z-index: 1;
   pointer-events: none;
}

/* ── Hero content: fully override main.css positioning hack ── */
.hero-content,
.container.hero-content {
   position: relative !important;
   top: auto !important;
   left: auto !important;
   transform: none !important;
   -webkit-transform: none !important;
   -ms-transform: none !important;
   z-index: 10;
   text-align: center;
   width: 100%;
   /* Override Bootstrap container max-width constraints */
   max-width: 100% !important;
   padding-left: 1.5rem !important;
   padding-right: 1.5rem !important;
   margin-left: auto !important;
   margin-right: auto !important;
}

/* Artist name — one long dramatic line, light cream */
.hero-title-corcel {
   font-family: 'Bebas Neue', 'Lora', serif;
   /* Scale tightly so it always fits one line without overflowing */
   font-size: clamp(2rem, 7.5vw, 8.5rem);
   color: #ede8dc;
   text-shadow:
      0 4px 28px rgba(0,0,0,0.95),
      0 0 12px rgba(237,232,220,0.12),
      0 2px 4px rgba(0,0,0,0.8);
   line-height: 1;
   letter-spacing: 0.16em;
   white-space: nowrap;
   /* Shrink to fit if still overflowing narrow viewports */
   max-width: 100%;
   overflow: hidden;
   animation: heroBreath 7s ease-in-out infinite;
}
@keyframes heroBreath {
   0%, 100% { text-shadow: 0 4px 28px rgba(0,0,0,0.95), 0 0 12px rgba(237,232,220,0.1); }
   50%       { text-shadow: 0 4px 32px rgba(0,0,0,0.98), 0 0 22px rgba(237,232,220,0.18), 0 0 55px rgba(180,140,80,0.15); }
}

/* Album title — bigger, bolder presence */
.hero-album-title {
   font-family: 'Trahuma', 'Georgia', serif;
   font-size: clamp(1.8rem, 5.5vw, 4rem);
   color: var(--c-blood);
   text-shadow: 0 2px 14px rgba(0,0,0,0.9), 0 0 30px rgba(122,30,46,0.5);
   letter-spacing: 0.06em;
   margin-top: 0.6rem;
   animation: albumTitleBreath 6s ease-in-out infinite;
   animation-delay: 0.8s;
}
@keyframes albumTitleBreath {
   0%, 100% { opacity: 0.9; }
   50%       { opacity: 1; text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 0 40px rgba(158,37,53,0.65); }
}

.hero-scroll-cta {
   margin-top: 2.5rem;
   display: inline-block;
   font-size: 0.65rem;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   color: var(--c-text-dim);
   border: 1px solid rgba(180,140,80,0.2);
   padding: 0.6rem 1.8rem;
   border-radius: 0;
   transition: all 0.4s;
   font-family: 'Lora', serif;
   font-style: italic;
}
.hero-scroll-cta:hover {
   color: var(--c-sepia);
   border-color: var(--c-sepia);
   box-shadow: var(--c-glow-sepia);
}

/* ── Dust particle canvas ── */
.spore-canvas {
   position: absolute;
   inset: 0;
   pointer-events: none;
   z-index: 2;
   overflow: hidden;
}
.spore {
   position: absolute;
   border-radius: 50%;
   animation: dustFloat linear infinite;
   opacity: 0;
}
@keyframes dustFloat {
   0%   { transform: translateY(0) translateX(0)   scale(0);    opacity: 0; }
   8%   { opacity: 0.5; transform: translateY(-5vh)  translateX(3px)  scale(1); }
   92%  { opacity: 0.12; }
   100% { transform: translateY(-90vh) translateX(-8px) scale(0.3); opacity: 0; }
}

/* ── Hero smoke ── */
.hero-smoke {
   position: absolute;
   inset: 0;
   pointer-events: none;
   z-index: 3;
   overflow: hidden;
}

.smoke-puff {
   position: absolute;
   border-radius: 50%;
   background: radial-gradient(ellipse at center, rgba(18,14,10,0.82) 0%, rgba(12,9,6,0.55) 40%, transparent 72%);
   filter: blur(28px);
   /* animation-name set per puff below; shared props here */
   animation-timing-function: ease-in-out;
   animation-iteration-count: infinite;
   animation-fill-mode: both;
   will-change: transform, opacity;
}

/* Each puff — size, anchor, individual animation name for independent motion */
.sp-1 {
   width: 55vw; height: 55vw;
   left: -22vw; bottom: -14vw;
   animation-name: smokeA; animation-duration: 20s; animation-delay: 0s;
}
.sp-2 {
   width: 44vw; height: 44vw;
   right: -16vw; bottom: -12vw;
   animation-name: smokeB; animation-duration: 25s; animation-delay: -7s;
}
.sp-3 {
   width: 36vw; height: 36vw;
   left: -10vw; top: -10vw;
   animation-name: smokeC; animation-duration: 28s; animation-delay: -4s;
}
.sp-4 {
   width: 32vw; height: 32vw;
   right: -8vw; top: -8vw;
   animation-name: smokeD; animation-duration: 23s; animation-delay: -13s;
}
.sp-5 {
   width: 50vw; height: 32vw;
   left: 4vw; bottom: -8vw;
   background: radial-gradient(ellipse at center, rgba(14,10,7,0.72) 0%, rgba(10,7,4,0.38) 45%, transparent 72%);
   animation-name: smokeA; animation-duration: 32s; animation-delay: -5s;
}
.sp-6 {
   width: 38vw; height: 30vw;
   right: 6vw; bottom: -2vw;
   background: radial-gradient(ellipse at center, rgba(20,10,6,0.65) 0%, transparent 68%);
   animation-name: smokeB; animation-duration: 22s; animation-delay: -17s;
}
.sp-7 {
   width: 28vw; height: 28vw;
   left: 28vw; top: -6vw;
   background: radial-gradient(ellipse at center, rgba(16,12,8,0.52) 0%, transparent 65%);
   animation-name: smokeC; animation-duration: 34s; animation-delay: -9s;
}
.sp-8 {
   width: 22vw; height: 22vw;
   left: -5vw; bottom: 18vh;
   background: radial-gradient(ellipse at center, rgba(18,10,6,0.58) 0%, transparent 65%);
   animation-name: smokeD; animation-duration: 19s; animation-delay: -2s;
}

/* Four independent drift patterns — no CSS variable arithmetic */
@keyframes smokeA {
   0%   { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.82; }
   30%  { transform: translateY(-4vh)  translateX(2vw)  scale(1.07); opacity: 0.55; }
   60%  { transform: translateY(-8vh)  translateX(-2vw) scale(1.13); opacity: 0.75; }
   100% { transform: translateY(0)     translateX(1vw)  scale(1);    opacity: 0.82; }
}
@keyframes smokeB {
   0%   { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.75; }
   40%  { transform: translateY(-5vh)  translateX(-3vw) scale(1.09); opacity: 0.48; }
   70%  { transform: translateY(-3vh)  translateX(2vw)  scale(1.05); opacity: 0.68; }
   100% { transform: translateY(0)     translateX(-1vw) scale(1);    opacity: 0.75; }
}
@keyframes smokeC {
   0%   { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.65; }
   25%  { transform: translateY(-6vh)  translateX(3vw)  scale(1.11); opacity: 0.42; }
   65%  { transform: translateY(-2vh)  translateX(-2vw) scale(1.06); opacity: 0.60; }
   100% { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.65; }
}
@keyframes smokeD {
   0%   { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.70; }
   45%  { transform: translateY(-7vh)  translateX(-2vw) scale(1.10); opacity: 0.45; }
   80%  { transform: translateY(-4vh)  translateX(3vw)  scale(1.05); opacity: 0.65; }
   100% { transform: translateY(0)     translateX(0)    scale(1);    opacity: 0.70; }
}

/* Fixed side vines hidden (not used in this theme) */
.side-plant  { display: none !important; }
.hero-plant  { display: none !important; }

/* ──────────────────────────────────────────────
   SECTION DIVIDER
────────────────────────────────────────────── */
.neon-rule {
   border: none;
   height: 1px;
   background: linear-gradient(to right, transparent, var(--c-sepia-dim), transparent);
   box-shadow: 0 0 6px rgba(180,140,80,0.2);
   margin: 0;
}
.bg-secondary { border-top: 1px solid rgba(180,140,80,0.08) !important; }

/* ──────────────────────────────────────────────
   SECTION COMMON
────────────────────────────────────────────── */
.section-title {
   font-family: 'Bebas Neue', 'Lora', serif !important;
   font-weight: 400 !important;
   color: var(--c-dust) !important;
   letter-spacing: 0.14em !important;
   text-shadow: 0 2px 10px rgba(0,0,0,0.6) !important;
}
.text-accent { color: var(--c-sepia-dim) !important; font-style: italic; }
.section-eyebrow {
   font-size: 0.62rem;
   letter-spacing: 0.35em;
   text-transform: uppercase;
   color: var(--c-blood);
   display: block;
   margin-bottom: 0.4rem;
   font-family: 'Lora', serif;
   opacity: 0.85;
}

/* ──────────────────────────────────────────────
   MUSIC PLAYER — "They Always Do" Preview
────────────────────────────────────────────── */
#music-player {
   background: var(--c-deep) !important;
   border-top: 1px solid var(--c-border);
   border-bottom: 1px solid var(--c-border);
}
.player-wrap {
   max-width: 640px;
   margin: 0 auto;
   text-align: center;
   padding: 3rem 1.5rem;
}
.player-album-art {
   width: clamp(160px, 30vw, 260px);
   height: clamp(160px, 30vw, 260px);
   object-fit: cover;
   margin: 0 auto 2rem;
   display: block;
   border: 1px solid var(--c-border-warm);
   box-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 0 40px rgba(180,140,80,0.07);
   filter: sepia(0.3) saturate(0.8);
   transition: filter 0.4s, box-shadow 0.4s;
}
.player-album-art:hover {
   filter: sepia(0.15) saturate(1);
   box-shadow: 0 4px 40px rgba(0,0,0,0.8), 0 0 50px rgba(180,140,80,0.15);
}
.player-title {
   font-family: 'Trahuma', 'Georgia', serif;
   font-size: clamp(1.5rem, 4vw, 2.4rem);
   color: var(--c-blood);
   letter-spacing: 0.06em;
   margin-bottom: 0.3rem;
   text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.player-artist {
   font-family: 'Bebas Neue', serif;
   font-size: clamp(0.9rem, 2vw, 1.1rem);
   letter-spacing: 0.2em;
   color: var(--c-sepia);
   margin-bottom: 1.8rem;
}
.player-controls {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1.5rem;
   margin-bottom: 1.4rem;
}
.player-play-btn {
   width: 54px;
   height: 54px;
   border-radius: 50%;
   border: 1px solid var(--c-sepia);
   background: transparent;
   color: var(--c-sepia);
   font-size: 1.1rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.35s ease;
   position: relative;
}
.player-play-btn:hover {
   background: rgba(180,140,80,0.1);
   border-color: var(--c-dust);
   color: var(--c-dust);
   box-shadow: var(--c-glow-sepia);
}
.player-play-btn .play-icon  { display: block; }
.player-play-btn .pause-icon { display: none; }
.player-play-btn.playing .play-icon  { display: none; }
.player-play-btn.playing .pause-icon { display: block; }

/* Progress bar */
.player-progress-wrap {
   width: 100%;
   max-width: 440px;
   margin: 0 auto 0.7rem;
   cursor: pointer;
}
.player-progress-bar {
   width: 100%;
   height: 2px;
   background: rgba(180,140,80,0.15);
   border-radius: 1px;
   position: relative;
   overflow: hidden;
}
.player-progress-fill {
   height: 100%;
   width: 0%;
   background: linear-gradient(to right, var(--c-sepia-dim), var(--c-amber));
   border-radius: 1px;
   transition: width 0.25s linear;
}
.player-time {
   display: flex;
   justify-content: space-between;
   font-size: 0.62rem;
   letter-spacing: 0.1em;
   color: var(--c-text-dim);
   margin-top: 0.4rem;
   font-family: 'Lora', serif;
}
.player-volume-wrap {
   display: flex;
   align-items: center;
   gap: 0.6rem;
   justify-content: center;
   margin-top: 0.5rem;
}
.player-volume-icon { color: var(--c-text-dim); font-size: 0.75rem; }
.player-volume-slider {
   -webkit-appearance: none;
   width: 80px;
   height: 2px;
   background: rgba(180,140,80,0.15);
   outline: none;
   border-radius: 1px;
   cursor: pointer;
}
.player-volume-slider::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--c-sepia);
   cursor: pointer;
   transition: background 0.2s;
}
.player-volume-slider::-webkit-slider-thumb:hover { background: var(--c-dust); }
.player-note {
   font-size: 0.62rem;
   letter-spacing: 0.12em;
   color: var(--c-text-dim);
   margin-top: 1.2rem;
   font-style: italic;
   font-family: 'Lora', serif;
}

/* ──────────────────────────────────────────────
   DISCOGRAPHY
────────────────────────────────────────────── */
.discography { background: var(--c-deep) !important; }

.block-album.block-album-card {
   background: var(--c-panel);
   border: 1px solid var(--c-border);
   border-radius: 0;
   overflow: hidden;
   transition: all 0.4s ease;
   position: relative;
}
.block-album.block-album-card::after {
   content: '';
   position: absolute;
   inset: 0;
   border: 1px solid transparent;
   transition: border-color 0.4s, box-shadow 0.4s;
   pointer-events: none;
}
.block-album.block-album-card:hover {
   transform: translateY(-4px);
   background: rgba(180,140,80,0.03);
}
.block-album.block-album-card:hover::after {
   border-color: var(--c-sepia-dim);
   box-shadow: var(--c-glow-sepia);
}
.block-album img {
   border: none !important;
   box-shadow: none !important;
   transition: filter 0.4s ease, transform 0.4s ease;
   width: 100%;
   margin: 0;
   filter: sepia(0.35) saturate(0.75);
}
.block-album:hover img {
   filter: sepia(0.15) saturate(0.95) brightness(1.05);
   transform: scale(1.02);
}

/* Featured / album */
.block-album.featured-album {
   border-color: rgba(180,140,80,0.3) !important;
   box-shadow: 0 0 18px rgba(180,140,80,0.1);
}
.block-album.featured-album img {
   filter: sepia(0.2) saturate(0.85);
}
.block-album.featured-album:hover {
   box-shadow: var(--c-glow-amber);
}

.album-meta {
   padding: 0.75rem 1rem 1rem;
   font-size: 0.7rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--c-text-dim);
   font-family: 'Lora', serif;
}
.album-meta strong {
   display: block;
   color: var(--c-text);
   font-size: 0.78rem;
   letter-spacing: 0.06em;
   margin-bottom: 0.15rem;
}
.album-link { display: block; overflow: hidden; }

/* Christmas EP banner */
.christmas-ep-badge {
   display: inline-block;
   font-size: 0.58rem;
   letter-spacing: 0.18em;
   color: var(--c-blood);
   border: 1px solid rgba(122,30,46,0.4);
   padding: 0.12rem 0.45rem;
   margin-left: 0.4rem;
   text-transform: uppercase;
   font-family: 'Lora', serif;
   vertical-align: middle;
}

/* ──────────────────────────────────────────────
   BLOG / NEWS
────────────────────────────────────────────── */
.news.main { background: var(--c-panel-mid) !important; }
.news .section-title { color: var(--c-dust) !important; }
.news h2 { color: var(--c-dust) !important; font-family: 'Bebas Neue', serif !important; letter-spacing: 0.1em !important; }
.news span,
.news p  { color: var(--c-text) !important; }
.news a  { color: var(--c-sepia-dim) !important; }
.news a:hover { color: var(--c-sepia) !important; text-shadow: 0 0 6px rgba(180,140,80,0.4) !important; }
.news-list li { border-bottom: 1px solid var(--c-border); padding-bottom: 3rem; }
.news-list li:last-child { border-bottom: none; }

/* ──────────────────────────────────────────────
   CONTACT / SOCIAL
────────────────────────────────────────────── */
.contact.main { background: var(--c-deep) !important; }
.contact .section-title { color: var(--c-dust) !important; }

.block-social li a {
   color: var(--c-text) !important;
   border: 1px solid rgba(180,140,80,0.15) !important;
   padding: 0.4rem 0.85rem !important;
   font-size: 0.75rem !important;
   letter-spacing: 0.08em;
   transition: all 0.3s ease !important;
   border-radius: 0;
   display: inline-block;
   margin: 0.25rem;
   font-family: 'Lora', serif;
}
.block-social li a:hover {
   color: var(--c-sepia) !important;
   border-color: var(--c-sepia) !important;
   box-shadow: var(--c-glow-sepia) !important;
}
.block-social li a.stream-spotify:hover {
   color: var(--c-amber) !important;
   border-color: var(--c-amber) !important;
   box-shadow: var(--c-glow-amber) !important;
}
.block-social li a.stream-apple:hover {
   color: var(--c-dust) !important;
   border-color: var(--c-dust) !important;
}

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
   background: var(--c-black) !important;
   border-top: 1px solid var(--c-border) !important;
}
.footer small,
.footer a     { color: var(--c-text-dim) !important; font-size: 0.68rem; letter-spacing: 0.06em; font-family: 'Lora', serif; }
.footer a:hover { color: var(--c-sepia) !important; }

/* Back-to-top */
.block-top {
   background: var(--c-panel) !important;
   border: 1px solid var(--c-border) !important;
   color: var(--c-sepia) !important;
}
.block-top:hover {
   background: rgba(180,140,80,0.1) !important;
   color: var(--c-dust) !important;
   box-shadow: var(--c-glow-sepia) !important;
}

/* ──────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────── */
.btn-primary,
.stream-btn {
   background: transparent !important;
   border: 1px solid var(--c-sepia) !important;
   color: var(--c-sepia) !important;
   box-shadow: 0 0 8px rgba(180,140,80,0.15) !important;
   font-family: 'Lora', 'Georgia', serif !important;
   font-size: 0.72rem !important;
   font-weight: 400 !important;
   font-style: italic !important;
   letter-spacing: 0.16em !important;
   text-transform: uppercase;
   transition: all 0.35s ease !important;
   border-radius: 0 !important;
}
.btn-primary:hover,
.stream-btn:hover {
   background: rgba(180,140,80,0.1) !important;
   color: var(--c-dust) !important;
   box-shadow: var(--c-glow-amber) !important;
}

/* ──────────────────────────────────────────────
   DUST / PARTICLE ANIMATION
────────────────────────────────────────────── */
@keyframes stemGrow {
   0%   { stroke-dashoffset: 400; opacity: 0; }
   30%  { opacity: 0.6; }
   100% { stroke-dashoffset: 0; opacity: 0.7; }
}
@keyframes leafUnfurl {
   0%   { transform: scale(0.1) rotate(-30deg); opacity: 0; transform-origin: bottom left; }
   60%  { opacity: 0.6; }
   100% { transform: scale(1) rotate(0deg); opacity: 0.6; transform-origin: bottom left; }
}
@keyframes leafSway {
   0%, 100% { transform: rotate(-2deg); }
   50%       { transform: rotate(2deg); }
}
@keyframes leafSwayAlt {
   0%, 100% { transform: rotate(1.5deg); }
   50%       { transform: rotate(-3deg); }
}

/* ──────────────────────────────────────────────
   GENERIC HOVER / GLOW
────────────────────────────────────────────── */
.main-menu li a::after {
   background: var(--c-sepia) !important;
   box-shadow: 0 0 4px rgba(180,140,80,0.4) !important;
}

a:not(.btn):not(.cta-btn):not(.intro-btn):not(.block-top) {
   transition: color 0.3s, text-shadow 0.3s;
}
a:not(.btn):not(.cta-btn):not(.intro-btn):not(.block-top):hover {
   color: var(--c-sepia);
   text-shadow: 0 0 6px rgba(180,140,80,0.35);
}

/* ──────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 860px) {
   /* Let title wrap naturally on tablet */
   .hero-title-corcel {
      white-space: normal;
      font-size: clamp(2.8rem, 13vw, 6rem);
      letter-spacing: 0.1em;
   }
}
@media (max-width: 768px) {
   .intro-btns { flex-direction: column; gap: 1rem; }
   .intro-btn  { width: 200px; text-align: center; }
   .player-controls { gap: 1rem; }
}
@media (max-width: 480px) {
   .hero-title-corcel { font-size: clamp(2rem, 14vw, 4rem); letter-spacing: 0.08em; }
   .hero-album-title  { font-size: clamp(1.3rem, 7vw, 2rem); }
}
