/* ============================================================
   RESET
   ============================================================ */

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


/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */

:root {
  --ink:    #0e0c0a;
  --paper:  #f5f0e8;
  --amber:  #b8762a;
  --rust:   #8b3a1e;
  --smoke:  #2a2520;
  --muted:  #7a6f62;
  --border: rgba(184, 118, 42, 0.25);
}


/* ============================================================
   BASE
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--ink);
  color: var(--paper);
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(14, 12, 10, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.4);
  text-transform: lowercase;
  text-decoration: none;
}

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

.nav-links a {
  color: var(--paper);
  text-decoration: none;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--amber);
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 2rem;
  opacity: 0.7;
}

.hero h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 1.2rem;
  text-transform: lowercase;
}

.hero-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bob 2s ease-in-out infinite;
  cursor: pointer;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--amber);
  opacity: 0.5;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* ============================================================
   SECTIONS
   ============================================================ */

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: 'Crimson Text', serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}


/* ============================================================
   ALBUMS
   ============================================================ */

.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.album-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  group: true;
}

.album-cover-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
}

.album-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.7) contrast(1.1);
}

.album-card:hover .album-cover-wrap img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.05);
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-listen {
  font-family: 'Crimson Text', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
}

.album-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.album-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}


/* ============================================================
   BIO
   ============================================================ */

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.bio-photo-wrap {
  position: relative;
}

.bio-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px 8px 8px -8px;
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: 0;
}

.bio-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  filter: saturate(0.6) contrast(1.1);
}

.bio-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.bio-content p {
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.bio-divider {
  width: 40px;
  height: 1px;
  background: var(--amber);
  margin: 2rem 0;
}


/* ============================================================
   CONTACT
   ============================================================ */

#contact {
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--paper);
}

.contact-sub {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.contact-link {
  display: inline-block;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.contact-link:hover {
  background: var(--paper);
  transform: translateY(-2px);
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--amber);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 700px) {
  nav              { padding: 1rem 1.5rem; }
  .bio-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  footer           { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links       { gap: 1.5rem; }
}
