/* ============================================================
   PDam — official artist site
   Design system: cinematic dark, warm gold accent
   ============================================================ */

:root {
  --bg:        #0b0b0d;
  --bg-2:      #131318;
  --bg-3:      #1c1c23;
  --line:      #2a2a33;
  --text:      #f4f2ee;
  --muted:     #a5a299;
  --muted-2:   #78756d;
  --gold:      #d8a24a;
  --gold-2:    #f0c877;
  --gold-soft: rgba(216,162,74,0.12);
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1120px;
  --shadow:    0 20px 60px rgba(0,0,0,0.45);
  --font:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display:   "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--gold-2); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,13,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  font-family: var(--display);
  font-size: 24px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text);
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; letter-spacing: 0.01em; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 26px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  cursor: pointer; border: 1px solid transparent; transition: all .2s ease;
}
.btn-primary { background: var(--gold); color: #1a1206; }
.btn-primary:hover { background: var(--gold-2); color: #1a1206; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 84px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(216,162,74,0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 20%, rgba(216,162,74,0.06), transparent 55%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 7vw, 88px); margin: 0 0 20px; }
.hero h1 .accent { color: var(--gold); }
.hero .lede { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); max-width: 34ch; margin: 0 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(216,162,74,0.35), rgba(11,11,13,0.2)),
    var(--bg-3);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid; place-items: center; text-align: center; color: var(--muted-2);
  position: relative; overflow: hidden;
}
.portrait .ph-note { font-size: 13px; padding: 0 24px; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px; }
.section-head p { color: var(--muted); margin: 0; font-size: 18px; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Streaming strip ---------- */
.platforms { display: flex; flex-wrap: wrap; gap: 14px; }
.platform {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--text); font-weight: 600; font-size: 15px;
}
.platform:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-1px); }
.platform svg { width: 20px; height: 20px; }

/* ---------- Release cards ---------- */
.releases { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.release {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.release:hover { transform: translateY(-4px); border-color: var(--gold); }
.release .cover {
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, var(--bg-3), #26262f);
  display: grid; place-items: center; color: var(--muted-2); position: relative;
}
.release .cover .yr {
  position: absolute; top: 12px; right: 12px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  background: rgba(0,0,0,0.4); padding: 4px 10px; border-radius: 999px;
}
.release .cover .disc { font-family: var(--display); font-size: 40px; color: rgba(216,162,74,0.5); }
.release .meta { padding: 18px 18px 20px; }
.release .meta h3 { font-size: 19px; margin: 0 0 4px; }
.release .meta .type { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.release .meta .feat { font-size: 14px; color: var(--muted-2); margin: 8px 0 0; }

/* ---------- Embeds ---------- */
.embed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.embed-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.embed-card h3 { margin: 0 0 16px; font-size: 20px; display: flex; align-items: center; gap: 10px; }
.embed-card iframe { border: 0; border-radius: 10px; width: 100%; display: block; }

/* ---------- About ---------- */
.prose { max-width: 720px; }
.prose p { color: #d9d6cf; margin: 0 0 20px; }
.prose h3 { font-size: 24px; margin: 40px 0 14px; }
.fill-note {
  border-left: 3px solid var(--gold); background: var(--gold-soft);
  padding: 14px 18px; border-radius: 0 10px 10px 0; color: var(--gold-2);
  font-size: 14.5px; margin: 8px 0 24px;
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 20px; }
.stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.stat .num { font-family: var(--display); font-size: 40px; color: var(--gold); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; letter-spacing: 0.03em; }

/* ---------- Press / evidence ---------- */
.press-list { display: grid; gap: 16px; }
.press-item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: grid; gap: 6px;
}
.press-item .src { color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: 0.03em; }
.press-item blockquote { margin: 0; font-family: var(--display); font-size: 20px; color: var(--text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact-card h3 { margin: 0 0 6px; font-size: 20px; }
.contact-card .val { color: var(--muted); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: 14px; color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 15px;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 48px 0 40px; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--gold-2); }
.copy { color: var(--muted-2); font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait { max-width: 360px; }
  .embed-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--bg-2);
    border-bottom: 1px solid var(--line); padding: 10px 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-toggle { display: block; }
}
