/*
Theme Name: Eminence
Theme URI: https://eminence.co.uk
Author: The Principal Office
Author URI: https://eminence.co.uk
Description: A bespoke executive services theme for Eminence - The Principal Office. Luxury dark design with gold accents.
Version: 1.0
License: Private
Text Domain: eminence
*/

/* =============================================
   RESET & ROOT
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --near-black: #0D0D0B;
  --charcoal: #1A1A18;
  --mid: #2E2E2B;
  --warm-white: #F7F4EE;
  --text-muted: #8A8880;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--near-black); color: var(--warm-white); overflow-x: hidden; line-height: 1.7; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.15; }
p { font-size: 15px; line-height: 1.9; color: #B5B3AE; }
a { color: var(--gold); text-decoration: none; }
em { font-style: italic; }
strong { font-weight: 500; color: var(--warm-white); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(13,13,11,0.98), transparent);
  transition: background 0.3s;
}
.site-nav.scrolled { background: rgba(13,13,11,0.98); }
.nav-brand a { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; text-decoration: none; display: block; }
.nav-brand .tagline { font-size: 10px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.current { color: var(--gold); }
.nav-links .nav-cta { border-bottom: 1px solid transparent; padding-bottom: 2px; color: var(--gold); }
.nav-links .nav-cta:hover { border-color: var(--gold); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--gold); margin: 6px 0; transition: all 0.3s; }

/* =============================================
   GOLD DIVIDER
   ============================================= */
.gold-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 120px 60px 80px; position: relative;
  background: var(--near-black); overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.04) 50%, transparent 100%); pointer-events: none; }
.hero-ornament { font-size: 11px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 40px; display: flex; align-items: center; gap: 20px; animation: fadeUp 0.8s ease both; }
.hero-ornament::before { content: ''; display: block; width: 50px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero h1 { font-family: var(--serif); font-size: clamp(52px, 8vw, 96px); font-weight: 300; line-height: 1.05; letter-spacing: -1px; color: var(--warm-white); max-width: 700px; margin-bottom: 16px; animation: fadeUp 1s ease both; animation-delay: 0.2s; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; color: var(--text-muted); font-style: italic; margin-bottom: 48px; max-width: 550px; animation: fadeUp 1s ease both; animation-delay: 0.4s; }
.hero-cta { display: inline-flex; align-items: center; gap: 16px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid rgba(201,168,76,0.4); padding: 16px 36px; transition: all 0.4s; animation: fadeUp 1s ease both; animation-delay: 0.6s; }
.hero-cta:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); gap: 24px; color: var(--gold); }
.hero-bottom { position: absolute; bottom: 60px; right: 60px; text-align: right; border-right: 1px solid rgba(201,168,76,0.3); padding-right: 24px; }
.hero-bottom-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.5; line-height: 1; }
.hero-bottom-label { font-size: 10px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

/* =============================================
   INTRO SECTION
   ============================================= */
.intro { background: var(--charcoal); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.intro-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.intro-heading { font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 300; line-height: 1.2; color: var(--warm-white); }
.intro-heading em { font-style: italic; color: var(--gold); }
.intro-body p { font-size: 15px; color: #B5B3AE; line-height: 1.9; margin-bottom: 24px; }
.no-briefing { margin-top: 40px; padding: 32px 36px; border-left: 2px solid rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
.no-briefing-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.no-briefing-text { font-family: var(--serif); font-size: 19px; font-weight: 300; font-style: italic; color: var(--warm-white); line-height: 1.6; }
.no-briefing-sub { font-size: 13px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header { display: flex; align-items: center; gap: 24px; margin-bottom: 70px; }
.section-label { font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; white-space: nowrap; }
.section-line { flex: 1; height: 1px; background: linear-gradient(to right, rgba(201,168,76,0.3), transparent); }

/* =============================================
   SERVICES GRID
   ============================================= */
.services { background: var(--near-black); padding: 100px 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--charcoal); padding: 48px 36px; position: relative; transition: background 0.4s; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover { background: #232320; }
.service-card:hover::after { transform: scaleX(1); }
.service-number { font-family: var(--serif); font-size: 13px; font-weight: 300; color: rgba(201,168,76,0.4); letter-spacing: 2px; margin-bottom: 32px; }
.service-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--warm-white); margin-bottom: 14px; line-height: 1.3; }
.service-desc { font-size: 13px; line-height: 1.8; color: #8A8880; }

/* =============================================
   DISTINCTION QUOTE
   ============================================= */
.distinction { background: var(--mid); padding: 100px 60px; text-align: center; position: relative; overflow: hidden; }
.distinction::before { content: '"'; font-family: var(--serif); font-size: 400px; line-height: 0.8; color: rgba(201,168,76,0.04); position: absolute; top: 60px; left: 50%; transform: translateX(-50%); pointer-events: none; user-select: none; }
.distinction-quote { font-family: var(--serif); font-size: clamp(28px, 4vw, 52px); font-weight: 300; font-style: italic; line-height: 1.3; color: var(--warm-white); max-width: 800px; margin: 0 auto 32px; position: relative; }
.distinction-quote em { color: var(--gold); font-style: normal; }
.distinction-attr { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; }

/* =============================================
   PILLARS
   ============================================= */
.pillars { background: var(--charcoal); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.pillar { padding: 56px 48px; background: var(--charcoal); border-left: 1px solid rgba(201,168,76,0.15); }
.pillar:first-child { border-left: none; }
.pillar:nth-child(3) { border-top: 1px solid rgba(201,168,76,0.1); }
.pillar:nth-child(4) { border-top: 1px solid rgba(201,168,76,0.1); }
.pillar-tag { display: inline-block; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; background: rgba(201,168,76,0.08); padding: 6px 14px; border-radius: 2px; margin-bottom: 24px; }
.pillar h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--warm-white); margin-bottom: 16px; line-height: 1.3; }
.pillar p { font-size: 14px; line-height: 1.85; color: #8A8880; }

/* =============================================
   SECTORS
   ============================================= */
.sectors { background: var(--near-black); padding: 100px 60px; }
.sectors-row { display: flex; gap: 0; margin-top: 60px; border: 1px solid rgba(201,168,76,0.15); }
.sector-item { flex: 1; padding: 48px 32px; border-right: 1px solid rgba(201,168,76,0.12); text-align: center; transition: background 0.3s; }
.sector-item:last-child { border-right: none; }
.sector-item:hover { background: rgba(201,168,76,0.04); }
.sector-glyph { font-size: 32px; margin-bottom: 20px; opacity: 0.6; color: var(--gold); }
.sector-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--warm-white); margin-bottom: 10px; }
.sector-sub { font-size: 12px; letter-spacing: 1px; color: var(--text-muted); }

/* =============================================
   DISCRETION
   ============================================= */
.discretion { background: var(--charcoal); padding: 100px 60px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; align-items: center; }
.discretion-heading { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.15; color: var(--warm-white); margin-bottom: 32px; }
.discretion-heading em { font-style: italic; color: var(--gold); }
.discretion-body { font-size: 14px; line-height: 1.9; color: #8A8880; margin-bottom: 20px; }
.discretion-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(201,168,76,0.2); padding: 60px 40px; position: relative; }
.discretion-stat::before { content: ''; position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px; border: 1px solid rgba(201,168,76,0.08); pointer-events: none; }
.stat-num { font-family: var(--serif); font-size: 72px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 24px; }
.stat-body { font-size: 14px; color: #6A6A68; line-height: 1.7; }

/* =============================================
   CASE STUDIES TEASER (homepage)
   ============================================= */
.cs-teaser { background: var(--near-black); padding: 100px 60px; }
.cs-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 60px; }
.cs-teaser-card { background: var(--charcoal); padding: 48px 44px 64px; position: relative; text-decoration: none; display: block; transition: background 0.4s; overflow: hidden; }
.cs-teaser-card:hover { background: #232320; }
.cs-teaser-card::after { content: '→'; position: absolute; bottom: 40px; right: 44px; font-size: 20px; color: rgba(201,168,76,0.3); transition: all 0.4s; }
.cs-teaser-card:hover::after { color: var(--gold); right: 36px; }
.cs-teaser-card.locked { opacity: 0.4; cursor: default; }
.cs-teaser-card.locked::after { display: none; }
.cs-teaser-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cs-teaser-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 5px 12px; }
.cs-teaser-title { font-family: var(--serif); font-size: 26px; font-weight: 300; line-height: 1.3; color: var(--warm-white); margin-bottom: 16px; }
.cs-teaser-title em { font-style: italic; color: var(--gold); }
.cs-teaser-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.cs-teaser-more { margin-top: 48px; text-align: center; }
.cs-teaser-more a { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.3); padding-bottom: 4px; transition: border-color 0.3s; }
.cs-teaser-more a:hover { border-color: var(--gold); }

/* =============================================
   INTEGRITY
   ============================================= */
.integrity { background: var(--near-black); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); }
.integrity-left { position: sticky; top: 120px; }
.integrity-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; }
.integrity-heading { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--warm-white); }
.integrity-heading em { font-style: italic; color: var(--gold); }
.integrity-rule { padding: 40px 44px; background: var(--charcoal); margin-bottom: 2px; border-left: 2px solid rgba(201,168,76,0.2); transition: border-color 0.3s; }
.integrity-rule:hover { border-left-color: var(--gold); }
.integrity-rule-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--warm-white); margin-bottom: 12px; }
.integrity-rule-body { font-size: 14px; line-height: 1.85; color: #8A8880; }
.integrity-absolute { margin-top: 2px; padding: 40px 44px; background: rgba(201,168,76,0.06); border: 1px solid rgba(201,168,76,0.25); }
.integrity-absolute-label { font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.integrity-absolute-text { font-family: var(--serif); font-size: 18px; font-weight: 300; font-style: italic; color: var(--warm-white); line-height: 1.6; margin-bottom: 16px; }
.integrity-absolute-sub { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--near-black); padding: 120px 60px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%); pointer-events: none; }
.cta-label { font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 32px; }
.cta-heading { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.15; color: var(--warm-white); margin-bottom: 24px; }
.cta-heading em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto 56px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--near-black); background: var(--gold); padding: 18px 44px; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.btn-primary:hover { background: var(--gold-light); color: var(--near-black); }
.btn-secondary { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 18px 44px; text-decoration: none; transition: all 0.3s; }
.btn-secondary:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }

/* =============================================
   CASE STUDIES INDEX PAGE
   ============================================= */
.page-hero { padding: 160px 60px 80px; background: var(--near-black); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%); pointer-events: none; }
.page-hero-label { font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 20px; }
.page-hero-label::before { content: ''; display: block; width: 50px; height: 1px; background: var(--gold); opacity: 0.5; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 80px); font-weight: 300; line-height: 1.1; color: var(--warm-white); max-width: 700px; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 15px; color: var(--text-muted); max-width: 560px; line-height: 1.9; }

.disclaimer { background: var(--charcoal); padding: 48px 60px; border-top: 1px solid rgba(201,168,76,0.12); border-bottom: 1px solid rgba(201,168,76,0.12); }
.disclaimer-inner { display: flex; gap: 32px; align-items: flex-start; max-width: 860px; }
.disclaimer-icon { font-size: 20px; color: var(--gold); opacity: 0.6; flex-shrink: 0; margin-top: 2px; }
.disclaimer-text { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

.cs-archive { padding: 60px 60px 100px; background: var(--near-black); display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.cs-card { background: var(--charcoal); padding: 52px 48px 72px; position: relative; text-decoration: none; display: block; transition: background 0.4s; overflow: hidden; }
.cs-card:hover { background: #232320; }
.cs-card::after { content: '→'; position: absolute; bottom: 44px; right: 48px; font-size: 20px; color: rgba(201,168,76,0.25); transition: all 0.4s; }
.cs-card:hover::after { color: var(--gold); right: 40px; }
.cs-card.locked { opacity: 0.35; cursor: default; }
.cs-card.locked::after { display: none; }
.cs-card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.cs-card-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 5px 12px; }
.cs-card-tag-dark { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); border: 1px solid rgba(138,136,128,0.2); padding: 5px 12px; }
.cs-card-title { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px); font-weight: 300; line-height: 1.3; color: var(--warm-white); margin-bottom: 20px; }
.cs-card-title em { font-style: italic; color: var(--gold); }
.cs-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.85; margin-bottom: 32px; }
.cs-card-meta { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.1); flex-wrap: wrap; }
.cs-card-meta-item { display: flex; flex-direction: column; gap: 4px; }
.cs-card-meta-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(138,136,128,0.5); }
.cs-card-meta-value { font-family: var(--serif); font-size: 15px; color: #B5B3AE; }

.nda-note { background: var(--mid); padding: 80px 60px; text-align: center; }
.nda-note-inner { max-width: 640px; margin: 0 auto; }
.nda-note h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 300; line-height: 1.3; color: var(--warm-white); margin-bottom: 20px; }
.nda-note h2 em { font-style: italic; color: var(--gold); }
.nda-note p { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 36px; }

/* =============================================
   SINGLE CASE STUDY
   ============================================= */
.cs-single-hero { padding: 160px 60px 80px; background: var(--near-black); position: relative; overflow: hidden; }
.cs-single-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 50%, transparent 100%); pointer-events: none; }
.cs-tags { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.cs-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 7px 16px; border: 1px solid rgba(201,168,76,0.3); color: var(--gold); }
.cs-tag-dark { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; padding: 7px 16px; border: 1px solid rgba(138,136,128,0.25); color: var(--text-muted); }
.cs-single-hero h1 { font-family: var(--serif); font-size: clamp(40px, 6vw, 76px); font-weight: 300; line-height: 1.1; color: var(--warm-white); max-width: 820px; margin-bottom: 32px; letter-spacing: -0.5px; }
.cs-single-hero h1 em { font-style: italic; color: var(--gold); }
.cs-hero-meta { display: flex; gap: 48px; align-items: flex-start; padding-top: 40px; border-top: 1px solid rgba(201,168,76,0.15); max-width: 820px; flex-wrap: wrap; }
.cs-meta-item { display: flex; flex-direction: column; gap: 6px; }
.cs-meta-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.cs-meta-value { font-family: var(--serif); font-size: 18px; font-weight: 300; color: var(--warm-white); }

.cs-opening { background: var(--mid); padding: 80px 60px; }
.cs-opening-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cs-opening-quote { font-family: var(--serif); font-size: clamp(24px, 3.5vw, 42px); font-weight: 300; font-style: italic; line-height: 1.4; color: var(--warm-white); margin-bottom: 24px; }
.cs-opening-quote em { color: var(--gold); font-style: normal; }
.cs-opening-sub { font-size: 13px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }

.cs-body { background: var(--charcoal); padding: 100px 60px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.cs-sidebar { position: sticky; top: 120px; }
.cs-sidebar-section { margin-bottom: 48px; }
.cs-sidebar-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.cs-sidebar-item { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.cs-sidebar-item::before { content: '-'; color: rgba(201,168,76,0.4); flex-shrink: 0; }
.cs-sidebar-stat { margin-bottom: 24px; }
.cs-sidebar-stat-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.cs-sidebar-stat-label { font-size: 11px; letter-spacing: 1px; color: var(--text-muted); line-height: 1.5; }
.cs-section { margin-bottom: 64px; }
.cs-section:last-child { margin-bottom: 0; }
.cs-section-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
.cs-section-label::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.2); }
.cs-section h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 36px); font-weight: 300; line-height: 1.25; color: var(--warm-white); margin-bottom: 24px; }
.cs-section h2 em { font-style: italic; color: var(--gold); }
.cs-para { font-size: 15px; color: #B5B3AE; line-height: 1.95; margin-bottom: 20px; }
.cs-pull { margin: 36px 0; padding: 28px 36px; border-left: 2px solid rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
.cs-pull-text { font-family: var(--serif); font-size: 20px; font-weight: 300; font-style: italic; color: var(--warm-white); line-height: 1.6; }

.cs-outcomes { background: var(--near-black); padding: 80px 60px; }
.cs-outcomes-label { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 48px; display: flex; align-items: center; gap: 16px; }
.cs-outcomes-label::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.2); }
.cs-outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cs-outcome-card { background: var(--charcoal); padding: 40px 32px; position: relative; }
.cs-outcome-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); opacity: 0.4; }
.cs-outcome-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.cs-outcome-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.cs-outcome-desc { font-size: 13px; color: #6A6A68; line-height: 1.75; }

.cs-closing { background: var(--mid); padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cs-closing h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 20px; }
.cs-closing h2 em { font-style: italic; color: var(--gold); }
.cs-closing p { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.cs-closing-note { padding: 40px; border: 1px solid rgba(201,168,76,0.2); position: relative; }
.cs-closing-note::before { content: ''; position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px; border: 1px solid rgba(201,168,76,0.07); pointer-events: none; }
.cs-closing-note-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.cs-closing-note-text { font-family: var(--serif); font-size: 17px; font-weight: 300; font-style: italic; color: var(--warm-white); line-height: 1.7; margin-bottom: 16px; }
.cs-closing-note-sub { font-size: 12px; color: rgba(138,136,128,0.7); line-height: 1.7; }

.cs-page-nav { background: var(--charcoal); padding: 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(201,168,76,0.12); }
.cs-page-nav a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.3s; }
.cs-page-nav a:hover { border-color: var(--gold); }
.cs-page-nav-center { text-align: center; }
.cs-page-nav-logo { font-family: var(--serif); font-size: 16px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; opacity: 0.6; }
.cs-page-nav-sub { font-size: 10px; letter-spacing: 2px; color: rgba(138,136,128,0.5); text-transform: uppercase; margin-top: 4px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #080807; padding: 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(201,168,76,0.12); flex-wrap: wrap; gap: 24px; }
.footer-logo { font-family: var(--serif); font-size: 18px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; }
.footer-note { font-size: 11px; color: rgba(138,136,128,0.6); letter-spacing: 1px; text-align: center; line-height: 1.8; }
.footer-right { font-size: 11px; color: rgba(138,136,128,0.6); text-align: right; line-height: 1.8; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .site-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,13,11,0.98); padding: 24px; gap: 20px; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 24px 60px; }
  .intro { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; padding: 60px 24px; }
  .pillar { border-left: none !important; border-top: 1px solid rgba(201,168,76,0.1) !important; }
  .pillar:first-child { border-top: none !important; }
  .sectors { padding: 60px 24px; }
  .sectors-row { flex-direction: column; }
  .sector-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.12); }
  .discretion { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .distinction { padding: 60px 24px; }
  .cs-teaser { padding: 60px 24px; }
  .cs-teaser-grid { grid-template-columns: 1fr; }
  .integrity { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .integrity-left { position: static; }
  .cta-section { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .page-hero { padding: 120px 24px 60px; }
  .disclaimer { padding: 40px 24px; }
  .cs-archive { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .nda-note { padding: 60px 24px; }
  .cs-single-hero { padding: 120px 24px 60px; }
  .cs-hero-meta { gap: 24px; }
  .cs-opening { padding: 60px 24px; }
  .cs-body { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .cs-sidebar { position: static; }
  .cs-outcomes { padding: 60px 24px; }
  .cs-outcomes-grid { grid-template-columns: 1fr; }
  .cs-closing { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .cs-page-nav { padding: 40px 24px; }
}
