/* ============================================================
   Juho Lehtola – Urkutaiteilija
   Design: Dark, elegant, gold accents
   ============================================================ */

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

:root {
  --bg:           #0c0c12;
  --bg-alt:       #111118;
  --bg-card:      #14141e;
  --gold:         #c9a96e;
  --gold-light:   #e8c98a;
  --gold-dim:     #8a6d3e;
  --cream:        #f0ebe0;
  --text:         #ddd8cc;
  --text-dim:     #8a8578;
  --border:       rgba(201,169,110,0.15);
  --border-dim:   rgba(255,255,255,0.06);

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);

  --section-gap:  7rem;
  --container:    1200px;
  --radius:       12px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s var(--ease-in-out),
              backdrop-filter 0.4s,
              box-shadow 0.4s,
              padding 0.4s var(--ease-in-out);
}

.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dim);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.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);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    rgba(201,169,110,0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-name-first {
  display: block;
}

.hero-name-last {
  display: block;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

/* ---- Equalizer ---- */
.hero-equalizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  padding: 0 2rem;
  height: 160px;
  pointer-events: none;
  z-index: 1;
}

.eq-bar {
  flex: 1;
  max-width: 40px;
  min-width: 12px;
  background: linear-gradient(to top, rgba(201,169,110,0.3), rgba(201,169,110,0.05));
  border-radius: 3px 3px 0 0;
  animation: eqPulse var(--dur, 1.2s) ease-in-out infinite alternate;
  transform-origin: bottom;
}

.eq-bar:nth-child(1)  { --dur: 1.1s; --h: 30%; animation-delay: 0.0s; height: 30%; }
.eq-bar:nth-child(2)  { --dur: 0.9s; --h: 55%; animation-delay: 0.1s; height: 55%; }
.eq-bar:nth-child(3)  { --dur: 1.3s; --h: 40%; animation-delay: 0.2s; height: 40%; }
.eq-bar:nth-child(4)  { --dur: 0.8s; --h: 70%; animation-delay: 0.15s; height: 70%; }
.eq-bar:nth-child(5)  { --dur: 1.0s; --h: 45%; animation-delay: 0.05s; height: 45%; }
.eq-bar:nth-child(6)  { --dur: 1.2s; --h: 85%; animation-delay: 0.25s; height: 85%; }
.eq-bar:nth-child(7)  { --dur: 0.75s; --h: 60%; animation-delay: 0.3s; height: 60%; }
.eq-bar:nth-child(8)  { --dur: 1.4s; --h: 90%; animation-delay: 0.1s; height: 90%; }
.eq-bar:nth-child(9)  { --dur: 0.95s; --h: 55%; animation-delay: 0.2s; height: 55%; }
.eq-bar:nth-child(10) { --dur: 1.15s; --h: 75%; animation-delay: 0.05s; height: 75%; }
.eq-bar:nth-child(11) { --dur: 0.85s; --h: 40%; animation-delay: 0.35s; height: 40%; }
.eq-bar:nth-child(12) { --dur: 1.25s; --h: 50%; animation-delay: 0.12s; height: 50%; }
.eq-bar:nth-child(13) { --dur: 1.05s; --h: 35%; animation-delay: 0.22s; height: 35%; }
.eq-bar:nth-child(14) { --dur: 0.9s;  --h: 65%; animation-delay: 0.08s; height: 65%; }
.eq-bar:nth-child(15) { --dur: 1.3s;  --h: 45%; animation-delay: 0.18s; height: 45%; }
.eq-bar:nth-child(16) { --dur: 1.1s;  --h: 30%; animation-delay: 0.28s; height: 30%; }

@keyframes eqPulse {
  from { transform: scaleY(0.15); }
  to   { transform: scaleY(1); }
}

/* ---- Scroll indicator ---- */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  writing-mode: vertical-lr;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

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

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 4rem;
}

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.label-light {
  color: var(--bg);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.section-title em {
  color: var(--gold-light);
  font-style: italic;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-top: -2rem;
  margin-bottom: 3rem;
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text .lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.about-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.meta-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.2s;
}

.meta-link:hover {
  color: var(--gold-light);
}

.meta-link svg {
  flex-shrink: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.stat-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.about-quote {
  grid-column: 1 / -1;
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(201,169,110,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.6;
}

/* ============================================================
   Projects
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: default;
}

.project-card:hover {
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.1);
}

.project-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.project-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.35s;
}

.project-card:hover .project-number {
  color: rgba(201,169,110,0.35);
}

.project-line {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  transition: width 0.4s var(--ease-out);
}

.project-card:hover .project-line {
  width: 3rem;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 2rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s, color 0.25s;
  margin-top: auto;
}

.project-link:hover {
  color: var(--gold-light);
  gap: 0.8rem;
}

/* ============================================================
   Compositions
   ============================================================ */
.compositions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.composition {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-dim);
  transition: border-color 0.3s;
  position: relative;
}

.composition::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.composition:hover::before {
  transform: scaleX(1);
}

.composition:first-child {
  border-top: 1px solid var(--border-dim);
}

.composition-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-dim);
  min-width: 2rem;
  text-align: center;
  transition: color 0.3s;
}

.composition:hover .composition-num {
  color: var(--gold);
}

.composition-info {
  flex: 1;
}

.composition-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.composition:hover .composition-title {
  color: var(--gold-light);
}

.composition-note {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.composition-arrow {
  color: var(--text-dim);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  flex-shrink: 0;
}

.composition:hover .composition-arrow {
  transform: translateX(6px);
  color: var(--gold);
}

/* ============================================================
   Album (Gold Section)
   ============================================================ */
.section-gold {
  background: linear-gradient(135deg, #c9a96e 0%, #e8c98a 40%, #b8903e 100%);
  color: var(--bg);
}

.section-gold .section-title {
  color: var(--bg);
}

.section-gold .section-title em {
  color: rgba(12,12,18,0.65);
}

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

.album-visual {
  display: flex;
  justify-content: center;
}

.album-cover {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #0c0c12 0%, #1a1a2e 100%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-cover-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.15) 0%, transparent 70%);
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.album-cover-content {
  position: relative;
  text-align: center;
  padding: 1.5rem;
}

.album-pipes {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  height: 80px;
}

.pipe {
  background: linear-gradient(to top, var(--gold), rgba(201,169,110,0.3));
  border-radius: 2px 2px 0 0;
  animation: pipePulse 2s ease-in-out infinite alternate;
}

.pipe:nth-child(1) { width: 12px; height: 35px; animation-delay: 0.0s; }
.pipe:nth-child(2) { width: 12px; height: 55px; animation-delay: 0.2s; }
.pipe:nth-child(3) { width: 12px; height: 70px; animation-delay: 0.4s; }
.pipe:nth-child(4) { width: 14px; height: 80px; animation-delay: 0.1s; }
.pipe:nth-child(5) { width: 12px; height: 65px; animation-delay: 0.3s; }
.pipe:nth-child(6) { width: 12px; height: 45px; animation-delay: 0.5s; }
.pipe:nth-child(7) { width: 12px; height: 30px; animation-delay: 0.15s; }

@keyframes pipePulse {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.album-cover-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
}

.album-cover-sub {
  font-size: 0.75rem;
  color: var(--gold-dim);
  margin-top: 0.25rem;
}

.album-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.album-info .label {
  color: rgba(12,12,18,0.7);
}

.album-info p {
  color: rgba(12,12,18,0.75);
  line-height: 1.7;
}

.album-quote {
  border-left: 2px solid rgba(12,12,18,0.25);
  padding-left: 1rem;
  margin: 0.5rem 0;
}

.album-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(12,12,18,0.8);
}

.album-details {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(12,12,18,0.15);
  border-bottom: 1px solid rgba(12,12,18,0.15);
}

.album-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(12,12,18,0.5);
  font-weight: 600;
}

.detail-value {
  font-size: 0.95rem;
  color: rgba(12,12,18,0.85);
  font-weight: 500;
}

.album-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0,0,0,0.4);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--bg);
}

.contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
}

.contact-arrow {
  color: var(--text-dim);
  transition: transform 0.3s var(--ease-out), color 0.3s;
  flex-shrink: 0;
}

.contact-card:hover .contact-arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--bg);
  color: var(--gold);
}

.btn-dark:hover {
  background: #1a1a26;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(12,12,18,0.3);
}

.btn-outline-dark:hover {
  background: rgba(12,12,18,0.08);
  transform: translateY(-2px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-dim);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-copy a {
  color: var(--gold);
  transition: color 0.25s;
}

.footer-copy a:hover {
  color: var(--gold-light);
}

/* ============================================================
   Scroll Reveal Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* Composition items stagger */
.compositions .reveal:nth-child(1) { transition-delay: 0.0s; }
.compositions .reveal:nth-child(2) { transition-delay: 0.1s; }
.compositions .reveal:nth-child(3) { transition-delay: 0.2s; }

/* Project cards stagger */
.projects-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.projects-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.projects-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* Contact cards stagger */
.contact-grid .reveal:nth-child(1) { transition-delay: 0.0s; }
.contact-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.contact-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(var(--y, 20px)); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

  .album-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .album-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 5rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 80vw);
    background: rgba(12, 12, 18, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-dim);
  }

  .nav-link {
    display: block;
    padding: 1.1rem 0;
    font-size: 1rem;
  }

  .nav-link::after { display: none; }

  .nav-toggle {
    display: flex;
    z-index: 101;
    position: relative;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .album-cover {
    width: 240px;
    height: 240px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .hero-scroll {
    display: none;
  }

  .album-details {
    flex-direction: column;
    gap: 1rem;
  }
}
