/* Woodshed site — jazz-club dark: midnight base, brass accent, sheet-music cream.
   Record-sleeve typography: Anton display caps over Archivo body. */

:root {
  --base: #0E1014;
  --base-2: #16191F;
  --card: #1E222B;
  --elevated: #252A35;
  --border: #2A2F3A;
  --brass: #D9A84C;
  --brass-light: #E8C77E;
  --brass-dark: #B07F2E;
  --ink: #F5F1E8;
  --ink-2: #B8B2A6;
  --ink-3: #7C7669;
  --blue: #6E9BB5;
  --green: #6FBF73;
  --purple: #9B7EC8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--base);
  color: var(--ink);
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Vinyl grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ────────────────────────────────────────────── */
.display {
  font-family: "Anton", "Archivo", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--brass);
  margin: 0 0 14px;
}

p { color: var(--ink-2); margin: 0 0 14px; }
strong { color: var(--ink); font-weight: 600; }
a { color: var(--brass); text-decoration-color: color-mix(in srgb, var(--brass) 40%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--brass-light); }

/* Sheet-music staff divider */
.staff {
  height: 33px;
  margin: 0 auto;
  max-width: 1080px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 7px,
    var(--border) 7px 8px
  );
  background-size: 100% 40px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  position: relative;
}
.staff::after {
  content: "𝄢";
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-54%);
  color: var(--brass);
  font-size: 30px;
  background: var(--base);
  padding: 0 10px;
  line-height: 1;
}

/* ── Header / footer ───────────────────────────────────────── */
.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.06em;
}
.brand img { width: 34px; height: 34px; border-radius: 8px; display: block; }
.site-head nav { display: flex; gap: 26px; }
.site-head nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.site-head nav a:hover { color: var(--brass); }

.site-foot {
  border-top: 1px solid var(--border);
  margin-top: 96px;
  padding: 34px 0 54px;
  font-size: 14px;
  color: var(--ink-3);
}
.site-foot .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
}
.site-foot a { color: var(--ink-2); text-decoration: none; margin-right: 22px; }
.site-foot a:hover { color: var(--brass); }

/* ── Cards & docs pages ────────────────────────────────────── */
.doc { padding: 40px 0 0; }
.doc h1 { font-size: clamp(38px, 7vw, 64px); color: var(--ink); }
.doc h2 {
  font-size: 15px;
  margin: 44px 0 12px;
  color: var(--brass);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.updated { color: var(--ink-3); font-size: 14px; margin: 10px 0 30px; }
ul { color: var(--ink-2); padding-left: 22px; margin: 0 0 14px; }
li { margin: 7px 0; }

.card {
  background: linear-gradient(160deg, var(--card), var(--base-2));
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 26px 0;
}
.card p:last-child { margin-bottom: 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-item h3 { margin: 0 0 8px; font-size: 18px; color: var(--ink); font-weight: 600; }
.faq-item p:last-child { margin-bottom: 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brass);
  color: #14100A;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 6px 24px rgba(217, 168, 76, 0.25);
}
.btn:hover {
  background: var(--brass-light);
  color: #14100A;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(217, 168, 76, 0.35);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn.ghost:hover { border-color: var(--brass); color: var(--brass-light); }

/* ── Load-in reveals ───────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .reveal.d1 { animation-delay: 0.08s; }
  .reveal.d2 { animation-delay: 0.18s; }
  .reveal.d3 { animation-delay: 0.3s; }
  .reveal.d4 { animation-delay: 0.44s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

@media (max-width: 640px) {
  .site-head nav { gap: 16px; }
  .site-head nav a { font-size: 12.5px; }
}
