/* ============================================================
   IVY MUSIC — Legal pages (Privacy Policy / Disclaimer)
   Builds on style.css design tokens. Document-style layout:
   cream hero band + sticky table of contents + article.
   ============================================================ */

/* ── HERO BAND ── */
.lg-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--grey-12);
  margin-top: var(--hdr-h, 152px);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.lg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 88% 12%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 6% 96%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.lg-hero .container { position: relative; z-index: 1; }

.lg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--grey-35);
  margin-bottom: 26px;
}
.lg-breadcrumb a { color: var(--grey-60); transition: color var(--t-fast); }
.lg-breadcrumb a:hover { color: var(--gold-dark); }
.lg-breadcrumb .sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.lg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.lg-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--gold-dark);
  border-radius: 1px;
}

.lg-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1px;
  color: var(--light-text);
  margin-bottom: 18px;
}
.lg-title em { font-style: italic; color: var(--gold-dark); }

.lg-lead {
  font-size: 17px;
  color: var(--grey-60);
  line-height: 1.7;
  max-width: 640px;
}

.lg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 28px;
}
.lg-meta-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey-60);
}
.lg-meta-item i { color: var(--gold-dark); font-size: 13px; }

/* ── BODY LAYOUT ── */
.lg-section {
  background: var(--bg);
  padding: 64px 0 96px;
}
.lg-layout {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── TABLE OF CONTENTS ── */
.lg-toc {
  position: sticky;
  top: calc(var(--hdr-h, 152px) + 24px);
}
.lg-toc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-12);
}
.lg-toc ul { display: flex; flex-direction: column; gap: 2px; }
.lg-toc a {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: var(--grey-60);
  padding: 8px 0 8px 16px;
  border-left: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.lg-toc a:hover { color: var(--light-text); border-left-color: var(--gold-line); }
.lg-toc a.active {
  color: var(--gold-dark);
  font-weight: 600;
  border-left-color: var(--gold);
}

/* ── ARTICLE ── */
.lg-article { max-width: 760px; }
.lg-block { margin-bottom: 52px; scroll-margin-top: calc(var(--hdr-h, 152px) + 24px); }
.lg-block:last-child { margin-bottom: 0; }

.lg-block-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-12);
}
.lg-block-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 1px;
}
.lg-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: var(--light-text);
}

.lg-article h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--light-text);
  margin: 30px 0 12px;
  letter-spacing: -0.1px;
}
.lg-article p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #45413B;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.lg-article p:last-child { margin-bottom: 0; }
.lg-article a:not(.lg-toc a) {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold-line);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--t-fast);
}
.lg-article a:not(.lg-toc a):hover { text-decoration-color: var(--gold); }
.lg-article strong { color: var(--light-text); font-weight: 700; }

.lg-article ul.lg-list,
.lg-article ol.lg-list {
  margin: 8px 0 18px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lg-article ul.lg-list li,
.lg-article ol.lg-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.75;
  color: #45413B;
}
.lg-article ul.lg-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.lg-article ol.lg-list { counter-reset: lgc; }
.lg-article ol.lg-list li { counter-increment: lgc; }
.lg-article ol.lg-list li::before {
  content: counter(lgc);
  position: absolute;
  left: 0; top: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CALLOUT BOX ── */
.lg-callout {
  background: #fff;
  border: 1px solid var(--grey-12);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 24px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.lg-callout--warn { border-left-color: var(--red); }
.lg-callout-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 12px;
}
.lg-callout-title i { color: var(--gold-dark); font-size: 15px; }
.lg-callout--warn .lg-callout-title i { color: var(--red); }
.lg-callout p { font-size: 14.5px; margin-bottom: 10px; }
.lg-callout p:last-child { margin-bottom: 0; }

/* ── CONTACT / OFFICER CARD ── */
.lg-officer {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  background: #1A1410;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 20px;
}
.lg-officer-item { display: flex; flex-direction: column; gap: 4px; }
.lg-officer-item .k {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.lg-officer-item .v { font-size: 15px; color: rgba(255,255,255,0.86); font-weight: 500; }
.lg-officer-item .v a { color: var(--gold-light); text-decoration: none; font-weight: 600; }
.lg-officer-item .v a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .lg-layout { grid-template-columns: 1fr; gap: 36px; }
  .lg-toc {
    position: static;
    background: #fff;
    border: 1px solid var(--grey-12);
    border-radius: var(--radius);
    padding: 22px 24px;
  }
  .lg-toc ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 8px;
  }
  .lg-toc a {
    padding: 6px 12px;
    border-left: none;
    border: 1px solid var(--grey-12);
    border-radius: 100px;
    font-size: 12px;
  }
  .lg-toc a:hover, .lg-toc a.active {
    border-color: var(--gold);
    border-left-color: var(--gold);
  }
}
@media (max-width: 768px) {
  .lg-hero { padding: 44px 0 40px; }
  .lg-section { padding: 44px 0 72px; }
  .lg-officer { padding: 26px 24px; gap: 22px 32px; }
}
