/* ============================================================
   CHAD CHRISTENSEN RECORD — Premium Design System v3
   chadchristensen.org | Snake River Strategies
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;1,9..40,300;1,9..40,400;1,9..40,500&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Color Palette */
  --navy:          #0f1923;
  --navy-mid:      #1a2840;
  --navy-light:    #243452;
  --navy-border:   #2d4060;
  --red:           #c41e3a;
  --red-dark:      #9a1729;
  --red-muted:     rgba(196,30,58,0.08);
  --blue-gray:     #5b7b9e;
  --blue-light:    #a8c0d8;
  --content-bg:    #f7f9fc;
  --content-alt:   #f1f4f8;
  --off-white:     #f5f7fa;
  --white:         #ffffff;
  --body-text:     #1c2331;
  --text-mid:      #3d4f66;
  --muted:         #6b7c93;
  --border:        #c8d4e0;
  --border-light:  #e2e9f0;
  --yellow-flag:   #fff7e0;

  /* Typography */
  --font-body:     'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-display:  'DM Serif Display', Georgia, serif;

  /* Spacing Scale (8px base) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;
  --sp-12: 96px;

  /* Layout */
  --max-content:  860px;
  --max-wide:     1200px;
  --max-nav:      1280px;

  /* Effects */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --radius:       6px;
  --transition:   0.18s ease;
}

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

html {
  font-size: 20px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Skip navigation for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-2);
  background: var(--red);
  color: var(--white);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { top: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-inner {
  max-width: var(--max-nav);
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Document/file icon — folder with folded corner */
.site-title::before {
  content: '';
  display: block;
  width: 14px;
  height: 18px;
  background: var(--red);
  clip-path: polygon(0 0, 66% 0, 100% 34%, 100% 100%, 0 100%);
  flex-shrink: 0;
}

.site-title .red { color: var(--red); }

/* Global color utility */
.red { color: var(--red); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 11px;
  transition: color var(--transition);
  white-space: nowrap;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-links .nav-cta a {
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  font-weight: 700;
  border-radius: var(--radius);
  margin-left: var(--sp-2);
}
.nav-links .nav-cta a:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO — SPLIT PHOTO (Homepage)
   ============================================================ */
.hero-split {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.hero-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  display: block;
  transition: transform 6s ease;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--sp-8) var(--sp-12) var(--sp-6);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.hero-title .accent {
  color: var(--red);
  display: block;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: var(--sp-3) 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue-light);
  line-height: 1.7;
  max-width: 440px;
}

.hero-stats {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}

/* Sub-page hero (no photo) */
.hero-page,
.hero {
  background: var(--navy);
  padding: var(--sp-10) var(--sp-4) var(--sp-8);
  position: relative;
  overflow: hidden;
}

.hero-page::before,
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.hero-page-inner,
.hero-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}

.hero-page .hero-eyebrow { margin-bottom: var(--sp-2); }
.hero-page .hero-title { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.8rem); }
.hero-page .hero-subtitle,
.hero .hero-subtitle { max-width: 600px; margin-top: var(--sp-3); color: var(--blue-light); }

/* h1 inside .hero (subpages that use plain h1, not .hero-title) */
.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.05;
  margin: var(--sp-2) 0 0;
}

.hero .section-label { margin-bottom: var(--sp-1); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section-light  { background: var(--content-bg); }
.section-white  { background: var(--white); }
.section-alt    { background: var(--content-alt); }
.section-dark   { background: var(--navy-mid); color: var(--white); }
.section-navy   { background: var(--navy); color: var(--white); }

.section-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-4);
}

.section-inner-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-4);
}

/* Split sections */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-photo {
  overflow: hidden;
  position: relative;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  display: block;
}

.split-photo.circular-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  background: var(--content-alt);
}

.split-photo.circular-wrap img {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  box-shadow: var(--shadow-lg);
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-10) var(--sp-8);
}

.photo-right .split-photo { order: 2; }
.photo-right .split-content { order: 1; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */

/* Labels / Eyebrows */
.label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-2);
}

.section-dark .label,
.section-navy .label { color: var(--red); }

/* Headings */
h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  line-height: 1.15;
  font-weight: 900;
}

.section-inner h2,
.section-inner-wide h2,
.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: var(--sp-6) 0 var(--sp-3);
  line-height: 1.2;
}

.section-inner h2:first-child,
.section-inner-wide h2:first-child,
.split-content h2:first-child { margin-top: 0; }

.section-dark h2,
.section-navy h2 { color: var(--white); }

.profile-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: var(--sp-6) 0 var(--sp-2);
  line-height: 1.2;
}
.profile-body h2:first-child { margin-top: 0; }

.section-inner h3,
.section-inner-wide h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: var(--sp-6) 0 var(--sp-2);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.section-dark h3,
.section-navy h3 { color: var(--white); border-color: rgba(255,255,255,0.1); }

.section-inner h4,
.split-content h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: var(--sp-3) 0 var(--sp-1);
}

/* Body text */
.section-inner p,
.section-inner-wide p,
.split-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.3em;
  color: var(--body-text);
  font-weight: 400;
}

.section-inner p:last-child,
.section-inner-wide p:last-child,
.split-content p:last-child { margin-bottom: 0; }

.section-dark p,
.section-navy p { color: var(--blue-light); }

/* Links */
.section-inner a,
.section-inner-wide a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition);
}

.section-inner a:hover,
.section-inner-wide a:hover { color: var(--red); }

.section-dark a,
.section-navy a { color: #7aaad4; }
.section-dark a:hover,
.section-navy a:hover { color: var(--white); }

/* Source / citation inline */
.source-inline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   QUOTE COMPONENTS
   ============================================================ */

/* Pull quote — light sections */
.pull-quote {
  margin: var(--sp-5) 0;
  padding: var(--sp-4) var(--sp-5);
  border-left: 4px solid var(--navy);
  background: rgba(15,25,35,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-dark .pull-quote,
.section-navy .pull-quote {
  border-color: var(--red);
  background: rgba(196,30,58,0.08);
}

.pull-quote p {
  font-size: 1.05rem !important;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7 !important;
  color: var(--body-text) !important;
  margin-bottom: 0.5em !important;
}

.section-dark .pull-quote p,
.section-navy .pull-quote p { color: var(--white) !important; }

.pull-quote .attribution {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--sp-2);
  display: block;
}

.section-dark .pull-quote .attribution,
.section-navy .pull-quote .attribution { color: var(--blue-light); }

/* Social media quote block */
.social-quote {
  margin: var(--sp-3) 0;
  padding: var(--sp-3) var(--sp-4);
  border-left: 3px solid var(--red);
  background: var(--red-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.social-quote blockquote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 10px;
  font-weight: 400;
}

.social-quote .source {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-quote .source a {
  color: var(--muted) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.social-quote .source a:hover { color: var(--red) !important; }

/* Dark section social quote */
.faith-contrast .social-quote {
  background: rgba(196,30,58,0.12);
  border-left-color: var(--red);
}
.faith-contrast .social-quote blockquote { color: rgba(255,255,255,0.92); }
.faith-contrast .social-quote .source { color: var(--blue-light); }
.faith-contrast .social-quote .source a { color: var(--blue-light) !important; }

/* Deposition quote block */
.depo-block {
  padding: var(--sp-8) var(--sp-6);
}

.depo-q {
  font-size: 0.97rem;
  font-style: italic;
  color: var(--blue-light);
  line-height: 1.65;
  margin-bottom: 10px;
  display: block;
}

.depo-a {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
  display: block;
}

.depo-citation {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-gray);
  margin-top: var(--sp-4);
  display: block;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   EVIDENCE COMPONENTS
   ============================================================ */

/* Evidence strip — document screenshots */
.evidence-strip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-5) 0;
}

.evidence-label {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
  margin-bottom: var(--sp-2);
}

.evidence-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-2);
}

.evidence-images img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: box-shadow var(--transition);
}

.evidence-images img:hover { box-shadow: var(--shadow-md); }

/* Fact check card */
.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: var(--sp-4);
  margin: var(--sp-3) 0;
  box-shadow: var(--shadow-sm);
}

.fact-card .fc-says {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-gray);
  display: block;
  margin-bottom: 6px;
}

.fact-card .fc-claim {
  font-size: 1rem;
  font-style: italic;
  color: var(--body-text);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-light);
}

.fact-card .fc-verdict {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.fact-card .fc-fact {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   HOMEPAGE COMPONENTS
   ============================================================ */

/* Six things list */
.six-things { display: flex; flex-direction: column; gap: 0; }

.six-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.six-item:last-child { border-bottom: none; }

.six-num {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.1em;
  min-width: 34px;
  padding-top: 4px;
  flex-shrink: 0;
}

.six-body h4 {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  color: var(--navy) !important;
  margin: 0 0 6px !important;
}

.six-body p {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
}

.six-body a {
  text-decoration: none !important;
  color: var(--navy) !important;
}
.six-body a:hover { color: var(--red) !important; }

/* ============================================================
   CAREER / RECORD TABLE
   ============================================================ */
.career-record {
  border-top: 2px solid var(--navy);
  margin: var(--sp-3) 0;
}

.career-item,
.career-record-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.career-item .role,
.career-record-item .role {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.career-item .detail,
.career-record-item .detail {
  color: var(--text-mid);
  line-height: 1.6;
}

/* Career record — dark section overrides */
.section-dark .career-record,
.section-navy .career-record {
  border-top-color: rgba(255,255,255,0.15);
}

.section-dark .career-item,
.section-dark .career-record-item,
.section-navy .career-item,
.section-navy .career-record-item {
  border-bottom-color: rgba(255,255,255,0.08);
}

.section-dark .career-item .role,
.section-dark .career-record-item .role,
.section-navy .career-item .role,
.section-navy .career-record-item .role {
  color: var(--white);
}

.section-dark .career-item .detail,
.section-dark .career-record-item .detail,
.section-navy .career-item .detail,
.section-navy .career-record-item .detail {
  color: var(--blue-light);
}

/* ============================================================
   DATA TABLES
   ============================================================ */
.data-table-wrap {
  overflow-x: auto;
  margin: var(--sp-4) 0;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  line-height: 1.45;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  padding: 11px 16px;
  text-align: left;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.data-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.data-table tr.flagged td { background: var(--yellow-flag); font-weight: 600; }

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: var(--sp-4) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 11px 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.compare-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.55;
}

.compare-table td:first-child {
  border-right: 2px solid var(--border);
  font-style: italic;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============================================================
   BIG NUMBER / STAT BLOCK
   ============================================================ */
.big-number {
  text-align: center;
  padding: var(--sp-3) 0 var(--sp-5);
}

.big-number .number {
  font-family: var(--font-body);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}

.big-number .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-gray);
  display: block;
  margin-top: var(--sp-1);
}

/* Stat row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin: var(--sp-5) 0;
}

.stat-block {
  background: var(--navy);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}

.stat-block .stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-block .stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   RELIGIOUS HYPOCRISY — FEATURED BLOCK
   ============================================================ */
.faith-contrast {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-10) var(--sp-8);
  position: relative;
  overflow: hidden;
}

.faith-contrast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
}

.faith-contrast .faith-label {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-2);
}

.faith-contrast h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-4);
  border-bottom: none !important;
}

.faith-contrast .intro-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
  max-width: 700px;
  font-weight: 400;
}

.faith-contrast .quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-3);
}

/* ============================================================
   STEP LIST (Numbered Steps)
   ============================================================ */
.step-list {
  list-style: none;
  margin: var(--sp-4) 0;
  counter-reset: steps;
}

.step-list li {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
  align-items: flex-start;
  counter-increment: steps;
}

.step-num {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  background: var(--navy);
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 2px;
}

.section-dark .step-num { background: var(--red); }

.step-list p {
  margin-bottom: 0 !important;
  font-size: 0.95rem !important;
}

/* ============================================================
   BANNER / CTA SECTIONS
   ============================================================ */
.banner-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--sp-10) var(--sp-4);
  position: relative;
}

.banner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.banner-cta h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: var(--white) !important;
  margin: 0 0 var(--sp-2) !important;
}

.banner-cta p {
  font-size: 0.95rem !important;
  color: var(--blue-light) !important;
  margin-bottom: var(--sp-5) !important;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-red {
  background: var(--red);
  color: var(--white) !important;
  border-color: var(--red);
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-group {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { margin: var(--sp-4) 0; }

.form-group { margin-bottom: var(--sp-3); }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--body-text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,25,35,0.06);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  margin-top: var(--sp-1);
}

.btn-submit:hover { background: var(--navy-mid); }

.privacy-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: var(--sp-3);
  line-height: 1.55;
}

/* ============================================================
   SOURCES LIST
   ============================================================ */
.sources-list {
  margin: var(--sp-3) 0;
  font-size: 0.78rem;
  line-height: 1.8;
  list-style: none;
}

.sources-list li {
  margin-bottom: 8px;
  padding-left: 1.4em;
  position: relative;
}

.sources-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}

.sources-list a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   QUOTE IMAGE FORMATTING
   ============================================================ */
.quote-image-wrap {
  margin: var(--sp-4) 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.quote-image-wrap img { width: 100%; display: block; }

.quote-image-caption {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.img-caption {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  margin-bottom: var(--sp-3);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  padding: var(--sp-8) var(--sp-4) var(--sp-5);
  font-size: 0.72rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--sp-4);
}

.footer-brand .site-title {
  font-size: 0.72rem;
  margin-bottom: var(--sp-2);
}

.footer-brand p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-2);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.footer-copyright {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
  width: 100%;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  max-width: var(--max-wide);
  margin: 0 auto var(--sp-2);
  text-align: center;
  line-height: 1.65;
  font-style: italic;
}

/* Simple footer fallback */
.site-footer > p {
  max-width: var(--max-wide);
  margin: 0 auto var(--sp-1);
  text-align: center;
}
.site-footer a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.site-footer a:hover { color: var(--white); }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--sp-6) 0;
}

.section-divider { border: none; border-top: 1px solid var(--border); margin: var(--sp-5) 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: var(--sp-4); }

/* Network profile card */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
  margin: var(--sp-5) 0;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}

.profile-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.profile-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--content-alt);
}

.profile-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.profile-card:hover .profile-card-photo img { filter: grayscale(0%); }

.profile-card-body {
  padding: var(--sp-3) var(--sp-4);
}

.profile-card-role {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.profile-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.profile-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  html { font-size: 17px; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { height: 380px; }
  .hero-photo::after { background: linear-gradient(to bottom, transparent 60%, var(--navy) 100%); }
  .hero-content { padding: var(--sp-6) var(--sp-4); }

  .split-section { grid-template-columns: 1fr; }
  .split-photo { height: 300px; order: 1 !important; }
  .split-content { order: 2 !important; padding: var(--sp-6) var(--sp-4); }
  .split-photo.circular-wrap { height: auto; }
  .split-photo.circular-wrap img { width: 220px; height: 220px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #0a1420;
    flex-direction: column;
    padding: var(--sp-2) 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px var(--sp-4); font-size: 0.78rem; border-radius: 0; }
  .nav-links .nav-cta { padding: var(--sp-1) var(--sp-3); }
  .nav-links .nav-cta a { margin-left: 0; }
  .nav-toggle { display: block; }

  .faith-contrast { padding: var(--sp-6) var(--sp-4); }
  .faith-contrast .quotes-grid { grid-template-columns: 1fr; }

  .career-item,
  .career-record-item { grid-template-columns: 1fr; gap: 4px; }

  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }

  .hero-title { font-size: 1.75rem; }
  .hero-stats { flex-direction: column; gap: var(--sp-3); }

  .data-table { font-size: 0.75rem; }
  .data-table th, .data-table td { padding: 8px 10px; }

  .stat-row { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   NETWORK PAGES
   ============================================================ */

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding: 0 var(--sp-4);
}

.network-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius);
  padding: var(--sp-4);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-top-color var(--transition);
}
.network-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-top-color: var(--navy);
}

.network-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: var(--sp-1);
}

.network-card-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.network-card-org {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: var(--sp-2);
  font-weight: 500;
}

.network-card-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: var(--sp-3);
}

.network-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.03em;
}

/* Profile page layout */
.profile-header {
  background: var(--navy);
  padding: var(--sp-10) 0 var(--sp-8);
  border-bottom: 4px solid var(--red);
}

.profile-header-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--sp-4);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.profile-photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--red);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--navy-border);
  font-weight: 900;
}

.profile-header-meta {
  padding-top: var(--sp-1);
}

.profile-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: var(--sp-1);
  display: block;
}

.profile-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}

.profile-subhead {
  font-size: 1rem;
  color: var(--blue-light);
  line-height: 1.65;
  max-width: 620px;
}

.profile-body {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--sp-8) var(--sp-4);
}

.profile-body p {
  margin-bottom: var(--sp-3);
  line-height: 1.8;
  font-size: 1rem;
  color: var(--body-text);
}

.profile-body p:last-child {
  margin-bottom: 0;
}

.profile-sources {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius);
  padding: var(--sp-4);
  margin-top: var(--sp-6);
}

.profile-sources h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}

.profile-sources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-sources li {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.profile-sources li:last-child { border-bottom: none; }

.profile-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-6);
}
.profile-nav-back:hover { color: var(--red-dark); }

@media (max-width: 768px) {
  .network-grid { grid-template-columns: 1fr; padding: 0 var(--sp-3); }
  .profile-header-inner { grid-template-columns: 1fr; gap: var(--sp-4); }
  .profile-photo-wrap { width: 100px; height: 100px; }
  .profile-header h1 { font-size: 1.6rem; }
}

/* ============================================================
   SECTION LABEL / EYEBROW
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: var(--sp-2);
}

/* ============================================================
   DEPOSITION QUOTE BLOCK (homepage + article pages)
   ============================================================ */
.depo-quote {
  margin: var(--sp-4) 0;
  max-width: 680px;
}

.depo-line-q {
  font-size: 1rem;
  font-style: italic;
  color: var(--blue-light);
  line-height: 1.7;
  margin-bottom: 10px;
  display: block;
}

.depo-line-a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 20px;
  display: block;
}

/* ============================================================
   SIX CARD GRID (homepage)
   ============================================================ */
.six-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.six-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.six-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.six-card-num {
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-1);
}

.six-card h4 {
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--navy) !important;
  margin: 0 0 var(--sp-2) !important;
  line-height: 1.3 !important;
}

.six-card h4 a {
  color: var(--navy) !important;
  text-decoration: none !important;
}
.six-card h4 a:hover { color: var(--red) !important; }

.six-card p {
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: var(--text-mid) !important;
  margin: 0 !important;
}

/* ============================================================
   EXTERNAL SOURCE CARDS (network pages)
   ============================================================ */
.ext-source-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-3);
  margin: var(--sp-4) 0;
}

.ext-source-card {
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  text-decoration: none !important;
  display: block;
  transition: border-color var(--transition), background var(--transition);
}

.ext-source-card:hover {
  background: var(--navy-mid);
  border-left-color: var(--white);
}

.ext-source-card .esc-outlet {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.ext-source-card .esc-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  display: block;
  margin-bottom: 8px;
}

.ext-source-card .esc-desc {
  font-size: 0.78rem;
  color: var(--blue-light);
  line-height: 1.55;
  display: block;
}

/* ============================================================
   BUTTON PRIMARY
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 12px 28px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white) !important;
  border: 2px solid var(--red);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

/* ============================================================
   RESPONSIVE — CARD GRIDS
   ============================================================ */
@media (max-width: 900px) {
  .six-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .six-card-grid { grid-template-columns: 1fr; }
  .ext-source-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header, .banner-cta, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #666; }
}
