/* Wagner Music Studio, LLC — static site
   Clean-upgrade rebuild of the former Google Sites site.
   Single stylesheet, no build step. */

:root {
  --plum: #5b2333;        /* deep burgundy — primary brand */
  --plum-dark: #421826;
  --gold: #b08d57;        /* brass accent */
  --gold-light: #cda86f;
  --cream: #faf6f0;       /* page background */
  --ink: #2a2326;         /* body text */
  --muted: #6b5f63;       /* secondary text */
  --line: #e7ddd2;        /* hairlines */
  --white: #ffffff;
  --max: 1080px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(66, 24, 38, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum);
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 0.4em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin: 0 0 0.5em; }
h3 { font-size: 1.25rem; margin: 0 0 0.4em; color: var(--plum-dark); }

a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

p { margin: 0 0 1.1em; }

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

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

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.wordmark {
  font-size: 1.4rem;
  color: var(--plum);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wordmark .sub {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a:hover { background: var(--cream); color: var(--plum); text-decoration: none; }
.nav-links a.active { background: var(--plum); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
  color: var(--white);
  padding: 72px 0 80px;
}
.hero h1 { color: var(--white); }
.hero p.lead {
  font-size: 1.2rem;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--gold-light); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.btn.outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn.outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-narrow { max-width: 760px; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

.figure-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #efe7db;
}
.figure-frame img { width: 100%; height: 100%; object-fit: cover; }
.figure-frame figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--white);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card .icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--cream);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* ---------- Video cards (category demo embeds) ---------- */
.video-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.video-card .vc-body { padding: 22px 22px 16px; }
.video-card .vc-caption { font-size: 0.85rem; color: var(--muted); font-style: italic; margin: 8px 0 0; }
.video-card .vc-body h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.video-card .vc-body .icon {
  width: 32px; height: 32px; font-size: 1rem; margin: 0; flex: none;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  margin-top: auto;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.playlist-player {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

/* ---------- Lists ---------- */
.feature-list { list-style: none; padding: 0; margin: 0 0 1em; }
.feature-list li {
  position: relative;
  padding: 6px 0 6px 26px;
}
.feature-list li::before {
  content: "\266A"; /* musical note */
  position: absolute; left: 0; top: 6px;
  color: var(--gold);
}

.cv-list { list-style: none; padding: 0; margin: 0 0 1.4em; }
.cv-list li { padding: 5px 0; border-bottom: 1px dashed var(--line); }
.cv-list li:last-child { border-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.contact-card .label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-card .value { font-size: 1.15rem; font-weight: 600; color: var(--plum); }

.callout {
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 30px;
  font-size: 1.1rem;
}
.callout strong { color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.82);
  padding: 40px 0 32px;
  margin-top: 0;
  font-size: 0.92rem;
}
.site-footer a { color: var(--gold-light); }
.site-footer .foot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer .brand { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--white); }
.site-footer .legal { margin-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .nav { justify-content: center; text-align: center; }
  .wordmark { align-items: center; }
  .hero { padding: 52px 0 56px; }
  section { padding: 44px 0; }
}
