/* ============================================
   net4music.com / MakeMusic — Rebuilt 2026
   Clean, modern static HTML/CSS
   Color palette faithful to original:
   #444749 (charcoal), #642339 (dark crimson),
   #98AFA7 (sage), white backgrounds
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --charcoal:   #444749;
  --crimson:    #642339;
  --sage:       #98AFA7;
  --sage-light: #e8eeec;
  --white:      #ffffff;
  --off-white:  #f8f8f6;
  --border:     #d0d4d2;
  --text:       #333537;
  --max-width:  800px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  border-top: 3px solid var(--charcoal);
}

a { color: var(--charcoal); text-decoration: none; }
a:hover { color: var(--crimson); text-decoration: underline; }

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
}

/* ── LAYOUT ─────────────────────────────── */

.site-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
}

/* ── HEADER / HERO BANNER ───────────────── */

.site-header {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.site-header .hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── TOP NAVIGATION ─────────────────────── */

.top-nav {
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  background: var(--white);
}

.top-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
}

.top-nav li { flex: 0 0 auto; }

.top-nav a {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-right: 1px solid var(--border);
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--crimson);
  background: var(--sage-light);
  text-decoration: none;
}

.top-nav li:first-child a { border-left: 1px solid var(--border); }

/* ── SECONDARY HEADER (inner pages) ────── */

.secondary-header {
  width: 100%;
}

.secondary-header .banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.secondary-header .nav-bottom {
  height: 34px;
  background: var(--sage-light);
  border-bottom: 1px solid var(--border);
}

/* ── PAGE LAYOUT WITH SIDEBAR ───────────── */

.page-body {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

/* ── SIDEBAR ────────────────────────────── */

.sidebar {
  width: 175px;
  flex-shrink: 0;
  padding: 20px 12px 20px 16px;
  border-right: 1px solid var(--border);
  min-height: 300px;
}

.sidebar nav a {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: right;
  color: var(--charcoal);
  padding: 8px 4px;
  border-top: 1px solid var(--charcoal);
  text-decoration: none;
  transition: color 0.15s;
}

.sidebar nav a:first-child { border-top: none; }

.sidebar nav a:hover,
.sidebar nav a.active {
  color: var(--crimson);
  text-decoration: underline;
}

/* ── MAIN CONTENT ───────────────────────── */

.main-content {
  flex: 1;
  padding: 20px 24px 30px 20px;
  min-width: 0;
}

/* ── PAGE HEADLINE IMAGE ────────────────── */

.page-headline {
  border-top: 1px solid var(--charcoal);
  margin-bottom: 22px;
  padding-top: 0;
}

.page-headline img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ── SUBHEADINGS ────────────────────────── */

.subhead {
  font-size: 14px;
  color: var(--sage);
  font-weight: 600;
  font-family: 'Playfair Display', Georgia, serif;
}

/* ── HOME PAGE: TWO-COLUMN GRID ─────────── */

.home-grid {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
}

.home-grid-item {
  flex: 1;
  border-left: 1px solid var(--charcoal);
  padding: 0 20px 10px 12px;
  text-align: left;
}

.home-grid-item img.banner {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.home-grid-item p { font-size: 14px; margin-bottom: 8px; }
.home-grid-item a { color: var(--charcoal); font-weight: 600; }
.home-grid-item a:hover { color: var(--crimson); }

/* ── HOME: KEY MESSAGE ──────────────────── */

.key-message {
  border-top: 1px solid var(--charcoal);
  margin-top: 24px;
  padding-top: 20px;
}

.key-message img { margin-bottom: 12px; }
.key-message p { font-size: 14px; }

/* ── PRODUCT LIST (notation page) ───────── */

.product-list { list-style: none; }

.product-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.product-item:last-child { border-bottom: none; }

.product-item .logo-col {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
  padding-top: 4px;
}

.product-item .logo-col img { margin: 0 auto; }

.product-item .desc-col { flex: 1; }
.product-item .desc-col .subhead { display: block; margin-bottom: 4px; font-size: 15px; }
.product-item .desc-col p { font-size: 14px; margin-bottom: 8px; }
.product-item .desc-col a { font-size: 13px; font-weight: 600; }

/* ── INVESTOR / COMPANY: INLINE LINKS ───── */

blockquote {
  margin: 12px 0 12px 24px;
  padding-left: 12px;
  border-left: 2px solid var(--sage);
  font-size: 14px;
}

ul { padding-left: 22px; margin: 8px 0 14px; }
li { margin-bottom: 4px; font-size: 14px; }

p { margin-bottom: 12px; font-size: 14px; }

/* ── AGREEMENTS TABLE ───────────────────── */

.agreements-table {
  width: 90%;
  margin: 10px auto;
  border-collapse: collapse;
}

.agreements-table td {
  padding: 4px 10px;
  font-size: 13px;
}

.agreements-table a { font-weight: 600; }

/* ── FOOTER ─────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--charcoal);
  margin-top: 40px;
  padding: 14px 24px;
  text-align: right;
  font-size: 11px;
  color: var(--charcoal);
}

.site-footer a { color: var(--charcoal); font-weight: 600; }
.site-footer a:hover { color: var(--crimson); }

/* ── QUOTE BLOCK (SmartMusic / Wynton) ──── */

.quote-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.quote-block .quote-img { flex-shrink: 0; }

.quote-block .quote-text {
  font-size: 15px;
  line-height: 1.5;
}

.quote-block .quote-text em { display: block; margin-top: 8px; font-size: 13px; }

/* ── RESPONSIVE ─────────────────────────── */

@media (max-width: 640px) {
  .page-body { flex-direction: column; }
  .sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 10px 16px; }
  .sidebar nav a { text-align: left; }
  .home-grid { flex-direction: column; }
  .product-item { flex-direction: column; }
  .product-item .logo-col { width: auto; }
}
