/*
Theme Name: Aaron VanLaan
Theme URI:
Author: Aaron VanLaan
Description: Personal site for Aaron VanLaan — Composer / Arranger. Features Track and Program Note custom post types.
Version: 1.0
License: Private
Text Domain: aaron-vanlaan
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:        #000000;
  --white:        #ffffff;
  --ink:          #111111;
  --blue:         #0033a8;
  --gold:         #c89a3a;
  --amber:        #f7b23b;
  --red:          #e23a2f;
  --ember:        #6b1410;
  --paper:        #e8dfc9;
  --paper-ink:    #241a10;
  --wood:         #4a2e1c;
  --rule:         rgba(255,255,255,0.08);
  --rule-paper:   rgba(36,26,16,0.12);
  --fg1:          #ffffff;
  --fg2:          rgba(255,255,255,0.72);
  --fgdim:        rgba(255,255,255,0.48);
  --display:      'Playfair Display', 'Didot', 'Bodoni 72', Georgia, serif;
  --body:         'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --poster:       'Josefin Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono:         ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Courier New', monospace;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--fg1);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: opacity 120ms var(--ease); }
a:hover { opacity: 0.7; }
img { display: block; max-width: 100%; }

/* ── Masthead ─────────────────────────────────────────── */
.mast {
  position: relative;
  padding: 22px 40px 18px;
  overflow: hidden;
}
.mast::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(200,154,58,0.22), transparent 60%),
    linear-gradient(180deg, #0a0704 0%, #000 60%);
  pointer-events: none;
}
.mast::after {
  content: "";
  position: absolute; left: 40px; right: 40px; bottom: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,154,58,0.55) 20%, rgba(200,154,58,0.55) 80%, transparent);
}
.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
.mast-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mast-brand img {
  height: 70px; width: auto;
  padding: 0;
}
.mast-wm {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.mast-wm .name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.005em;
  color: #fff;
}
.mast-wm .role {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.mast nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  align-items: center;
}
.mast nav a {
  color: rgba(255,255,255,0.78);
  padding: 10px 0 8px;
  position: relative;
  letter-spacing: 0.02em;
}
.mast nav a.active { color: #fff; }
.mast nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #000;
}
.photo-credit {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  z-index: 2;
}
.photo-credit:hover { color: rgba(255,255,255,0.8); opacity: 1; }
.hero-img {
  position: absolute; inset: 0;
  background: url('assets/sax-waves.jpg') center / cover;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 56px 48px;
  text-align: right;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-end;
  font-weight: bold;
  background: black;
  border-radius: 5px;
}
.hero-headline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 160px;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 3px 4px 0 #000;
  align-self: flex-end;
}
.hero-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  max-width: 460px;
}
.hero-tag {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  text-align: right;
  background: linear-gradient(to right, transparent, black);
  padding: 8px 8px 8px 32px;
  font-weight: bold;
  letter-spacing: 3px;
  border-radius: 5px;
}
.hero-cta { display: flex; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 120ms var(--ease), transform 120ms var(--ease);
}
.btn:hover { opacity: 0.85; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: #fff; color: #000; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid var(--gold); }
.btn-secondary { background: var(--gold); color: #000; }

/* ── Rule dot ─────────────────────────────────────────── */
.rule-dot {
  display: block;
  margin: 72px auto;
  width: 80px;
  color: var(--gold);
  opacity: 0.5;
}

/* ── Bio ──────────────────────────────────────────────── */
.bio {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bio-copy .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.bio-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: #fff;
}
.bio-copy p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0 0 14px;
}
.bio-copy p.lead { font-size: 18px; color: rgba(255,255,255,0.92); }
.bio-img {
  aspect-ratio: 4 / 5;
  background: url('assets/saxandtype.jpg') center / cover;
  border-radius: 4px;
  position: relative;
}
.bio-copy a { color: var(--gold); }

/* ── Music ────────────────────────────────────────────── */
.music {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(200,154,58,0.35);
  padding-bottom: 14px;
}
.section-head .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.01em;
}
.release {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.release-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.release:last-of-type { border-bottom: 0; }
.release-art {
  aspect-ratio: 1 / 1;
  background: #1a1208;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.release-art img { width: 100%; height: 100%; object-fit: cover; }
.release-art.art-1 {
  background: linear-gradient(135deg, #4a2e1c, #1a1208);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.release-art.art-1::after {
  content: "";
  position: absolute;
  left: 24px; top: 24px; right: 24px; bottom: 60px;
  background: url('assets/saxandtype.jpg') center / cover;
  border: 1px solid rgba(200,154,58,0.35);
}
.release-art.art-1 .art-title {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.release-info .eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.release-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.release-info .byline {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.tracklist { margin-top: 4px; }
.tracklist .row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--body);
  font-size: 14px;
}
.tracklist .row:first-child { border-top: 0; }
.tracklist .num { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); }
.tracklist .dur { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); }
.tracklist .title { color: rgba(255,255,255,0.88); }
.release-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.release-links a {
  color: var(--gold);
  border-bottom: 1px solid rgba(200,154,58,0.4);
  padding-bottom: 2px;
}
.np {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.6s ease-out infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(247,178,59,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(247,178,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(247,178,59,0); }
}

/* ── Program note (paper) ─────────────────────────────── */
.note {
  background: var(--paper);
  color: var(--paper-ink);
  padding: 72px 0;
}
.note-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.note-inner .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
}
.note-inner h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #1a1208;
}
.note-inner .sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: #3a2820;
  margin: 0 0 32px;
}
.note-rule {
  height: 1px;
  background: var(--wood);
  opacity: 0.35;
  margin: 0 0 28px;
}
.note-cols {
  column-count: 2;
  column-gap: 36px;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--paper-ink);
}
.note-cols p { margin: 0 0 14px; }

/* Drop cap — manual span (static HTML) */
.note-cols .dropcap {
  float: left;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 0.82;
  margin: 6px 12px 0 0;
  color: var(--ember);
}

/* Drop cap — automatic first letter (WordPress the_content()) */
.note-cols > p:first-of-type {
  column-span: all;
  margin-bottom: 14px;
}
.note-cols > p:first-of-type::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 0.82;
  margin: 6px 12px 0 0;
  color: var(--ember);
}

.note-sep {
  max-width: 820px;
  margin: 0 auto;
  height: 1px;
  background: var(--ember);
  opacity: 0.5;
}

.note-sign {
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-align: right;
  color: var(--wood);
  font-size: 14px;
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.contact .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.contact p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin: 0 auto 30px;
  line-height: 1.5;
}
.contact .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.contact label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact input,
.contact textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 12px 14px;
  color: #fff;
  font: 15px var(--body);
}
.contact input:focus,
.contact textarea:focus {
  outline: 0;
  border-color: var(--gold);
}
.contact textarea { min-height: 96px; resize: vertical; }
.contact button {
  align-self: center;
  margin-top: 8px;
  padding: 12px 40px;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 4px;
  font: 600 14px var(--body);
  cursor: pointer;
  transition: opacity 120ms var(--ease), transform 120ms var(--ease);
}
.contact button:hover { opacity: 0.85; }
.contact button:active { transform: translateY(1px); }
.contact-notice {
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 4px;
}
.contact-notice--sent  { color: var(--gold); border: 1px solid rgba(200,154,58,0.3); }
.contact-notice--error { color: var(--red);  border: 1px solid rgba(226,58,47,0.3); }

/* ── Footer ───────────────────────────────────────────── */

.foot {
  padding: 64px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(200,154,58,0.2);
  margin-top: 96px;
  position: relative;
}
.foot::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  width: 48px; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
}
.foot-logo {
  width: 56px;
  margin: 0 auto 22px;
}
.foot nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.foot nav a:hover,
.foot nav span:hover { color: var(--gold); opacity: 1; }
.foot .copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 768px) {

  /* Masthead */
  .mast { padding: 16px 20px 14px; }
  .mast::after { left: 20px; right: 20px; }
  .mast-row { flex-direction: column; align-items: center; gap: 12px; }
  .mast-brand img { height: 50px; }
  .mast-wm .name { font-size: 24px; }
  .mast nav { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* Hero */
  .hero { height: 420px; }
  .hero-content { padding: 32px 24px; }
  .hero-headline { font-size: 80px; }
  .hero-meta { font-size: 13px; }
  .hero-tag { font-size: 14px; letter-spacing: 1px; padding: 6px 8px 6px 20px; }
  .hero-sub { max-width: 100%; }

  /* Rule */
  .rule-dot { margin: 48px auto; width: 60px; }

  /* Bio */
  .bio { grid-template-columns: 1fr; padding: 0 24px; gap: 32px; }
  .bio-copy h2 { font-size: 40px; }
  .bio-img { aspect-ratio: 3 / 2; }

  /* Music */
  .music { padding: 0 24px; }
  .section-head h2 { font-size: 36px; }
  .release { grid-template-columns: 1fr; gap: 20px; }
  .release-left { max-width: 240px; }

  /* Program note */
  .note { padding: 48px 0; }
  .note-inner { padding: 0 24px; }
  .note-inner h2 { font-size: 36px; }
  .note-cols { column-count: 1; }
  .note-cols > p:first-of-type::first-letter,
  .note-cols .dropcap { font-size: 64px; }

  /* Contact */
  .contact { padding: 0 24px; }
  .contact h2 { font-size: 36px; }

  /* Footer */
  .foot { padding: 48px 24px 32px; margin-top: 64px; }
  .foot nav { gap: 16px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { height: 360px; }
  .hero-headline { font-size: 56px; }
  .hero-tag { font-size: 13px; letter-spacing: 0.5px; }
  .bio-copy h2 { font-size: 32px; }
  .section-head h2 { font-size: 28px; }
  .release-left { max-width: 100%; }
  .note-inner h2 { font-size: 30px; }
  .note-inner .sub { font-size: 17px; }
  .contact h2 { font-size: 30px; }
}
