/* Word of Truth Publishing — Shared Styles */
/* UI elevation pass — visual refinement only; no content/structure changes */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

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

  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1100px;
  --section-pad: 5.5rem 1.5rem;

  --shadow-sm: 0 1px 2px rgba(17, 27, 51, 0.06), 0 2px 6px rgba(17, 27, 51, 0.05);
  --shadow-md: 0 6px 18px rgba(17, 27, 51, 0.08), 0 2px 6px rgba(17, 27, 51, 0.05);
  --shadow-lg: 0 18px 50px rgba(17, 27, 51, 0.14), 0 6px 18px rgba(17, 27, 51, 0.08);
  --shadow-gold: 0 8px 22px rgba(201, 168, 76, 0.28);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

::selection { background: rgba(201, 168, 76, 0.32); color: var(--navy-dark); }

/* Refined focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Subtle, premium scrollbar (supporting browsers) */
* { scrollbar-width: thin; scrollbar-color: var(--gold) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; border: 3px solid var(--white); }
*::-webkit-scrollbar-track { background: transparent; }

/* ─── 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: rgba(17, 27, 51, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.55);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 30px rgba(12, 20, 38, 0.28);
}

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

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.62rem;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.nav-links a:not(.nav-cta a)::after {
  content: '';
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.28rem;
  height: 1.5px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover:not(.nav-cta a)::after,
.nav-links a.active:not(.nav-cta a)::after { transform: scaleX(1); }
.nav-links .nav-cta a {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.32);
}
.nav-links .nav-cta a:hover {
  background: linear-gradient(180deg, #f2d785, var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
}

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

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,0.16) 0%, transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(201,168,76,0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 18% 88%, rgba(36,51,89,0.6) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}
.hero h1 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.1rem, 5.2vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 660px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  line-height: 1;
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #f2d785 0%, var(--gold-light) 100%);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4);
}
.btn-outline {
  background: rgba(255,255,255,0.02);
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}
.btn-navy {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: linear-gradient(180deg, #2c3e6b 0%, var(--navy-mid) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--navy-dark);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-lead {
  font-size: 1.06rem;
  color: var(--text-mid);
  max-width: 680px;
  line-height: 1.8;
  text-wrap: pretty;
}

/* ─── NOTICE BOXES ─── */
.notice {
  border-left: 4px solid var(--gold);
  background: linear-gradient(180deg, #fffdf6, #fffbf0);
  padding: 1.1rem 1.35rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}
.notice strong { color: var(--navy-dark); }
.notice-red {
  border-left-color: #9b3a3a;
  background: linear-gradient(180deg, #fff7f7, #fff5f5);
}
.notice-navy {
  border-left-color: var(--navy);
  background: linear-gradient(180deg, #f7f9fd, #f5f7fb);
}
.notice-block {
  background: linear-gradient(180deg, #f6f1e8, var(--cream-dark));
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 1.4rem 1.6rem;
  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;
  box-shadow: var(--shadow-sm);
}
.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 {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-out), border-color 0.35s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--border);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.2rem;
  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.7;
}
.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: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), border-color 0.3s var(--ease), transform 0.35s var(--ease-out);
  display: block;
}
.path-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.path-card-role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.path-card h3 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 1.1rem;
  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: linear-gradient(180deg, var(--white), var(--cream));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-out);
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.audience-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-deep));
  border-radius: 50%;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(12, 20, 38, 0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease-out);
}
.audience-card:hover .audience-icon { transform: translateY(-2px) scale(1.05); }
.audience-icon svg { color: var(--gold-light); }
.audience-card h3 { font-size: 0.98rem; 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.55; }

/* ─── INQUIRY FORM ─── */
.form-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  max-width: 760px;
  margin: 2rem auto 0;
  box-shadow: var(--shadow-md);
}
.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.45rem;
  letter-spacing: 0.01em;
}
.form-group label .req { color: var(--gold-deep); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  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 var(--ease), box-shadow 0.2s var(--ease);
  line-height: 1.5;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8a39a; }
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover { border-color: var(--gold); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(26,39,68,0.1);
}
.form-group textarea { min-height: 140px; 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; cursor: pointer; }
.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); width: 17px; height: 17px; }
.form-submit-area { margin-top: 2rem; text-align: center; }
.form-submit-area .btn { padding: 0.95rem 2.75rem; 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.45rem 0;
  padding-left: 1.5rem;
  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: var(--gold-deep); 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-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.95rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease-out);
}
.stage-pill:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.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: 3.5rem;
  align-items: center;
}
.two-col-img {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.15), transparent 60%),
    linear-gradient(150deg, var(--navy-mid), var(--navy-deep));
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.06);
}
.two-col-img svg { opacity: 0.4; }

/* ─── APPROACH PILLARS ─── */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease-out);
}
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--navy);
}
.pillar h3 { font-family: var(--font-serif); font-optical-sizing: auto; font-size: 1.1rem; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.5rem; }
.pillar p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ─── SECTIONS ─── */
.section { padding: var(--section-pad); }
.section-alt { background: linear-gradient(180deg, var(--cream), #f6f2eb); }
.section-navy {
  background:
    radial-gradient(ellipse 70% 80% at 80% 0%, rgba(201,168,76,0.1), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative;
}
.section-navy .section-title { color: var(--white); }
.section-navy .section-label { color: var(--gold-light); }
.section-navy .section-lead { color: rgba(255,255,255,0.82); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background:
    radial-gradient(ellipse 70% 70% at 50% -20%, rgba(201,168,76,0.14), transparent 55%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 4.75rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.page-hero p { font-size: 1.06rem; color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto; line-height: 1.8; text-wrap: pretty; }

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

/* ─── CONSULTING LINK ─── */
.consult-link-box {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(201,168,76,0.12), transparent 50%),
    linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.consult-link-box p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.65; max-width: 560px; }
.consult-link-box strong { display: block; font-family: var(--font-serif); font-optical-sizing: auto; font-weight: 600; font-size: 1.25rem; color: var(--white); margin-bottom: 0.4rem; }
.consult-link-box a { white-space: nowrap; }

/* ─── FOOTER ─── */
.site-footer {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy-deep));
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.5);
}
.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-optical-sizing: auto;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.footer-brand-sub { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.87rem; line-height: 1.75; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { position: relative; color: rgba(255,255,255,0.68); text-decoration: none; font-size: 0.87rem; transition: color 0.25s var(--ease), padding-left 0.25s var(--ease); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 0.4rem; }
.footer-col ul li a::before {
  content: '›';
  position: absolute;
  left: -0.5rem;
  opacity: 0;
  color: var(--gold);
  transition: opacity 0.25s var(--ease);
}
.footer-col ul li a:hover::before { opacity: 1; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.75rem;
  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.42);
  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.4);
  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;
}

/* ─── SCROLL REVEAL (progressive enhancement — never hides content if unsupported) ─── */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .service-card,
    .audience-card,
    .path-card,
    .pillar,
    .stage-pill,
    .notice-block,
    .two-col > * {
      animation: wotp-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
    @keyframes wotp-reveal {
      from { opacity: 0; transform: translateY(22px); }
      to { opacity: 1; transform: none; }
    }
  }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 68px; left: 0; right: 0; background: rgba(17, 27, 51, 0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(201, 168, 76, 0.55); gap: 0.25rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 0.7rem; }
  .nav-toggle { display: block; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .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; align-items: flex-start; }
  :root { --section-pad: 3.75rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero { padding: 4.5rem 1.25rem 3.75rem; }
  .page-hero { padding: 3.25rem 1.25rem 2.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.85rem 1.35rem; }
}
