/* ===================================================================
   FATZ DAGHOST — Life After 50
   A record-sleeve aesthetic: warm black, brass accent, liner-note type
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --black: #0D0B12;
  --panel: #1A1522;
  --panel-raised: #22192C;
  --brass: #D4AF37;
  --brass-dim: #A6841D;
  --wine: #7B2FBF;
  --paper: #F1EDF5;
  --muted: #A79BB5;
  --hairline: #332B45;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Work Sans', -apple-system, sans-serif;

  --max-width: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ---------- Type ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  color: var(--paper);
}

h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 500; }

p { max-width: 62ch; color: var(--paper); }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 56ch; }

.kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--brass);
  font-weight: 500;
}

.rule {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 3rem 0;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 16, 13, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--paper);
}
.wordmark span { color: var(--brass); }

.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--brass);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  color: var(--paper);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { border-top: 1px solid var(--hairline); }
  .nav-links a { display: block; padding: 1rem var(--gutter); }
}

/* ---------- Vinyl motif ---------- */

.vinyl {
  --size: 340px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      #0a0810 0px, #0a0810 2px,
      #1c1526 3px, #1c1526 5px);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}

.vinyl::before {
  content: '';
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: inset 0 0 0 3px var(--black);
}

.vinyl::after {
  content: '';
  position: absolute;
  inset: 47%;
  border-radius: 50%;
  background: var(--black);
}

.vinyl.spin {
  animation: spin 14s linear infinite;
  animation-play-state: paused;
}
.vinyl.spin:hover,
.hero:hover .vinyl.spin {
  animation-play-state: running;
}

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

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero .vinyl-slot { order: -1; display: flex; justify-content: center; }
  .vinyl { --size: 220px; }
}

.hero h1 { margin-top: 0.6rem; }
.hero .lede { margin-top: 1.3rem; }

.btn-row {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--brass);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-solid {
  background: var(--brass);
  color: var(--black);
}
.btn-solid:hover { background: #e6c158; }

.btn-outline {
  color: var(--paper);
  border-color: var(--hairline);
}
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- Liner notes / track list ---------- */

.liner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

@media (max-width: 860px) {
  .liner { grid-template-columns: 1fr; }
}

.track-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}

.track-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.track-list .num {
  font-family: var(--sans);
  color: var(--brass-dim);
  font-size: 0.85rem;
  width: 1.6rem;
  flex-shrink: 0;
}

.track-list .len {
  margin-left: auto;
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.85rem;
}

.track-note {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ---------- Embed panel ---------- */

.embed-panel {
  background: var(--panel);
  border: 1px solid var(--hairline);
  padding: 1.25rem;
  border-radius: 4px;
}

.embed-panel iframe {
  width: 100%;
  border: none;
  border-radius: 4px;
}

/* ---------- Platform grid ---------- */

.platform-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--hairline);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 2rem;
}

.platform-grid a {
  background: var(--black);
  padding: 1.6rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.platform-grid a:hover { background: var(--panel-raised); color: var(--paper); }

.platform-grid svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Bio / About sections ---------- */

.about-block {
  padding: clamp(3rem, 6vw, 5rem) 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

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

.pull-figure {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--wine);
  line-height: 1;
  opacity: 0.55;
}

.timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
}

.timeline .year {
  font-family: var(--serif);
  color: var(--brass);
  font-size: 1rem;
}

/* ---------- Contact / Booking ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  margin-top: 1.3rem;
}

label:first-child { margin-top: 0; }

input, textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--hairline);
  color: var(--paper);
  padding: 0.8rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: 2px;
}

input:focus, textarea:focus {
  border-color: var(--brass);
  outline: none;
}

textarea { resize: vertical; min-height: 120px; }

.contact-details dt {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--brass-dim);
  margin-top: 1.6rem;
}
.contact-details dt:first-child { margin-top: 0; }
.contact-details dd { margin: 0.3rem 0 0; font-family: var(--serif); font-size: 1.15rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 2.5rem 0;
  margin-top: 3rem;
}

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

.footer-socials {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-socials a {
  color: var(--muted);
  text-decoration: none;
}
.footer-socials a:hover { color: var(--brass); }

.footer-fine {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-fine a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--hairline); }
.footer-fine a:hover { color: var(--brass); }

/* ---------- Utility ---------- */

.section-head { max-width: 46ch; }
.mt-0 { margin-top: 0; }
.placeholder-flag {
  font-size: 0.75rem;
  color: var(--wine);
  background: rgba(110,43,43,0.15);
  border: 1px dashed var(--wine);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.5rem;
}
