

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

:root {
  --black:       #FFFFFF;
  --charcoal:    #F7F4F0;
  --dark:        #231F20;
  --crimson:     #C42032;
  --crimson-dark:#9E1828;
  --crimson-glow:rgba(196,32,50,0.08);
  --gold:        #C8973A;
  --gold-light:  #E8B55A;
  --white:       #1A1618;
  --off-white:   #F5F3F0;
  --gray-light:  #2C2826;
  --gray-mid:    #5A5452;
  --gray-dark:   #8A8280;
  --border:      rgba(0,0,0,0.1);
  --border-red:  rgba(196,32,50,0.25);
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;
  --max-w:       1200px;
  --section-pad: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #FFFFFF;
  color: #1A1618;
  line-height: 1.6; font-size: 16px;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section-pad { padding: var(--section-pad) 0; }
.label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); display: inline-block; margin-bottom: 16px; }
.label::before { content: '—'; margin-right: 8px; opacity: 0.6; }

/* ── Buttons ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--crimson); color: #FFFFFF; font-size: 14px; font-weight: 600; letter-spacing: 0.03em; padding: 14px 28px; border-radius: 4px; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--crimson-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,32,50,0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #1A1618; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; padding: 14px 28px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.25); transition: all 0.2s; cursor: pointer; }
.btn-secondary:hover { border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.04); }
.btn-arrow { font-size: 16px; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ── Navigation — stays dark ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #0D0B0B; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-size: 13px; font-weight: 500; color: #E8E4E0; padding: 8px 14px; border-radius: 4px; cursor: pointer; transition: color 0.2s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover { color: #fff; }
.chevron { font-size: 10px; opacity: 0.5; transition: transform 0.2s; }
.nav-links > li.open > a .chevron { transform: rotate(180deg); }
.mega-menu, .simple-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: #1A1618; border: 1px solid rgba(255,255,255,0.1); border-top: 2px solid #C42032; border-radius: 0 0 8px 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.8); z-index: 1001; }
.mega-menu { padding: 24px; min-width: 620px; grid-template-columns: repeat(3,1fr); gap: 0; }
.mega-menu.open { display: grid !important; }
.simple-dropdown { padding: 10px; min-width: 200px; flex-direction: column; gap: 2px; }
.simple-dropdown.open { display: flex !important; }
.mega-menu-section { display: flex; flex-direction: column; padding: 0 8px; }
.mega-menu-section-title { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: #C42032; padding: 0 4px 10px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 6px; }
.mega-menu a, .simple-dropdown a { display: block; font-size: 13px; color: #E8E4E0; padding: 7px 10px; border-radius: 4px; transition: all 0.15s; white-space: nowrap; }
.mega-menu a:hover, .simple-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta { background: #C42032 !important; color: #fff !important; padding: 10px 18px !important; border-radius: 4px !important; font-weight: 600 !important; font-size: 13px; }
.nav-cta:hover { background: #9E1828 !important; }

/* ── Page Hero (inner pages) — stays dark ── */
.page-hero { padding: 140px 0 80px; background: #F7F4F0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(196,32,50,0.05) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; padding: 0 40px; }
.page-hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.page-hero-line { width: 40px; height: 1px; background: var(--crimson); }
.page-hero-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; color: #1A1618; }
.page-hero h1 em { font-style: normal; color: var(--crimson); }
.page-hero-sub { font-size: 18px; line-height: 1.65; color: #5A5452; margin-bottom: 36px; max-width: 620px; }
.page-hero-sub strong { color: #1A1618; font-weight: 500; }
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero .btn-secondary { color: #1A1618; border-color: rgba(0,0,0,0.25); }
.page-hero .btn-secondary:hover { border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.04); }

/* ── Section content — light backgrounds ── */
.section-headline { font-family: var(--font-display); font-size: clamp(26px,3vw,38px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; color: #1A1618; }
.section-headline em { font-style: normal; color: var(--crimson); }
.section-body { font-size: 16px; line-height: 1.7; color: #5A5452; margin-bottom: 20px; }
.section-body strong { color: #1A1618; font-weight: 600; }

/* ── Cards ── */
.card { background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 32px; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: rgba(196,32,50,0.3); transform: translateY(-2px); }
.card-accent-top { position: relative; overflow: hidden; }
.card-accent-top::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--crimson); }
.card-accent-gold::before { background: var(--gold); }

/* ── Steps ── */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(196,32,50,0.1); border: 1px solid rgba(196,32,50,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.step-title { font-size: 17px; font-weight: 600; color: #1A1618; margin-bottom: 8px; }
.step-text { font-size: 15px; color: #5A5452; line-height: 1.65; }
.step-meta { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--crimson); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-q { font-size: 16px; font-weight: 600; color: #1A1618; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 12px; }
.faq-q::before { content: 'Q'; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--crimson); background: rgba(196,32,50,0.1); padding: 3px 7px; border-radius: 3px; flex-shrink: 0; margin-top: 3px; }
.faq-a { font-size: 15px; color: #5A5452; line-height: 1.65; padding-left: 38px; }

/* ── Proof quote ── */
.proof-quote-block { background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 32px 36px; position: relative; }
.proof-quote-block::before { content: '"'; font-family: var(--font-display); font-size: 80px; color: var(--gold); opacity: 0.2; position: absolute; top: 8px; left: 20px; line-height: 1; }
.proof-quote-text { font-family: var(--font-display); font-size: 17px; font-style: italic; color: #1A1618; line-height: 1.55; margin-bottom: 12px; position: relative; z-index: 1; }
.proof-quote-author { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: #5A5452; }

/* ── Breadcrumb ── */
.breadcrumb { position: absolute; top: 90px; left: 0; right: 0; z-index: 3; }
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a, .breadcrumb span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: #8A8280; }
.breadcrumb a:hover { color: #5A5452; }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: #5A5452; }

/* ── Footer — stays dark ── */
.footer { background: #0D0B0B; border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 0 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: #9B9490; margin-bottom: 16px; }
.footer-contact { font-size: 13px; color: #4A4442; line-height: 1.8; }
.footer-contact a { color: #9B9490; transition: color 0.2s; }
.footer-contact a:hover { color: #FFFFFF; }
.footer-col-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #4A4442; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: #9B9490; transition: color 0.2s; }
.footer-links a:hover { color: #FFFFFF; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: #4A4442; }
.footer-domains { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-domain { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: #4A4442; transition: color 0.2s; }
.footer-domain:hover { color: #C42032; }

/* ── Animations ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Page-specific components ── */
.report-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 24px 0; }
.report-item { display: flex; align-items: center; gap: 12px; background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; padding: 14px 18px; }
.report-icon { font-size: 18px; }
.report-label { font-size: 14px; color: #2C2826; font-weight: 500; }
.path-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }
.path-card { background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; padding: 24px; transition: border-color 0.2s; }
.path-card:hover { border-color: rgba(196,32,50,0.3); }
.path-card-icon { font-size: 24px; margin-bottom: 12px; }
.path-card-title { font-size: 15px; font-weight: 600; color: #1A1618; margin-bottom: 8px; }
.path-card-text { font-size: 13px; color: #5A5452; line-height: 1.6; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.cg-card { background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 28px; }
.cg-card.highlight { border-color: rgba(196,32,50,0.3); background: rgba(196,32,50,0.04); }
.cg-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 16px; color: #8A8280; }
.cg-card.highlight .cg-label { color: var(--crimson); }
.cg-item { font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.08); display: flex; align-items: center; gap: 10px; color: #5A5452; }
.cg-item:last-child { border-bottom: none; }
.cg-card.highlight .cg-item { color: #1A1618; }
.call-types { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
.ct-card { background: #F7F4F0; border: 1px solid rgba(0,0,0,0.1); border-radius: 8px; padding: 28px; position: relative; overflow: hidden; }
.ct-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--crimson); }
.ct-icon { font-size: 28px; margin-bottom: 14px; }
.ct-title { font-size: 17px; font-weight: 700; color: #1A1618; margin-bottom: 12px; }
.ct-text { font-size: 14px; color: #5A5452; line-height: 1.65; margin-bottom: 16px; }
.ct-options { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ct-option { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #2C2826; }
.ct-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,0.08); font-family: var(--font-mono); font-size: 11px; color: #8A8280; }

@media (max-width: 900px) {
  .report-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .call-types { grid-template-columns: 1fr; }
}

/* ── CTA (inner pages) — light background, dark text ── */
.cta-content { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section {
  background: #EDE9E4;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(196,32,50,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #1A1618;
}
.cta-headline em { font-style: normal; color: var(--crimson); }
.cta-sub { font-size: 16px; color: #5A5452; margin-bottom: 36px; line-height: 1.65; }
.cta-section .btn-secondary { color: #1A1618; border-color: rgba(0,0,0,0.25); }
.cta-section .btn-secondary:hover { border-color: rgba(0,0,0,0.4); background: rgba(0,0,0,0.04); }

/* ── Homepage section-cta — stays dark across all themes ── */
.section-cta { background: #1A1618 !important; }
.section-cta .cta-headline { color: #FFFFFF !important; }
.section-cta .cta-headline em { color: #E8888A !important; }
.section-cta .cta-sub { color: #9B9490 !important; }
.section-cta .btn-secondary { color: #FFFFFF !important; border-color: rgba(255,255,255,0.3) !important; }
.section-cta .btn-secondary:hover { border-color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.05) !important; }
