/*
Theme Name: Levasseur Consultants
Theme URI: https://www.levasseurconsultants.com
Author: Custom Build
Author URI: https://www.levasseurconsultants.com
Description: Premium corporate consulting theme for Levasseur Consultants LLC. Built with native WordPress blocks, WCAG 2.1 AA compliant, fully responsive.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: levasseur
*/

/* ============================================================
   DESIGN TOKENS — extracted from brand HTML reference
   ============================================================ */
:root {
  --navy:       #0D1B2A;
  --gold:       #B89A5A;
  --gold-lt:    #D4B87A;
  --cream:      #F5F0E8;
  --slate:      #3A4A5C;
  --warm-white: #FDFAF5;
  --white:      #FFFFFF;

  /* Typography — SOW mandate: "Sans-serif, bold headers" */
  --font-display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;
  --space-2xl: 10rem;

  /* Max widths */
  --max-content: 1200px;
  --max-narrow:  800px;
  --max-wide:    1440px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover, a:focus-visible {
  color: var(--gold-lt);
}

/* WCAG 2.1 AA: visible focus states on all interactive elements */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem);   font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: 0; }
h5 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--slate);
  font-weight: 300;
  max-width: 68ch;
}

.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.container--narrow {
  max-width: var(--max-narrow);
}

.container--wide {
  max-width: var(--max-wide);
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section--sm {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section--dark {
  background: var(--navy);
  color: var(--warm-white);
}

.section--dark p,
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--warm-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--warm-white);
}

.section--gold {
  background: var(--gold);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 154, 90, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
  background: var(--navy);
  color: var(--warm-white);
}

/* ============================================================
   DIVIDERS & DECORATIVE ELEMENTS
   ============================================================ */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  display: block;
  height: 1px;
  flex: 1;
  background: var(--gold);
  opacity: 0.4;
}

.gold-accent-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* Diagonal stripe overlay */
.stripe-overlay {
  position: relative;
}

.stripe-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(184, 154, 90, 0.04) 0px,
    rgba(184, 154, 90, 0.04) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

/* ============================================================
   HEADER & NAVIGATION — Light background to match the
   navy + gold logo (per client direction)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(13, 27, 42, 0.07);
  transition: box-shadow var(--duration) var(--ease);
  height: 92px;
  overflow: visible;
}

/* GLOBAL SAFETY NET: NO image inside the header can exceed 60px tall,
   regardless of class, inline style, or WP's injected dimensions. */
.site-header img {
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(13, 27, 42, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Logo — uses the actual brand logo image */
/* ============================================================
   LOGO — Hard size ceilings to override WordPress custom-logo
   styles. The Customizer can inject inline widths/heights based
   on the image's natural dimensions, so we use !important on
   max-height/max-width to prevent any logo from blowing out
   the header layout.
   ============================================================ */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-height: 60px;
  overflow: hidden;
}

/* WordPress custom-logo anchor (output by the_custom_logo()) */
.site-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

/* Logo — clean on light background, no filter needed.
   Navy V + gold wordmark read perfectly against cream. */
.site-logo .custom-logo,
.site-logo .custom-logo-link img,
.site-logo .site-logo__fallback-img,
.site-logo img {
  height: auto !important;
  width: auto !important;
  max-height: 52px !important;
  max-width: 300px !important;
  display: block;
  object-fit: contain;
}

.site-logo .site-logo__fallback-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

/* Main nav — navy text on cream background */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: 2px;
  transition: color var(--duration) var(--ease);
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.current-menu-item {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.current-menu-item::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: var(--space-sm);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: var(--navy);
  padding: calc(92px + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184, 154, 90, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 15% 20%, rgba(184, 154, 90, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(184, 154, 90, 0.04) 0px,
    rgba(184, 154, 90, 0.04) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  max-width: 820px;
}

.hero__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--warm-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 62ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================================
   COMMITMENTS GRID (4 blocks)
   ============================================================ */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(184, 154, 90, 0.2);
}

.commitment-block {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(184, 154, 90, 0.15);
  transition: background var(--duration) var(--ease);
}

.commitment-block:last-child {
  border-right: none;
}

.commitment-block:hover {
  background: rgba(184, 154, 90, 0.04);
}

.commitment-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.commitment-icon svg {
  width: 100%;
  height: 100%;
}

.commitment-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.commitment-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  max-width: none;
}

/* ============================================================
   CONTRAST SECTION (Friction / Politics)
   ============================================================ */
.friction-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.friction-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 39px,
    rgba(184, 154, 90, 0.06) 39px,
    rgba(184, 154, 90, 0.06) 40px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 39px,
    rgba(184, 154, 90, 0.06) 39px,
    rgba(184, 154, 90, 0.06) 40px
  );
  pointer-events: none;
}

.friction-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.friction-inner .section-label {
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}

.friction-inner h2 {
  color: var(--warm-white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
}

.friction-inner p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 72ch;
  margin: 0 auto;
  font-size: 0.9375rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table thead tr th {
  padding: 1.25rem 2rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.compare-table thead tr th:first-child {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.4);
  width: 50%;
}

.compare-table thead tr th:last-child {
  background: rgba(184, 154, 90, 0.12);
  color: var(--gold);
  width: 50%;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody td {
  padding: 1.75rem 2rem;
  vertical-align: top;
  line-height: 1.7;
}

.compare-table tbody td:first-child {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.compare-table tbody td:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  border-left: 1px solid rgba(184, 154, 90, 0.2);
}

.compare-table .row-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.4rem;
}

.compare-table tbody td:last-child .row-label {
  color: var(--gold);
  opacity: 0.7;
}

/* ============================================================
   SERVICES / CAPABILITIES PAGE
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: rgba(184, 154, 90, 0.15);
}

.pillar-col {
  background: var(--warm-white);
  padding: 3.5rem;
}

.pillar-col.dark {
  background: var(--navy);
}

.pillar-col h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.pillar-col.dark h3 {
  color: var(--warm-white);
}

.pillar-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

.service-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(184, 154, 90, 0.15);
}

.service-item:last-child {
  border-bottom: none;
}

.pillar-col.dark .service-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.service-item h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: none;
}

.pillar-col:not(.dark) .service-item p {
  color: var(--slate);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* ============================================================
   BESPOKE ENGAGEMENT MODELS (4-column tiered cards)
   ============================================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184, 154, 90, 0.18);
  border: 1px solid rgba(184, 154, 90, 0.18);
}

.engagement-card {
  background: var(--warm-white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--duration) var(--ease);
}

.engagement-card:hover {
  background: var(--cream);
}

.engagement-card__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.engagement-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.engagement-card__sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.engagement-card__divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.25rem;
}

.engagement-card__body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate);
  font-weight: 300;
  max-width: none;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  opacity: 0.25;
}

.process-step {
  padding: 2.5rem 2rem;
  position: relative;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(184, 154, 90, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: var(--navy);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}

.process-step__body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: none;
}

/* ============================================================
   CUSTOM SOLVERSHIP CALLOUT BOX
   ============================================================ */
.solvership-box {
  border: 1px solid rgba(184, 154, 90, 0.3);
  background: rgba(184, 154, 90, 0.05);
  padding: 3rem 3.5rem;
  border-radius: 2px;
  position: relative;
}

.solvership-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 80%);
}

/* ============================================================
   PHILOSOPHY / MANIFESTO PAGE
   ============================================================ */
.manifesto-hero {
  background: var(--navy);
  padding: calc(92px + var(--space-xl)) var(--space-md) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.manifesto-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(184, 154, 90, 0.03) 0px,
    rgba(184, 154, 90, 0.03) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.manifesto-pull {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
  margin: 3rem 0;
}

.manifesto-body-section {
  background: var(--warm-white);
  padding: var(--space-xl) var(--space-md);
}

.manifesto-body-text {
  max-width: 72ch;
  margin: 0 auto;
}

.manifesto-body-text p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 1.75rem;
  max-width: none;
}

/* ============================================================
   ABOUT / CREDIBILITY PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-split__image {
  background: var(--slate);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-split__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-split__content {
  background: var(--warm-white);
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.about-split__content p {
  margin-bottom: 1.25rem;
}

/* ── Named point of contact / leadership card ── */
.leadership-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--warm-white);
  border: 1px solid rgba(184, 154, 90, 0.18);
  border-radius: 2px;
  padding: 2.5rem;
}

.leadership-card__photo {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 7 / 8;
}

.leadership-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leadership-card__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.leadership-card__title {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.leadership-card__contact {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.leadership-card__contact a {
  color: var(--slate);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.leadership-card__contact a:hover {
  color: var(--gold);
}

.leadership-card__contact span {
  color: rgba(184, 154, 90, 0.5);
}

.covenant-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.covenant-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.covenant-inner h2 {
  color: var(--warm-white);
  margin-bottom: 2rem;
}

.covenant-inner p {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 66ch;
  margin: 0 auto;
  font-size: 0.9375rem;
}

/* ============================================================
   INSIGHTS / RESOURCE HUB
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.insight-card {
  background: var(--warm-white);
  border: 1px solid rgba(184, 154, 90, 0.15);
  border-radius: 2px;
  padding: 2.5rem;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.insight-card:hover {
  border-color: rgba(184, 154, 90, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.insight-card:hover::before {
  transform: scaleX(1);
}

.insight-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 1rem;
}

.insight-card__summary {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 1.5rem;
  max-width: none;
}

.insight-card__callout {
  padding: 1.25rem 1.5rem;
  background: rgba(184, 154, 90, 0.07);
  border-left: 2px solid var(--gold);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 400;
}

.insight-card__callout strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.insight-card__readmore {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: transform var(--duration) var(--ease);
}

.insight-card:hover .insight-card__readmore {
  transform: translateX(4px);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: var(--navy);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(184, 154, 90, 0.03) 0px,
    rgba(184, 154, 90, 0.03) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.contact-info__inner {
  position: relative;
  z-index: 1;
}

.contact-info h2 {
  color: var(--warm-white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
  max-width: none;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail__icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 154, 90, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.contact-detail__label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-form-wrap {
  background: var(--warm-white);
  padding: 4rem;
}

/* ============================================================
   FORMS (WCAG 2.1 AA)
   ============================================================ */

/* Honeypot anti-spam field — completely hidden from view and AT.
   Must NOT use display:none (some bots skip those); push offscreen. */
.lc-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lc-form .form-row {
  margin-bottom: 1.5rem;
}

.lc-form label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.lc-form label .required {
  color: var(--gold);
  margin-left: 2px;
}

.lc-form input[type="text"],
.lc-form input[type="email"],
.lc-form input[type="tel"],
.lc-form select,
.lc-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(58, 74, 92, 0.2);
  border-radius: 2px;
  padding: 0.875rem 1rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.lc-form input[type="text"]:focus,
.lc-form input[type="email"]:focus,
.lc-form input[type="tel"]:focus,
.lc-form select:focus,
.lc-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 154, 90, 0.15);
}

.lc-form select {
  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='%233A4A5C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.lc-form textarea {
  resize: vertical;
  min-height: 130px;
}

.lc-form .form-submit {
  margin-top: 2rem;
}

/* Form success/error messages */
.form-notice {
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 0.875rem;
  margin-top: 1rem;
  display: none;
}

.form-notice.success {
  background: rgba(184, 154, 90, 0.1);
  border: 1px solid rgba(184, 154, 90, 0.3);
  color: var(--navy);
}

.form-notice.error {
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #7f1d1d;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 5rem var(--space-md) 4rem;
  max-width: var(--max-content);
  margin: 0 auto;
}

.footer-brand__logo {
  height: auto !important;
  width: auto !important;
  max-height: 50px !important;
  max-width: 240px !important;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
  /* Clean logo on light footer — no filter needed */
}

.footer-brand p {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.footer-col h5 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.8125rem;
  color: var(--slate);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  letter-spacing: 0.02em;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

/* Newsletter opt-in */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form p {
  font-size: 0.8125rem;
  color: var(--slate);
  margin-bottom: 0.75rem;
  max-width: none;
}

.newsletter-input-row {
  display: flex;
  gap: 0;
}

.newsletter-input-row input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--navy);
  background: var(--warm-white);
  border: 1px solid rgba(13, 27, 42, 0.15);
  border-right: none;
  border-radius: 2px 0 0 2px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.newsletter-input-row input[type="email"]:focus {
  border-color: var(--gold);
}

.newsletter-input-row input[type="email"]::placeholder {
  color: rgba(58, 74, 92, 0.45);
}

.newsletter-input-row button {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 2px 2px 0;
  padding: 0.7rem 1.25rem;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  white-space: nowrap;
}

.newsletter-input-row button:hover {
  background: var(--gold-lt);
}

.newsletter-thanks {
  display: none;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  padding: 1.5rem var(--space-md);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-content);
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.6875rem;
  color: rgba(58, 74, 92, 0.7);
  letter-spacing: 0.05em;
  max-width: none;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.6875rem;
  color: rgba(58, 74, 92, 0.75);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  letter-spacing: 0.08em;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* Footer contact info block */
.footer-contact {
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--slate);
}

.footer-contact a {
  color: var(--slate);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer-contact a:hover {
  color: var(--gold);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(92px + 4rem) var(--space-md) 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(184, 154, 90, 0.04) 0px,
    rgba(184, 154, 90, 0.04) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 58ch;
}

/* ============================================================
   PRIVACY POLICY & TERMS (text pages)
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 154, 90, 0.2);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 1.25rem;
  max-width: none;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2.5rem;
  display: block;
}

/* ============================================================
   ANIMATIONS (prefers-reduced-motion respected)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }

  .fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in {
    opacity: 0;
    transition: opacity 0.5s var(--ease);
  }

  .fade-in.in-view {
    opacity: 1;
  }

  /* Stagger children */
  .stagger-children > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }

  .stagger-children.in-view > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: none; }
  .stagger-children.in-view > *:nth-child(2) { transition-delay: 80ms;  opacity: 1; transform: none; }
  .stagger-children.in-view > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
  .stagger-children.in-view > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-xl: 5rem;
  }

  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-block:nth-child(2) {
    border-right: none;
  }

  .commitment-block:nth-child(1),
  .commitment-block:nth-child(2) {
    border-bottom: 1px solid rgba(184, 154, 90, 0.15);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__image {
    min-height: 400px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .leadership-card__photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .leadership-card__contact {
    justify-content: center;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-lg: 2.5rem;
    --space-md: 1.25rem;
  }

  /* Nav: hide desktop, show hamburger */
  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Mobile nav open state */
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: var(--warm-white);
    padding: 1.5rem var(--space-md) 2rem;
    border-top: 1px solid rgba(13, 27, 42, 0.07);
    border-bottom: 1px solid rgba(13, 27, 42, 0.07);
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.08);
    gap: 0.25rem;
    z-index: 999;
  }

  .main-nav.nav-open a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
    color: var(--navy);
  }

  .grid-2,
  .commitments-grid {
    grid-template-columns: 1fr;
  }

  .commitment-block {
    border-right: none;
    border-bottom: 1px solid rgba(184, 154, 90, 0.12);
  }

  .commitment-block:last-child {
    border-bottom: none;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .pillar-col {
    padding: 2rem 1.5rem;
  }

  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem var(--space-md);
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .solvership-box {
    padding: 2rem;
  }

  .about-split__content {
    padding: 2.5rem 1.5rem;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 2.5rem 1.5rem;
  }

  /* 200% zoom: ensure no overlap */
  .hero__headline {
    font-size: 2rem;
  }

  .compare-table {
    font-size: 0.8rem;
  }

  .compare-table thead tr th,
  .compare-table tbody td {
    padding: 1rem;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .btn {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
  }
}
