/* ============================================================
   styles-v2.css — MoGhraOps Site Revamp
   Additive layer on top of styles.css
   Deploy alongside existing styles.css
   ============================================================ */


/* ============================================================
   CINEMATIC HERO
   Full-width image hero with text overlay
   Used on: index.html, sdvosb.html
   ============================================================ */

.hero-cinematic {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.hero-cinematic-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cinematic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Default overlay — light fade from bottom for text legibility */
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.72) 80%,
    rgba(255,255,255,0.88) 100%
  );
}

/* Darker overlay variant for SDVOSB hero (soldiers image) */
.hero-cinematic-overlay-dark {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.28) 40%,
    rgba(0,0,0,0.60) 80%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-cinematic-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 3.5rem;
  margin-top: auto; /* push text toward bottom of image */
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

/* Centered variant for SDVOSB page */
.hero-cinematic-content-center {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 420px;
}

/* Light text versions for dark overlays */
.hero-light {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-subtitle-light {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.eyebrow-light {
  color: #FFBF27;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Override for SDVOSB hero — tall enough to showcase the image */
.hero-cinematic-sdvosb .hero-cinematic-img-wrap,
.hero-cinematic-sdvosb {
  min-height: 520px;
}

@media (max-width: 768px) {
  .hero-cinematic {
    min-height: 360px;
  }
  .hero-cinematic-content {
    min-height: 360px;
    padding: 2rem 1rem 2.5rem;
  }
  .hero-cinematic-sdvosb,
  .hero-cinematic-sdvosb .hero-cinematic-img-wrap {
    min-height: 380px;
  }
}


/* ============================================================
   CO QUICK-REFERENCE BANNER
   Slim bar of key federal identifiers below homepage hero
   ============================================================ */

.co-banner {
  background-color: #1a2a6c;  /* deep navy */
  background-image: linear-gradient(
    135deg,
    #1a2a6c 0%,
    #304CB2 60%,
    #1a2a6c 100%
  );
  color: #ffffff;
  padding: 0.85rem 0;
}

.co-banner-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  justify-content: center;
}

.co-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 1.5rem;
}

.co-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFBF27;
  margin-bottom: 0.15rem;
}

.co-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.co-banner-divider {
  width: 1px;
  height: 2rem;
  background-color: rgba(255,255,255,0.2);
}

@media (max-width: 900px) {
  .co-banner-inner {
    gap: 0.75rem;
  }
  .co-banner-divider {
    display: none;
  }
  .co-banner-item {
    padding: 0.2rem 0.75rem;
  }
}


/* ============================================================
   LOVE CARD ACCENTS
   Four Loves cards with color-coded top border
   ============================================================ */

.love-card-accented {
  border-top: 4px solid #304CB2;
  position: relative;
}

.love-craft    { border-top-color: #304CB2; }
.love-people   { border-top-color: #FFBF27; }
.love-mission  { border-top-color: #D5152E; }
.love-progress { border-top-color: #304CB2; }

.love-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}


/* ============================================================
   BRAND SLAB DARK VARIANT
   Used on homepage "Forged in Love" section
   ============================================================ */

.brand-slab-dark {
  background-color: #f0f2f8;
  border-top: 1px solid #e0e4f0;
  border-bottom: 1px solid #e0e4f0;
}

.brand-text-light {
  /* used when brand slab has a lighter bg — keep text dark */
  color: #222222;
}

.brand-slab-img-rounded {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(48, 76, 178, 0.14);
}


/* ============================================================
   CAPABILITY CARDS
   Cards with icon + NAICS tag
   ============================================================ */

.capability-card {
  position: relative;
  padding-bottom: 3rem; /* room for naics-tag at bottom */
}

.capability-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.naics-tag {
  display: inline-block;
  background-color: #e8edf8;
  color: #304CB2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-top: 0.75rem;
  border: 1px solid #c5cde8;
}

/* For capability cards: pin NAICS tag to bottom */
.capability-card .naics-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
}


/* ============================================================
   ART BREAK
   Full-width or contained artwork section dividers
   ============================================================ */

.art-break {
  padding: 2rem 0 1rem;
  background: #f8f9fb;
  border-top: 1px solid #e8eaf2;
  border-bottom: 1px solid #e8eaf2;
}

.art-break-inner {
  text-align: center;
}

.art-break-img {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: block;
}

.art-break-img-wide {
  max-width: 960px;
}

.art-break-wide {
  padding: 2.5rem 0 1.5rem;
}

.art-break-caption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #666666;
  letter-spacing: 0.02em;
}


/* ============================================================
   CO CREDENTIAL BLOCK
   SDVOSB page — contracting officer info grid
   ============================================================ */

.co-credential-block {
  padding: 3rem 0 2.5rem;
  background: #f8f9fb;
  border-bottom: 1px solid #e0e4f0;
}

.co-credential-heading {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #1a2a6c;
}

.co-credential-sub {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 2rem;
}

.co-credential-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.co-credential-card {
  background: #ffffff;
  border: 1px solid #dde2f0;
  border-radius: 0.65rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid #304CB2;
}

.co-credential-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #304CB2;
  margin-bottom: 0.3rem;
}

.co-credential-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.4;
}

.co-credential-active {
  color: #1a7a3c;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.co-active-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #28a745;
  border-radius: 50%;
  flex-shrink: 0;
  animation: activePulse 2.5s ease-in-out infinite;
}

@keyframes activePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.co-credential-card-contact .co-credential-value a {
  color: #304CB2;
  font-weight: 600;
}

.co-credential-card-contact .co-credential-value a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .co-credential-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SERVICES PAGE — Hero layout with art
   ============================================================ */

.services-hero {
  border-bottom: none;
  padding-bottom: 0;
}

.services-hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2.5rem 0 2rem;
}

.services-hero-text {
  flex: 1 1 340px;
}

.services-hero-art {
  flex: 0 0 auto;
}

.services-hero-img {
  max-width: 400px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(48, 76, 178, 0.12);
  display: block;
}

.services-naics-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.services-naics-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555555;
  margin-right: 0.25rem;
}

.naics-chip {
  display: inline-block;
  background: #304CB2;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.naics-chip.naics-primary {
  background: #D5152E;
}

@media (max-width: 768px) {
  .services-hero-inner {
    flex-direction: column;
  }
  .services-hero-img {
    max-width: 100%;
  }
}


/* ============================================================
   SERVICE BLOCK CARD VARIANT
   Adds icon + NAICS to each service block
   ============================================================ */

.service-block-card {
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  border-top: 4px solid #304CB2;
}

.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-block-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.service-block-header h2 {
  margin: 0 0 0.3rem;
}

.service-block-header .naics-tag {
  position: static;
  display: inline-block;
  margin-top: 0.2rem;
}


/* ============================================================
   SERVICES CTA STRIP
   Bottom of services page — SDVOSB + contact prompt
   ============================================================ */

.services-cta-strip {
  background: linear-gradient(135deg, #1a2a6c 0%, #304CB2 100%);
  padding: 1.75rem 0;
  margin-top: 1rem;
}

.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.services-cta-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1 1 300px;
}

.services-cta-text strong {
  color: #FFBF27;
}

.services-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

/* Ghost button on dark background */
.services-cta-strip .btn.ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}

.services-cta-strip .btn.ghost:hover {
  background-color: rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .services-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================
   ABOUT PAGE LAYOUTS
   ============================================================ */

.about-intro-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-intro-text {
  flex: 1 1 360px;
}

.about-intro-badge {
  flex: 0 0 auto;
  text-align: center;
  padding-top: 0.5rem;
}

.about-name-layout {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-name-text {
  flex: 1 1 320px;
}

.about-name-heart {
  flex: 0 0 auto;
}

.about-heart-img {
  max-width: 260px;
  width: 100%;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .about-intro-layout,
  .about-name-layout {
    flex-direction: column;
  }
  .about-heart-img {
    max-width: 200px;
  }
}


/* ============================================================
   FOUNDER PAGE LAYOUT
   ============================================================ */

.founder-content {
  max-width: 760px;
}

.founder-content h2 {
  font-size: 1.4rem;
  color: #304CB2;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.founder-content p,
.founder-content li {
  font-size: 0.98rem;
  line-height: 1.7;
}

.founder-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.founder-content li {
  margin-bottom: 0.4rem;
}

.founder-signature {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px solid #e0e4f0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sig-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222222;
}

.sig-title,
.sig-company {
  font-size: 0.92rem;
  color: #555555;
}


/* ============================================================
   CONTACT PAGE ENHANCEMENTS
   ============================================================ */

.contact-co-block {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #f0f2f8;
  border-radius: 0.65rem;
  border-left: 4px solid #304CB2;
}

.contact-co-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}


/* ============================================================
   404 PAGE
   ============================================================ */

.hero-cinematic-404 {
  min-height: 460px;
}

.hero-cinematic-404 .hero-cinematic-img-wrap {
  min-height: 460px;
}

.error-nav-block {
  max-width: 860px;
}

.error-nav-intro {
  font-size: 1rem;
  color: #444444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.error-nav-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-top: 4px solid #304CB2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.error-nav-card:hover {
  box-shadow: 0 8px 24px rgba(48,76,178,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.error-nav-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.error-nav-label {
  font-size: 1rem;
  font-weight: 700;
  color: #304CB2;
  margin-bottom: 0.2rem;
}

.error-nav-desc {
  font-size: 0.85rem;
  color: #666666;
}

@media (max-width: 600px) {
  .error-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   PRIVACY PAGE
   ============================================================ */

.privacy-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #304CB2;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.97rem;
  line-height: 1.7;
}

.privacy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.privacy-content li {
  margin-bottom: 0.35rem;
}


/* ============================================================
   FOOTER ENHANCEMENT
   Add NAICS + entity info to footer site-wide
   ============================================================ */

.footer-federal-line {
  font-size: 0.75rem;
  color: #888888;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.footer-federal-line a {
  color: #304CB2;
}


/* san_antonio.png confirmed present in assets — 
   love-people-city uses it via styles.css, no override needed */

/* ============================================================
   SERVICES INTRO BAND
   ============================================================ */

.services-intro-band {
  background: linear-gradient(135deg, #1a2a6c 0%, #304CB2 100%);
  padding: 1.75rem 0;
}

.services-intro-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0;
  font-weight: 500;
}

.services-section {
  padding-bottom: 1rem;
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */

.leadership-intro {
  max-width: 760px;
}

.leadership-intro h2 {
  font-size: 1.6rem;
  color: #304CB2;
  margin-bottom: 0.75rem;
}

.leadership-intro p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.leadership-card {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e3e5ee;
  box-shadow: 0 4px 16px rgba(48,76,178,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.leadership-card-accent {
  height: 6px;
  background-image: linear-gradient(
    to right,
    #304CB2 0%, #304CB2 33%,
    #FFBF27 33%, #FFBF27 66%,
    #D5152E 66%, #D5152E 100%
  );
}

.leadership-card-body {
  padding: 1.75rem 2rem;
}

.leadership-role-tag {
  display: inline-block;
  background: #e8edf8;
  color: #304CB2;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.leadership-card-body h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a2a6c;
  margin: 0 0 0.65rem;
}

.leadership-focus-line {
  font-size: 0.88rem;
  color: #555555;
  margin-bottom: 1rem;
  font-style: italic;
}

.leadership-focus-label {
  font-weight: 700;
  font-style: normal;
  color: #304CB2;
  margin-right: 0.35rem;
}

.leadership-card-body p {
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #333333;
}

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

@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MOBILE FIXES
   Nav overflow + page layout fixes for small screens
   ============================================================ */

/* Prevent horizontal scroll site-wide */
html, body {
  overflow-x: hidden;
}

/* ---- Mobile Nav ---- */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0;
    width: 100%;
    padding-bottom: 0.5rem;
  }

  .main-nav a {
    margin-left: 0;
    margin-right: 0.75rem;
    font-size: 0.82rem;
    padding: 0.2rem 0;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .main-nav a {
    font-size: 0.78rem;
    margin-right: 0.6rem;
  }
}

/* ---- Mission & Vision layout ---- */
@media (max-width: 768px) {
  .mission-vision-layout {
    grid-template-columns: 1fr !important;
    padding: 1.5rem 0 2rem;
  }
}

/* ---- Contact layout ---- */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-co-chips {
    flex-wrap: wrap;
  }
}

/* ---- CO Banner wrapping ---- */
@media (max-width: 768px) {
  .co-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .co-banner-item {
    align-items: flex-start;
    padding: 0.1rem 0;
  }

  .co-banner-divider {
    display: none;
  }
}

/* ---- Services NAICS bar ---- */
@media (max-width: 600px) {
  .services-naics-bar {
    flex-wrap: wrap;
  }

  .services-cta-inner {
    flex-direction: column;
  }
}

/* ---- Hero cinematic on mobile ---- */
@media (max-width: 600px) {
  .hero-cinematic-content {
    padding: 1.5rem 1rem 2rem;
  }

  .fourofour-howdy {
    font-size: 2.25rem;
  }

  .fourofour-headline {
    font-size: 1.1rem;
  }
}

/* ---- Leadership grid ---- */
@media (max-width: 640px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- CO Credential grid ---- */
@media (max-width: 600px) {
  .co-credential-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MOBILE PADDING FIX
   Ensure content never touches screen edge on mobile
   ============================================================ */

@media (max-width: 768px) {

  /* Global safe padding for all containers */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Contact layout — was using container directly as grid */
  .contact-layout {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr !important;
  }

  /* Mission Vision — same issue */
  .mission-vision-layout {
    padding-left: 0;
    padding-right: 0;
  }

  /* Page sections */
  .page-section {
    padding-left: 0;
    padding-right: 0;
  }

  /* Cinematic hero text breathing room */
  .hero-cinematic-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* CO banner padding */
  .co-banner-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Service grid single column */
  .service-grid {
    grid-template-columns: 1fr !important;
  }

  /* Art break images don't overflow */
  .art-break-img {
    border-radius: 8px;
  }

  /* Four loves grid */
  .grid.four-cols {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Error nav grid */
  .error-nav-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Very small phones — single column everything */
  .grid.four-cols,
  .grid.three-cols,
  .error-nav-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   MANIFESTO PAGE — Visual lift
   ============================================================ */

/* Section headings */
.page-section h2 {
  font-size: 1.4rem;
  color: #304CB2;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

/* What We Stand On — numbered belief cards */
.manifesto-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.manifesto-belief-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid #304CB2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.manifesto-belief-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFBF27;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}

.manifesto-belief-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.manifesto-belief-text strong {
  font-size: 0.97rem;
  color: #222222;
  font-weight: 700;
}

.manifesto-belief-text span {
  font-size: 0.88rem;
  color: #666666;
  font-style: italic;
}

/* Four Loves — colored cards */
.manifesto-loves-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.manifesto-love-card {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e3e5ee;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.manifesto-love-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin: 0;
}

.manifesto-love-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
}

.manifesto-love-craft  { border-top: 4px solid #304CB2; }
.manifesto-love-people { border-top: 4px solid #FFBF27; }
.manifesto-love-mission { border-top: 4px solid #D5152E; }
.manifesto-love-progress { border-top: 4px solid #304CB2; }

.manifesto-love-craft  .manifesto-love-label { background: #e8edf8; color: #304CB2; }
.manifesto-love-people .manifesto-love-label { background: #fff8e0; color: #8B6500; }
.manifesto-love-mission .manifesto-love-label { background: #fce8eb; color: #a01020; }
.manifesto-love-progress .manifesto-love-label { background: #e8edf8; color: #304CB2; }

/* How We Show Up — clean statement tiles */
.manifesto-howwe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.manifesto-howwe-item {
  background: #f8f9fb;
  border-radius: 0.65rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  border-left: 3px solid #304CB2;
}

/* Our Commitments — two column blocks */
.manifesto-commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 1.25rem 0 2rem;
}

.manifesto-commitment-block {
  background: #ffffff;
  border: 1px solid #e3e5ee;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.manifesto-commitment-to {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #304CB2;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #e0e4f0;
}

.manifesto-commitment-block ul {
  padding-left: 1.1rem;
  margin: 0;
}

.manifesto-commitment-block li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #444444;
}

@media (max-width: 768px) {
  .manifesto-beliefs-grid,
  .manifesto-loves-grid,
  .manifesto-howwe-grid,
  .manifesto-commitments-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   MANIFESTO DARK SECTION — Dramatic statement treatment
   ============================================================ */

.manifesto-dark-section {
  background: linear-gradient(160deg, #0d1321 0%, #1a2a6c 50%, #0d1321 100%);
  padding: 4rem 0;
  margin: 2.5rem 0;
}

.manifesto-dark-section h2 {
  color: #FFBF27 !important;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
  margin-top: 0;
}

.manifesto-dark-section > .container > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* Big bold belief statements */
.manifesto-statement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.manifesto-statement-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}

.manifesto-statement-list li:last-child {
  border-bottom: none;
}

.manifesto-statement-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFBF27;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 1.5rem;
}

.manifesto-statement-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.manifesto-statement-strong {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.manifesto-statement-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

/* Four Loves dark cards */
.manifesto-loves-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 2rem;
}

.manifesto-love-dark-card {
  background: rgba(255,255,255,0.04);
  padding: 1.75rem;
  transition: background 0.2s ease;
}

.manifesto-love-dark-card:hover {
  background: rgba(255,255,255,0.08);
}

.manifesto-love-dark-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.65rem;
}

.manifesto-love-dark-card.love-craft-dark  .manifesto-love-dark-label { color: #a8c4ff; }
.manifesto-love-dark-card.love-people-dark .manifesto-love-dark-label { color: #FFBF27; }
.manifesto-love-dark-card.love-mission-dark .manifesto-love-dark-label { color: #ff8fa3; }
.manifesto-love-dark-card.love-progress-dark .manifesto-love-dark-label { color: #a8c4ff; }

.manifesto-love-dark-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* How We Show Up — dark statement tiles */
.manifesto-howwe-dark {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}

.manifesto-howwe-dark-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.manifesto-howwe-dark-item::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #FFBF27;
  font-weight: 700;
}

.manifesto-howwe-dark-item:last-child {
  border-bottom: none;
}

/* Commitments on dark */
.manifesto-commitments-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.manifesto-commitment-dark-block {
  border-left: 3px solid #FFBF27;
  padding-left: 1.5rem;
}

.manifesto-commitment-dark-to {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFBF27;
  margin-bottom: 1rem;
}

.manifesto-commitment-dark-block ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.manifesto-commitment-dark-block li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.65rem;
  padding-left: 1rem;
  position: relative;
}

.manifesto-commitment-dark-block li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #FFBF27;
  font-weight: 700;
}

@media (max-width: 768px) {
  .manifesto-loves-dark {
    grid-template-columns: 1fr;
  }
  .manifesto-statement-strong {
    font-size: 1.1rem;
  }
}


/* ============================================================
   THEATER OF OPERATIONS — Triptych section
   ============================================================ */

.theater-of-ops {
  background: linear-gradient(160deg, #0d1321 0%, #1a2a6c 50%, #0d1321 100%);
  padding: 4rem 0;
}

.theater-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FFBF27 !important;
  margin-bottom: 0.5rem;
}

.theater-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 0.5rem;
}

.theater-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 2.5rem;
  font-style: italic;
}

.theater-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.theater-panel {
  display: flex;
  flex-direction: column;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theater-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.theater-panel-center {
  border-color: rgba(255,191,39,0.3);
  box-shadow: 0 0 24px rgba(255,191,39,0.1);
}

.theater-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.theater-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.theater-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.theater-panel-text {
  padding: 1.25rem 1.5rem 1.5rem;
}

.theater-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFBF27;
  margin-bottom: 0.4rem;
}

.theater-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.theater-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .theater-grid {
    grid-template-columns: 1fr;
  }
  .theater-heading {
    font-size: 1.5rem;
  }
}
