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

:root {
  --black:   #0a0810;
  --dark:    #0e0c16;
  --dark2:   #12101c;
  --border:  rgba(160,100,20,0.24);
  --amber:   #b86010;
  --amber2:  #d47818;
  --copper:  #d4904a;
  --text:    #ffffff;
  --muted:   #ddb870;
  --faint:   rgba(232,216,180,0.4);

  /* FONT STACK */
  --font-display: 'Cinzel', 'Georgia', serif;
  --font-logo:    'Cinzel Decorative', 'Cinzel', 'Georgia', serif;
  --font-body:    'EB Garamond', 'Georgia', serif;
  --font-ui:      'Josefin Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.85;
  overflow-x: hidden;
  text-shadow: 0 0 20px rgba(255,220,140,0.4), 0 0 6px rgba(255,220,140,0.25);
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='translate(28,2) rotate(45)'%3E%3Cellipse cx='0' cy='-8' rx='3.5' ry='9' fill='%23f5e0a0' stroke='%23b8860b' stroke-width='0.8'/%3E%3Cellipse cx='0' cy='-8' rx='1.5' ry='5' fill='%23fffde0'/%3E%3Cellipse cx='0' cy='-17' rx='1.5' ry='4' fill='%23d4a017' stroke='%23b8860b' stroke-width='0.6'/%3E%3Cpath d='M-3.5,-8 Q-6,0 -2,6 L0,8 L2,6 Q6,0 3.5,-8 Z' fill='%23f5e0a0' stroke='%23b8860b' stroke-width='0.7'/%3E%3Cpath d='M0,-8 Q-4,-2 -1.5,6' stroke='%23d4a017' stroke-width='0.5' fill='none'/%3E%3Cpath d='M0,-8 Q4,-2 1.5,6' stroke='%23d4a017' stroke-width='0.5' fill='none'/%3E%3Crect x='-1' y='6' width='2' height='6' rx='1' fill='%23b8860b'/%3E%3Cpolygon points='0,14 -2,12 2,12' fill='%23a0702a'/%3E%3C/g%3E%3C/svg%3E") 28 2, auto;
}

/* Keep feather cursor on interactive elements — browsers override body cursor on links/buttons */
a, button, [role="button"], select, label, .card, .music-track {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cg transform='translate(28,2) rotate(45)'%3E%3Cellipse cx='0' cy='-8' rx='3.5' ry='9' fill='%23f5e0a0' stroke='%23b8860b' stroke-width='0.8'/%3E%3Cellipse cx='0' cy='-8' rx='1.5' ry='5' fill='%23fffde0'/%3E%3Cellipse cx='0' cy='-17' rx='1.5' ry='4' fill='%23d4a017' stroke='%23b8860b' stroke-width='0.6'/%3E%3Cpath d='M-3.5,-8 Q-6,0 -2,6 L0,8 L2,6 Q6,0 3.5,-8 Z' fill='%23f5e0a0' stroke='%23b8860b' stroke-width='0.7'/%3E%3Cpath d='M0,-8 Q-4,-2 -1.5,6' stroke='%23d4a017' stroke-width='0.5' fill='none'/%3E%3Cpath d='M0,-8 Q4,-2 1.5,6' stroke='%23d4a017' stroke-width='0.5' fill='none'/%3E%3Crect x='-1' y='6' width='2' height='6' rx='1' fill='%23b8860b'/%3E%3Cpolygon points='0,14 -2,12 2,12' fill='%23a0702a'/%3E%3C/g%3E%3C/svg%3E") 28 2, auto;
}

/* Warm matte vignette */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 997;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,6,0,0.55) 100%);
}

/* Film grain — heavier for vintage feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
}

/* ── Stars canvas ───────────────────────────────────────────── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* ── Eclipse background ─────────────────────────────────────── */
.eclipse-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110vmax;
  height: 110vmax;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
}
.eclipse-svg { width: 100%; height: 100%; }

/* ── NAV ────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: all 0.5s;
}
#nav.scrolled {
  background: rgba(11,8,0,0.96);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-logo);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--amber2);
  text-decoration: none;
  transition: text-shadow 0.3s;
}
.nav-logo:hover {
  text-shadow: 0 0 16px rgba(210,130,8,0.75), 0 0 40px rgba(185,105,5,0.45);
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 50%; right: 50%;
  height: 1px;
  background: var(--amber);
  transition: left 0.25s, right 0.25s;
}
.nav-links a:hover {
  color: var(--amber2);
  text-shadow: 0 0 12px rgba(200,128,14,0.50);
}
.nav-links a:hover::after { left: 0; right: 0; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
}
.hero-content { max-width: 960px; }

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.2s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-name-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-decoration: none;
}

/* Hover: aura intensifies like the sun flaring */
.hero-name-svg {
  transition: filter 0.5s ease;
  pointer-events: none;
}
.hero-name-wrap:hover .hero-name-svg {
  filter: drop-shadow(0 0 28px rgba(210,130,8,0.70)) drop-shadow(0 0 64px rgba(185,105,5,0.45)) drop-shadow(0 0 120px rgba(160,85,0,0.25));
}
/* The SVG arc name — JS fades it in */
.hero-name-svg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0; /* JS sets to 1 after load */
}
.hero-arc-text, .hero-arc-glow {
  /* font props already inline on the SVG elements */
}
/* Legacy h1.hero-name — not used when SVG is present, keep for fallback */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 180px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 12px;
  line-height: 0.9;
  background: linear-gradient(165deg, #f8ecc8 0%, #e09020 45%, #8a4a04 80%, #4a2002 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: none; /* hidden — SVG replaces it */
}

/* Corona sweep — entry animation only (no mix-blend-mode = no black box) */
#coronaSweep {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 200%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(212, 120, 10, 0.12) 20%,
    rgba(255, 210, 60, 0.6) 44%,
    rgba(255, 250, 180, 0.92) 50%,
    rgba(255, 210, 60, 0.6) 56%,
    rgba(212, 100, 10, 0.12) 80%,
    transparent 100%
  );
  filter: blur(14px);
  z-index: 10;
  border-radius: 50%;
  /* No mix-blend-mode — was causing black rendering artifact */
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 18px);
  font-style: italic;
  color: var(--muted);
  margin-top: 24px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 1.2s 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 52px auto;
  opacity: 0;
  animation: fadeUp 1.2s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-rule-line {
  display: block;
  width: 140px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,112,10,0.6));
}
.hero-rule + .hero-rule-line,
.hero-rule .hero-rule-line:last-child {
  background: linear-gradient(to left, transparent, rgba(200,112,10,0.6));
}
.hero-rule-gem {
  color: var(--amber);
  font-size: 10px;
  opacity: 0.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 1s cubic-bezier(0.22,1,0.36,1) forwards;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
}
.hero-scroll-cue span {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}
.hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2.4s 2s infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  border: 1px solid var(--amber);
  color: var(--black);
  background: var(--amber);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--amber2);
  border-color: var(--amber2);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(200,130,18,0.30);
}
.btn-ghost {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 48px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: var(--amber2);
  color: var(--amber2);
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(200,130,18,0.35), inset 0 0 12px rgba(200,130,18,0.08);
  text-shadow: 0 0 12px rgba(210,130,8,0.60);
}

/* ── SECTIONS — each a celestial body floating in the star field ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  overflow: hidden;
  background: rgba(10, 8, 20, 0.94);
  border-radius: 22px;
  max-width: 1320px;
  margin: 28px auto;
  border: 1px solid rgba(160, 100, 20, 0.14);
}

/* Individual atmospheric glows — each section its own world */
#about    { box-shadow: 0 0 60px 8px rgba(180,95,10,0.18),  0 0 120px 20px rgba(160,80,5,0.10),  inset 0 0 40px rgba(180,95,10,0.04); }
#projects { box-shadow: 0 0 60px 8px rgba(40,60,180,0.18),  0 0 120px 20px rgba(20,40,160,0.10), inset 0 0 40px rgba(40,60,180,0.04); }
#music    { box-shadow: 0 0 60px 8px rgba(110,30,160,0.20), 0 0 120px 20px rgba(90,20,140,0.12), inset 0 0 40px rgba(110,30,160,0.05); }
#art      { box-shadow: 0 0 60px 8px rgba(20,140,100,0.18), 0 0 120px 20px rgba(10,120,80,0.10), inset 0 0 40px rgba(20,140,100,0.04); }
#blog     { box-shadow: 0 0 60px 8px rgba(50,90,160,0.18),  0 0 120px 20px rgba(30,70,140,0.10), inset 0 0 40px rgba(50,90,160,0.04); }
#contact  { box-shadow: 0 0 60px 8px rgba(180,95,10,0.18),  0 0 120px 20px rgba(160,80,5,0.10),  inset 0 0 40px rgba(180,95,10,0.04); }

/* Hero stays transparent — the star field IS the hero background */
#hero {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  max-width: 100%;
  margin: 0;
}
section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border) 30%, var(--amber) 50%, var(--border) 70%, transparent 100%);
}

.section-inner { max-width: 1060px; margin: 0 auto; }
.section-inner-narrow { max-width: 660px; margin: 0 auto; text-align: center; }

/* Section header — ghost number behind title */
.section-header {
  margin-bottom: 56px;
  position: relative;
}
.section-num {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -4px;
  color: var(--amber);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  text-transform: none;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.title-rule {
  width: 120px;
  height: 2px;
  background: linear-gradient(to right, var(--amber), var(--amber2), transparent);
  margin: 0;
  transform: skewX(-20deg);
}
.section-inner .title-rule { margin: 0; }

/* Alternating section alignment for visual rhythm */
#projects .section-inner { padding-left: 40px; border-left: 2px solid rgba(180,130,30,0.15); }
#music .section-inner    { padding-right: 40px; text-align: right; }
#music .title-rule       { margin-left: auto; transform: skewX(20deg); }
#blog .section-inner     { padding-left: 60px; }
#art .section-inner      { padding-right: 60px; text-align: right; }
#art .title-rule         { margin-left: auto; }
.section-inner .title-rule { margin: 0; }

/* ── ABOUT (mythical scroll) ─────────────────────────────────── */
#about { padding: 56px 24px; overflow: visible; border-radius: 22px; }
#about .section-header { text-align: center; }
#about .title-rule     { margin: 0 auto; }

/* Parchment body — wavy sides via SVG clipPath, very transparent */
.about-scroll {
  position: relative;
  background: rgba(35, 12, 2, 0.07);
  border-left:  1px solid rgba(200, 145, 40, 0.10);
  border-right: 1px solid rgba(200, 145, 40, 0.10);
  backdrop-filter: blur(2px);
  clip-path: url(#scrollClip);
}

/* Cylindrical rod — ghost of a tube, very transparent */
.about-scroll-rod {
  height: 22px;
  position: relative;
  background: linear-gradient(to bottom,
    rgba(20, 7, 1, 0.18)    0%,
    rgba(165, 100, 18, 0.28) 20%,
    rgba(225, 155, 40, 0.34) 35%,
    rgba(195, 120, 28, 0.26) 52%,
    rgba(140, 82, 14, 0.20)  68%,
    rgba(165, 100, 18, 0.16) 82%,
    rgba(20, 7, 1, 0.20)    100%
  );
}
.about-scroll-rod--top {
  border-radius: 2px 2px 0 0;
  box-shadow: 0 3px 14px rgba(90, 52, 6, 0.18),
              inset 0 1px 0 rgba(240, 190, 80, 0.18);
}
.about-scroll-rod--bottom {
  border-radius: 0 0 2px 2px;
  box-shadow: 0 -3px 14px rgba(90, 52, 6, 0.18),
              inset 0 -1px 0 rgba(240, 190, 80, 0.18);
}

/* Scroll text body */
.about-columns {
  padding: 28px 68px 32px;
  text-align: center;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 20px);
  font-style: italic;
  font-weight: 600;
  color: var(--amber2);
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
.about-columns p {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  opacity: 0.80;
  margin-bottom: 10px;
  line-height: 1.78;
  letter-spacing: 0.15px;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  align-items: start;
}
.card {
  padding: 40px 36px;
  background: rgba(10,8,20,0.5);
  border: none;
  border-left: 3px solid var(--amber);
  border-bottom: 1px solid rgba(180,130,30,0.2);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
  box-shadow: -4px 4px 30px rgba(0,0,0,0.4), inset 0 0 60px rgba(180,100,10,0.03);
}
/* Intentional slight rotation on alternating cards */
.cards-grid .card:nth-child(odd)  { transform: rotate(-0.4deg); }
.cards-grid .card:nth-child(even) { transform: rotate(0.6deg) translateY(8px); }
.card:hover {
  transform: rotate(0deg) translateY(-4px) !important;
  box-shadow:
    -6px 8px 40px rgba(0,0,0,0.6),
    0 0 30px rgba(180,120,14,0.14),
    0 0 60px rgba(180,120,14,0.06);
  border-left-color: var(--amber2);
}
/* Corner accent */
.card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  border-top: 2px solid rgba(180,130,30,0.3);
  border-right: 2px solid rgba(180,130,30,0.3);
}
.card-coming { opacity: 0.35; }
.card-tag {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.card-desc {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.card-footer { border-top: 1px solid var(--border); padding-top: 20px; }
.card-tech {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-placeholder {
  border: 1px solid var(--border);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,112,10,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.gallery-icon {
  display: block;
  font-size: 28px;
  color: var(--amber2);
  opacity: 0.80;
  margin-bottom: 28px;
  letter-spacing: 8px;
}
.gallery-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--muted);
  margin-bottom: 12px;
}
.gallery-sub {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.80;
}

/* ── MUSIC TRACKS ────────────────────────────────────────────── */
.music-list { display: flex; flex-direction: column; gap: 2px; }
.music-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
  background: rgba(18,14,5,0.5);
}
a.music-track:hover {
  background: rgba(28,20,6,0.85);
  border-color: rgba(200,130,16,0.35);
  box-shadow: 0 0 20px rgba(190,120,12,0.10);
}
.music-track-coming { opacity: 0.35; cursor: default; }
.music-track-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.music-track-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--text);
  letter-spacing: 1px;
}
.music-track-featured {
  border-color: rgba(200,112,10,0.4);
  background: rgba(25,18,6,0.7);
}
.music-track-featured .music-track-title {
  font-size: 34px;
  color: var(--amber2);
}
.music-track-featured .music-track-tag { color: var(--amber); }
.music-track-arrow {
  font-size: 22px;
  color: var(--amber);
  opacity: 0.6;
  flex-shrink: 0;
}
.music-view-all {
  display: block;
  text-align: center;
  padding: 28px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  border: 1px solid var(--border);
  border-top: none;
  transition: color 0.2s, background 0.2s;
}
.music-view-all:hover { color: var(--amber2); background: rgba(20,15,4,0.6); }

/* ── MUSIC TEASER (homepage) ─────────────────────────────────── */
.music-teaser {
  border: 1px solid var(--border);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.music-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(180,80,10,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.music-teaser-sub {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.music-teaser-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.5;
}
.music-teaser-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── BLOG ────────────────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; }
.blog-post {
  padding: 56px 0 56px 32px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid rgba(180,130,30,0.2);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  transition: border-left-color 0.3s;
}
.blog-post:hover { border-left-color: var(--amber); }
.blog-post:first-child { border-top: 1px solid var(--border); }
/* Dot accent on the left border */
.blog-post::before {
  content: '◆';
  position: absolute;
  left: -10px;
  top: 56px;
  font-size: 12px;
  color: var(--amber);
  opacity: 0.6;
  background: var(--black);
  padding: 2px 0;
}
.blog-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 7px;
}
.blog-date {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
}
.blog-category {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.blog-excerpt {
  color: var(--muted);
  font-size: 21px;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-read {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 2px;
  color: var(--amber2);
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
  transition: color 0.3s, text-shadow 0.3s;
}
.blog-read:hover {
  color: #f0c060;
  text-shadow: 0 0 14px rgba(210,130,8,0.70), 0 0 32px rgba(185,105,5,0.40);
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-inner { text-align: center; }
.contact-sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.contact-link:nth-child(odd)  { transform: translateX(-12px); }
.contact-link:nth-child(even) { transform: translateX(12px); }
.contact-link {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(180,130,30,0.08);
  width: 100%;
  max-width: 420px;
  transition: all 0.3s;
}
.contact-link:hover {
  border-bottom-color: var(--amber);
  transform: translateX(0) !important;
  padding-left: 8px;
}
.contact-link-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232, 210, 160, 0.85);
  width: 90px;
  text-align: right;
  flex-shrink: 0;
}
.contact-link-val {
  font-family: var(--font-display);
  font-size: 23px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 52px 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 200;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(6,5,14,0.7);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 800px) {
  #nav { padding: 16px 24px; }
  #nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-name { letter-spacing: 6px; }
  .blog-post { grid-template-columns: 1fr; gap: 10px; }
  .cards-grid { grid-template-columns: 1fr; }
  section { padding: 96px 20px; }
}
