.legal-page{
  --l-navy: #0B1B2B;
  --l-deep: #0D2137;
  --l-teal: #0A8C7A;
  --l-teal-light: #12B09B;
  --l-gold: #C9A84C;
  --l-gold-light: #E2C06E;
  --l-cream: #F7F3EE;
  --l-warm-white: #FDFAF6;
  --l-muted: #6B7C8D;
  --l-border: rgba(201,168,76,0.2);
  font-family: 'DM Sans', sans-serif;
}

/* ── PAGE HERO ── */
.page-hero { background: var(--l-navy); padding: 9rem 5% 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero::after { content: ''; position: absolute; top: 4px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--l-teal), var(--l-gold), var(--l-teal)); }
.hero-inner { position: relative; z-index: 2; }
.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--l-gold); border: 1px solid rgba(201,168,76,0.35); padding: 0.35rem 1rem; border-radius: 2px; margin-bottom: 1.2rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--l-warm-white); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.page-hero h1 em { font-style: italic; color: var(--l-gold); }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(253,250,246,0.4); list-style: none; margin-top: 0.5rem; }
.breadcrumb a { color: rgba(253,250,246,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--l-gold); }
.breadcrumb li + li::before { content: '›'; margin-right: 0.5rem; }

/* ── CONTENT SECTION ── */
.content-section { background: var(--l-cream); padding: 6rem 5%; position: relative; }
.content-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--l-teal), var(--l-gold), var(--l-teal)); }
.content-inner { max-width: 860px; margin: 0 auto; }

.section-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--l-teal); margin-bottom: 0.6rem; }
.section-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; color: var(--l-navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.meta-info { font-size: 0.82rem; color: var(--l-muted); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(11,27,43,0.1); }
.section-sub { font-size: 0.95rem; font-weight: 300; color: var(--l-muted); line-height: 1.75; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(11,27,43,0.1); }

/* ── NOTICE BOX ── */
.notice-box { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3); border-left: 4px solid var(--l-gold); padding: 1.4rem 1.6rem; margin-bottom: 3rem; border-radius: 0 2px 2px 0; }
.notice-box p { font-size: 0.88rem; line-height: 1.75; color: var(--l-navy); }

/* ── ARTICLE CONTENT ── */
.article-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--l-navy); margin: 2.5rem 0 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(11,27,43,0.1); }
.article-content h3 { font-size: 1rem; font-weight: 700; color: var(--l-teal); letter-spacing: 0.04em; text-transform: uppercase; margin: 1.8rem 0 0.6rem; }
.article-content p { font-size: 0.92rem; line-height: 1.8; color: #3a4f62; margin-bottom: 1rem; }
.article-content ul { margin: 0.6rem 0 1rem 1.4rem; }
.article-content ul li { font-size: 0.92rem; line-height: 1.8; color: #3a4f62; margin-bottom: 0.4rem; }
.article-content strong { color: var(--l-navy); font-weight: 600; }
