/* Word of Truth Publishing — Shared Styles */

:root {
  --navy: #1a2744;
  --navy-dark: #111b33;
  --navy-mid: #243359;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --cream: #faf8f5;
  --cream-dark: #f0ece4;
  --text: #1e1e1e;
  --text-mid: #3a3a3a;
  --text-muted: #6b6b6b;
  --border: #d8d0c4;
  --white: #ffffff;
  --red-soft: #7a2020;
  --green-soft: #1a4a2e;

  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1100px;
  --section-pad: 5rem 1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ─── UTILITY ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* ─── NAVIGATION ─── */
.site-nav {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

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

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
}
.nav-links .nav-cta a {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  padding: 0.4rem 1rem;
}
.nav-links .nav-cta a:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
}

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

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.75;
}

/* ─── NOTICE BOXES ─── */
.notice {
  border-left: 4px solid var(--gold);
  background: #fffbf0;
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 1.5rem 0;
}
.notice strong { color: var(--navy-dark); }
.notice-red {
  border-left-color: #9b3a3a;
  background: #fff5f5;
}
.notice-navy {
  border-left-color: var(--navy);
  background: #f5f7fb;
}
.notice-block {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 2rem 0;
}
.notice-block strong { display: block; margin-bottom: 0.5rem; color: var(--navy-dark); font-size: 0.95rem; }

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(26,39,68,0.08);
  transform: translateY(-2px);
}
.service-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}
.service-card-intro {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.service-detail { margin-top: 1.25rem; }
.service-detail-row {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--cream-dark);
}
.service-detail-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.service-detail-label.is { color: var(--green-soft); }
.service-detail-label.for { color: var(--navy); }
.service-detail-label.not { color: var(--red-soft); }
.service-detail-label.consult { color: #7a5a00; }
.service-detail-row p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ─── PATHS ─── */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.path-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
  display: block;
}
.path-card:hover {
  box-shadow: 0 4px 16px rgba(26,39,68,0.1);
  border-color: var(--gold);
}
.path-card-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.path-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.path-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── AUDIENCE GRID ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.audience-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
}
.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg { color: var(--gold); }
.audience-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.35rem; }
.audience-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ─── INQUIRY FORM ─── */
.form-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 760px;
  margin: 2rem auto 0;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.form-submit-area { margin-top: 2rem; text-align: center; }
.form-submit-area .btn { padding: 0.85rem 2.5rem; font-size: 1rem; }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.5rem; }

/* ─── BOUNDARY WALL (not/consultation rows) ─── */
.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.boundary-col { }
.boundary-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid;
}
.boundary-col.not h4 { color: var(--red-soft); border-color: var(--red-soft); }
.boundary-col.consult h4 { color: #7a5a00; border-color: #c9a84c; }
.boundary-col ul { list-style: none; }
.boundary-col ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
  border-bottom: 1px solid var(--cream-dark);
}
.boundary-col.not ul li::before { content: '×'; position: absolute; left: 0; color: var(--red-soft); font-weight: 700; }
.boundary-col.consult ul li::before { content: '→'; position: absolute; left: 0; color: #c9a84c; font-weight: 700; }

/* ─── STAGES ─── */
.stages-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.stage-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.stage-pill strong { display: block; color: var(--navy-dark); font-size: 0.87rem; margin-bottom: 0.25rem; }

/* ─── TWO-COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.two-col-img {
  background: var(--navy);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.two-col-img svg { opacity: 0.35; }

/* ─── APPROACH PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
}
.pillar h3 { font-size: 1rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── SECTIONS ─── */
.section { padding: var(--section-pad); }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-title { color: var(--white); }
.section-navy .section-lead { color: rgba(255,255,255,0.82); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; line-height: 1.75; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--cream-dark);
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--navy); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); margin: 0 0.4rem; }

/* ─── CONSULTING LINK ─── */
.consult-link-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.consult-link-box p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 560px; }
.consult-link-box strong { display: block; font-size: 1.1rem; color: var(--white); margin-bottom: 0.35rem; }
.consult-link-box a { white-space: nowrap; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 2rem;
  border-top: 2px solid var(--gold);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer-brand-sub { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.87rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom p { color: rgba(255,255,255,0.5); }
.footer-bottom-notice {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 560px;
  line-height: 1.6;
}
.footer-governance {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1rem;
}
.footer-governance p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  text-align: center;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 700;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 1.5rem; border-bottom: 2px solid var(--gold); gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .boundary-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .consult-link-box { flex-direction: column; }
  :root { --section-pad: 3.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .page-hero { padding: 3rem 1.25rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
}
